* {
    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: #2c3e50;
    overflow-x: hidden;
}

.floating-nav {
    position: fixed;
    top: 20px;
    right: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
    align-items: stretch;
}

.hero-offset-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
    margin-left: 40px;
    border-radius: 20px;
}

.hero-offset-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-offset-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-offset-right {
    flex: 1.2;
    position: relative;
    margin-right: 40px;
    margin-left: -100px;
    margin-top: 60px;
    margin-bottom: 60px;
    background: #dfe6e9;
    border-radius: 20px;
    overflow: hidden;
}

.hero-offset-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    align-self: flex-start;
}

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

.problem-reveal {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

.offset-block {
    flex: 1;
    padding: 60px;
    background: #ecf0f1;
    border-radius: 20px;
    margin-top: -40px;
}

.offset-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.offset-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.overlapping-visual {
    flex: 1;
    position: relative;
    margin-bottom: -60px;
    background: #bdc3c7;
    border-radius: 20px;
    overflow: hidden;
}

.overlapping-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid {
    padding: 120px 40px;
    background: white;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 60px;
    margin-left: 100px;
    color: #1a1a1a;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 320px;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 80px;
}

.card-offset-5 {
    margin-top: 40px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #dfe6e9;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 20px 25px 10px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    padding: 10px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 100px 40px;
    background: #f8f9fa;
}

.form-container-asymmetric {
    max-width: 600px;
    margin-left: 20%;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container-asymmetric > p {
    color: #666;
    margin-bottom: 30px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.insight-offset {
    padding: 100px 40px;
    background: white;
}

.insight-content {
    max-width: 700px;
    margin-right: 15%;
    margin-left: auto;
}

.insight-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-block p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: white;
}

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-reject {
    background: #7f8c8d;
    color: white;
}

.btn-reject:hover {
    background: #6c7a7b;
    transform: translateY(-2px);
}

.about-hero-offset {
    padding: 180px 40px 80px;
    background: #f8f9fa;
}

.about-text-block {
    max-width: 700px;
    margin-left: 15%;
}

.about-text-block h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 1.3rem;
    color: #555;
}

.story-section {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    padding-right: 40px;
}

.story-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-block-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-visual-right {
    flex: 1;
    background: #dfe6e9;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -60px;
}

.story-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-offset {
    padding: 100px 40px;
    background: #ecf0f1;
}

.philosophy-content {
    max-width: 650px;
    margin-left: auto;
    margin-right: 10%;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.values-asymmetric {
    padding: 100px 40px;
}

.values-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    margin-left: 80px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    max-width: 320px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

.value-card.offset-1 {
    margin-top: 0;
}

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

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

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.services-hero {
    padding: 180px 40px 80px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.3rem;
    color: #bdc3c7;
}

.services-detailed {
    padding: 100px 40px;
}

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

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

.service-info {
    flex: 1;
}

.service-info.offset-right {
    margin-right: -40px;
}

.service-info.offset-left {
    margin-left: -40px;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.price-large {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 30px 0 20px;
}

.service-visual {
    flex: 1;
    background: #dfe6e9;
    border-radius: 20px;
    overflow: hidden;
    max-height: 400px;
}

.service-visual.offset-left {
    margin-top: -40px;
}

.service-visual.offset-right {
    margin-top: 40px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-offset {
    padding: 80px 40px;
    background: #ecf0f1;
    text-align: center;
}

.cta-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-offset p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.contact-hero {
    padding: 180px 40px 80px;
    background: #ecf0f1;
    text-align: center;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #555;
}

.contact-content-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
}

.contact-info-offset {
    flex: 1;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 20px;
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.contact-visual-offset {
    flex: 1;
    background: #dfe6e9;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -80px;
    min-height: 400px;
}

.contact-visual-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-note {
    padding: 60px 40px;
    background: white;
}

.contact-note p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    line-height: 1.8;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 40px 100px;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 180px 40px 100px;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

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

    .hero-offset-left,
    .hero-offset-right {
        margin: 20px;
    }

    .hero-offset-left h1 {
        font-size: 2.5rem;
    }

    .problem-reveal,
    .story-section,
    .service-detail-asymmetric,
    .contact-content-asymmetric {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .section-title-offset,
    .values-asymmetric h2 {
        margin-left: 0;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }
}
