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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 580px;
    position: relative;
    z-index: 2;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 18%;
    width: 55%;
    height: 70%;
    transform: rotate(-3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e8e8e8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.intro-offset {
    padding: 120px 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-block {
    flex: 1;
    padding-left: 10%;
}

.intro-text-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-visual-card {
    flex: 0 0 420px;
    transform: rotate(2deg);
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8e8e8;
    object-fit: cover;
}

.services-irregular {
    padding: 100px 60px 120px;
    background: #f9f9f9;
}

.section-title-offset {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 70px;
    margin-left: 12%;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 16px 24px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #333;
    transform: scale(1.02);
}

.card-large {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

.card-offset-top {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 280px;
    margin-top: 40px;
}

.card-small {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 280px;
}

.card-wide {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    margin-top: -30px;
}

.card-offset-bottom {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 280px;
    margin-top: 60px;
}

.card-tall {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 280px;
}

.process-diagonal {
    padding: 140px 60px;
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 56px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.process-image-slant {
    flex: 0 0 480px;
    transform: rotate(-2deg);
}

.process-image-slant img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background-color: #e8e8e8;
    object-fit: cover;
}

.testimonials-scattered {
    padding: 100px 60px 120px;
    background: #f4f4f4;
}

.testimonials-scattered h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-blocks {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    background: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 380px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.testimonial-offset-1 {
    margin-top: -20px;
}

.testimonial-offset-2 {
    margin-top: 40px;
}

.testimonial-offset-3 {
    margin-top: 10px;
}

.form-section-overlap {
    padding: 140px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-section {
    padding: 60px;
    background: #f0f0f0;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

.footer-links,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ccc;
}

.footer-links a,
.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4da3ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #4da3ff;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3388dd;
    transform: scale(1.05);
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-reject:hover {
    border-color: #999;
    transform: scale(1.05);
}

.about-hero-offset {
    padding: 180px 60px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.about-content-block h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-content-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-story-diagonal {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image-left {
    flex: 0 0 480px;
    transform: rotate(-1deg);
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8e8e8;
    object-fit: cover;
}

.story-text-right {
    flex: 1;
}

.story-text-right h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
}

.story-text-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 100px 60px;
    background: #f9f9f9;
}

.values-asymmetric h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.value-offset-1 {
    margin-top: -20px;
}

.value-offset-2 {
    margin-top: 30px;
}

.value-offset-3 {
    margin-top: 10px;
}

.value-offset-4 {
    margin-top: 40px;
}

.team-scattered {
    padding: 100px 60px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.team-visual img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e8e8e8;
    object-fit: cover;
}

.approach-overlap {
    padding: 100px 60px;
    background: #f4f4f4;
    max-width: 900px;
    margin: 0 auto;
}

.approach-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.approach-cta {
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

.services-hero-diagonal {
    padding: 180px 60px 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-diagonal h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
}

.services-hero-diagonal p {
    font-size: 18px;
    color: #555;
}

.services-detailed {
    padding: 60px 60px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-image-block {
    flex: 0 0 500px;
}

.service-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8e8e8;
    object-fit: cover;
}

.service-info-block {
    flex: 1;
}

.service-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-form-section {
    padding: 100px 60px;
    background: #f9f9f9;
}

.contact-hero-offset {
    padding: 180px 60px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-offset h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-hero-offset p {
    font-size: 18px;
    color: #555;
}

.contact-layout-asymmetric {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    padding: 60px 60px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-visual-offset {
    flex: 0 0 480px;
    transform: rotate(2deg);
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8e8e8;
    object-fit: cover;
}

.contact-map-section {
    padding: 80px 60px;
    background: #f4f4f4;
    text-align: center;
}

.contact-map-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-map-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    background: #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 60px 80px;
}

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

.thanks-container h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.thanks-service-info {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 60px 80px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background: #f4f4f4;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 48px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-offset,
    .process-diagonal,
    .about-story-diagonal,
    .contact-layout-asymmetric,
    .service-detail {
        flex-direction: column;
    }

    .nav-floating {
        top: 30px;
        left: 20px;
        right: 20px;
        transform: none;
        padding: 12px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .service-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .value-card {
        margin-top: 0 !important;
    }

    .contact-visual-offset,
    .intro-visual-card,
    .process-image-slant,
    .story-image-left,
    .service-image-block {
        flex: 1 1 auto;
        width: 100%;
    }
}
