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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
}

.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fde68a;
}

.header-asymmetric {
    position: relative;
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-offset {
    transform: translateY(-3px);
}

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 32px;
}

.nav-floating a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-floating a:hover {
    color: #1e40af;
}

.nav-floating a.nav-active {
    color: #1e40af;
}

.hero-asymmetric {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.hero-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    padding-left: 40px;
}

.hero-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #1e40af;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-left {
    flex: 1.3;
    padding-right: 40px;
}

.intro-block-left h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.intro-block-left p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.8;
}

.intro-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-card {
    background: #f3f4f6;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #1e40af;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    margin-top: 8px;
}

.services-diagonal {
    background: #f9fafb;
    padding: 120px 20px;
    transform: skewY(-2deg);
    margin: 60px 0;
}

.services-diagonal > * {
    transform: skewY(2deg);
}

.section-header-creative {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
    padding-left: 40px;
}

.section-header-creative h3 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header-creative p {
    font-size: 20px;
    color: #6b7280;
}

.services-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}

.service-card-offset {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-offset:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-card-offset:nth-child(odd) {
    transform: translateX(-12px);
}

.service-card-offset:nth-child(even) {
    transform: translateX(12px);
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
}

.service-card-offset h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 24px 24px 12px;
}

.service-card-offset p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 24px 24px;
}

.trust-section-irregular {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content-block {
    flex: 1.2;
}

.trust-content-block h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111827;
}

.testimonial-offset {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 3px solid #1e40af;
}

.testimonial-offset blockquote {
    font-size: 18px;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-offset cite {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

.trust-image-angular {
    flex: 1;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(3deg);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.trust-image-angular img {
    width: 100%;
    height: 100%;
}

.form-section-creative {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 100px 20px;
    margin: 80px 0;
}

.form-container-offset {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateX(80px);
}

.form-container-offset h3 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.form-intro {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-offset {
    display: flex;
    flex-direction: column;
}

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

.form-group-offset input,
.form-group-offset select,
.form-group-offset textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit-offset {
    background: #1e40af;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit-offset:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 20px;
}

.footer-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-block-brand h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-block-brand p {
    color: #9ca3af;
}

.footer-block-links h5,
.footer-block-contact h5 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.footer-block-links ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-block-links ul li a:hover {
    color: #ffffff;
}

.footer-block-contact p {
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #f3f4f6;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero-offset {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #6b7280;
}

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

.story-text-block {
    flex: 1.3;
}

.story-text-block h3 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.story-text-block p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-irregular {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-3deg);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.story-image-irregular img {
    width: 100%;
    height: 100%;
}

.values-creative {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.values-creative h3 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 48px;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    padding: 40px 32px;
    background: #f9fafb;
    border-radius: 12px;
    border-top: 4px solid #1e40af;
}

.value-card:nth-child(even) {
    transform: translateY(20px);
}

.value-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

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

.team-section-diagonal {
    background: #f3f4f6;
    padding: 100px 20px;
    margin: 80px 0;
}

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

.team-intro h3 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.team-intro p {
    font-size: 19px;
    color: #6b7280;
}

.team-image-offset {
    max-width: 900px;
    margin: 0 auto;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-image-offset img {
    width: 100%;
    height: 100%;
}

.cta-section-creative {
    max-width: 1200px;
    margin: 100px auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 16px;
    text-align: center;
}

.cta-content-block h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content-block p {
    font-size: 20px;
    color: #e0e7ff;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #1e40af;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.pricing-intro-block {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
}

.pricing-intro-block h3 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.pricing-intro-block p {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-pricing-asymmetric {
    padding: 80px 20px;
}

.pricing-grid-creative {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.pricing-card-offset {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    max-width: 380px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.pricing-card-offset:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: #1e40af;
}

.pricing-featured {
    border-color: #1e40af;
    border-width: 3px;
}

.featured-badge {
    background: #1e40af;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 32px 24px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #1e40af;
}

.pricing-content {
    padding: 32px 24px;
}

.pricing-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #374151;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: #1e40af;
    color: #ffffff;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 24px 24px;
    transition: background 0.3s;
}

.btn-pricing:hover {
    background: #1e3a8a;
}

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

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

.contact-info-block h3 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

.contact-detail-group {
    margin-bottom: 32px;
}

.contact-detail-group h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.contact-detail-group p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.email-display {
    color: #1e40af;
    font-weight: 500;
}

.contact-note {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #92400e;
    line-height: 1.6;
}

.contact-image-offset {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.contact-image-offset img {
    width: 100%;
    height: 100%;
}

.additional-info-creative {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.additional-info-creative h3 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-page-asymmetric {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content-block {
    flex: 1.2;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 32px;
}

.thanks-content-block h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
}

.next-steps-block {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.next-steps-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

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

.steps-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-back-home,
.btn-services {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: opacity 0.3s, transform 0.2s;
}

.btn-back-home {
    background: #1e40af;
    color: #ffffff;
}

.btn-back-home:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-services {
    background: #e5e7eb;
    color: #374151;
}

.btn-services:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.thanks-image-offset {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.thanks-image-offset img {
    width: 100%;
    height: 100%;
}

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

.legal-container {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.legal-container h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.last-updated {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 40px;
}

.legal-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h4 {
    font-size: 19px;
    font-weight: 600;
    color: #374151;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookies-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.cookies-table td {
    color: #6b7280;
    font-size: 15px;
}

@media (max-width: 768px) {
    .hero-content-offset,
    .intro-offset,
    .trust-section-irregular,
    .about-story-asymmetric,
    .team-section-diagonal,
    .contact-layout-asymmetric,
    .thanks-page-asymmetric {
        flex-direction: column;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-image-overlap,
    .trust-image-angular,
    .story-image-irregular,
    .contact-image-offset,
    .thanks-image-offset {
        transform: none;
        height: 300px;
    }

    .form-container-offset {
        transform: none;
        padding: 40px 24px;
    }

    .footer-content-irregular {
        flex-direction: column;
        gap: 32px;
    }

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

    .services-grid-asymmetric,
    .pricing-grid-creative {
        flex-direction: column;
    }

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

    .value-card:nth-child(even) {
        transform: none;
    }

    .nav-floating {
        gap: 16px;
        font-size: 14px;
    }

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

    .legal-container {
        padding: 32px 24px;
    }
}
