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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #3b82f6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-asymmetric {
    margin-top: 80px;
    padding: 5rem 5% 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 80vh;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding-right: 3rem;
    transform: translateY(-40px);
}

.hero-title-creative {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

.cta-hero,
.cta-large,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-hero,
.cta-large {
    background: var(--primary-color);
    color: white;
}

.cta-hero:hover,
.cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

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

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

.hero-visual-overlap {
    flex: 1;
    position: relative;
    transform: translateX(30px);
}

.hero-visual-overlap img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    transform: translateX(-50px);
}

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

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-wide-image {
    flex: 1.3;
    transform: translateY(40px);
}

.intro-wide-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-preview {
    padding: 7rem 5%;
}

.services-grid-asymmetric {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card.offset-top {
    transform: translateY(-30px);
}

.service-card.offset-bottom {
    transform: translateY(30px);
}

.service-card.offset-middle {
    transform: translateY(15px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.8rem;
}

.approach-split {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    background: var(--bg-light);
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

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

.approach-visual img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(50px);
}

.testimonials-creative {
    padding: 7rem 5%;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card.elevated {
    transform: translateY(-25px);
}

.testimonial-card.lowered {
    transform: translateY(25px);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-block-overlap {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-content-creative {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content-creative h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content-creative p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content-creative .cta-large {
    background: white;
    color: var(--primary-color);
}

.services-selection {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-options h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-option-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.option-card {
    flex: 1;
    min-width: 250px;
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-content {
    padding: 1.8rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
    background: white;
}

.option-card:hover .option-content {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.option-card input:checked + .option-content {
    border-color: var(--primary-color);
    background: #eff6ff;
}

.option-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.form-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex-basis: 100%;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    margin-top: 2rem;
    padding: 1.1rem 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.why-us-offset {
    padding: 6rem 5%;
}

.why-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    flex: 1;
    min-width: 220px;
    padding: 2rem;
    text-align: center;
}

.feature:nth-child(odd) {
    transform: translateY(-20px);
}

.feature h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature p {
    color: var(--text-light);
}

.portfolio-preview {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.centered-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-grid-creative {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.portfolio-item.large {
    flex: 2;
    min-width: 350px;
}

.portfolio-item.medium {
    flex: 1.5;
    min-width: 300px;
}

.portfolio-item.small {
    flex: 1;
    min-width: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.centered-cta {
    text-align: center;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-col a:hover {
    color: white;
}

.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);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.page-hero-offset {
    margin-top: 80px;
    padding: 5rem 5% 3rem;
    text-align: center;
    background: var(--bg-light);
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 5%;
}

.story-layout-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
    transform: translateX(-30px);
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image-overlap {
    flex: 1;
    transform: translateY(30px);
}

.story-image-overlap img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.values-grid-creative {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 240px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.value-card.offset-down {
    transform: translateY(30px);
}

.value-card.offset-up {
    transform: translateY(-30px);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-preview {
    padding: 6rem 5%;
}

.team-preview h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
}

.team-layout-asymmetric {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
}

.team-member.offset {
    transform: translateY(40px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
}

.process-detail {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.process-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.process-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.process-steps-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.process-step.offset-right {
    transform: translateX(50px);
}

.process-step.offset-left {
    transform: translateX(-50px);
}

.step-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.achievements-creative {
    padding: 6rem 5%;
}

.achievements-creative h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.stats-asymmetric {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-card.elevated {
    transform: translateY(-25px);
}

.stat-card.lowered {
    transform: translateY(25px);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-about {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 5rem 5%;
}

.services-detailed:nth-child(even) {
    background: var(--bg-light);
}

.service-detail-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-category {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-includes li {
    color: var(--text-light);
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.service-pricing {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    color: var(--text-light);
    font-size: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-info {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.pricing-info-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-notes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-note-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.pricing-note-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-note-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-services {
    padding: 5rem 5%;
}

.cta-content-offset {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    transform: translateY(-20px);
}

.cta-content-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-layout {
    padding: 5rem 5%;
}

.contact-info-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    transform: translateY(40px);
}

.contact-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-section {
    padding: 3rem 5%;
    background: var(--bg-light);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
}

.faq-section {
    padding: 5rem 5%;
}

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-info {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 2rem;
}

.service-info strong {
    color: var(--primary-color);
}

.next-steps {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.meanwhile-section {
    padding: 5rem 5%;
}

.meanwhile-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.meanwhile-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.meanwhile-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.meanwhile-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 5%;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-container ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container strong {
    color: var(--text-dark);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.data-table thead {
    background: var(--bg-light);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.data-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.data-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric,
    .intro-offset,
    .approach-split,
    .story-layout-asymmetric,
    .service-detail-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .intro-narrow,
    .story-text {
        transform: none;
    }

    .hero-visual-overlap,
    .intro-wide-image,
    .approach-visual,
    .story-image-overlap,
    .contact-visual {
        transform: none;
    }

    .process-step.offset-right,
    .process-step.offset-left {
        transform: none;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .hero-title-creative {
        font-size: 2.2rem;
    }

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-middle {
        transform: none;
    }

    .testimonial-card.elevated,
    .testimonial-card.lowered {
        transform: none;
    }

    .value-card.offset-down,
    .value-card.offset-up {
        transform: none;
    }

    .team-member.offset {
        transform: none;
    }

    .stat-card.elevated,
    .stat-card.lowered {
        transform: none;
    }

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