:root {
    --primary-color: #1a2332;
    --secondary-color: #3d5a80;
    --accent-color: #ee6c4d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --success-color: #06d6a0;
}

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

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.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 10px rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a.active {
    color: var(--accent-color);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 108, 77, 0.3);
    color: var(--white);
}

.hero-asymmetric {
    padding: 10rem 5% 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8ecf1 100%);
}

.hero-offset-block {
    flex: 1;
    padding-left: 3rem;
}

.hero-offset-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-visual-offset {
    flex: 1;
    position: relative;
    transform: translateY(-2rem);
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(238, 108, 77, 0.3);
    color: var(--white);
}

.intro-offset {
    padding: 5rem 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1.5;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.intro-stat-cluster {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.stat-card.offset-top {
    transform: translateX(2rem);
}

.stat-card.offset-bottom {
    transform: translateX(-2rem);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.problem-visual {
    flex: 1;
    transform: translateY(-1.5rem);
}

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

.problem-text-offset {
    flex: 1.3;
    padding-right: 3rem;
}

.problem-text-offset h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.cta-inline {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.services-asymmetric {
    padding: 6rem 5%;
}

.services-header-offset {
    margin-bottom: 4rem;
    padding-left: 5rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(50% - 1rem);
}

.service-card.wide {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.service-card.wide .service-content {
    flex: 2;
}

.service-card.wide .service-price-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card.offset-right {
    transform: translateX(3rem);
}

.service-card.offset-left {
    transform: translateX(-3rem);
}

.service-card.offset-bottom {
    transform: translateY(2rem);
}

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

.service-card.offset-right:hover {
    transform: translateX(3rem) translateY(-5px);
}

.service-card.offset-left:hover {
    transform: translateX(-3rem) translateY(-5px);
}

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

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

.select-service {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.trust-section-offset {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    gap: 4rem;
}

.trust-text {
    flex: 1;
    padding-right: 2rem;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
}

.testimonials-stagger {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-card.offset-1 {
    transform: translateX(-2rem);
}

.testimonial-card.offset-2 {
    transform: translateX(2rem);
}

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

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
}

.insight-offset {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.insight-block {
    flex: 1.5;
}

.insight-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.insight-visual-cluster {
    flex: 1;
    transform: translateY(-3rem);
}

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

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

.method-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.method-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.method-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    flex: 0 1 calc(33.333% - 1.5rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.method-step.step-1 {
    transform: translateY(-1rem);
}

.method-step.step-2 {
    transform: translateY(1rem);
}

.method-step.step-3 {
    transform: translateY(-0.5rem);
}

.method-step.step-4 {
    transform: translateY(0.5rem);
}

.method-step.step-5 {
    transform: translateY(-1rem);
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.method-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.value-proposition-offset {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.value-left {
    flex: 1;
}

.value-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    font-size: 1.15rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.value-right-visual {
    flex: 1;
    transform: translateX(2rem);
}

.value-right-visual img {
    border-radius: 10px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.1);
}

.form-section-asymmetric {
    padding: 6rem 5%;
    background: var(--light-bg);
    display: flex;
    gap: 4rem;
}

.form-container-offset {
    flex: 2;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-2rem);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

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

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(238, 108, 77, 0.3);
}

.form-side-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transform: translateY(-3rem);
}

.trust-badge p {
    font-size: 1.3rem;
    font-weight: 600;
}

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

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

.footer-col {
    flex: 1;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(238, 108, 77, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(238, 108, 77, 0.5);
    color: var(--white);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.page-hero-offset {
    padding: 10rem 5% 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text-offset {
    flex: 1.5;
    padding-right: 2rem;
}

.story-text-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.story-visual {
    flex: 1;
}

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

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

.philosophy-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 1.5rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.philosophy-card.offset {
    transform: translateY(2rem);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.expertise-offset {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.expertise-left {
    flex: 1.5;
}

.expertise-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.expertise-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    font-size: 1.1rem;
    position: relative;
    color: var(--text-dark);
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.expertise-right {
    flex: 1;
    transform: translateY(-2rem);
}

.expertise-right img {
    border-radius: 10px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

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

.values-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    flex: 1 1 calc(50% - 1rem);
    backdrop-filter: blur(10px);
}

.value-block.v1 {
    transform: translateX(-1.5rem);
}

.value-block.v2 {
    transform: translateX(1.5rem);
}

.value-block.v3 {
    transform: translateX(-1.5rem);
}

.value-block.v4 {
    transform: translateX(1.5rem);
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-block p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 0 1 calc(33.333% - 2rem);
    text-align: center;
}

.team-member.offset {
    transform: translateY(2rem);
}

.team-placeholder {
    margin-bottom: 1.5rem;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

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

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-detail-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-block:last-child {
    border-bottom: none;
}

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

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

.service-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detail-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

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

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

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.process-overview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    background: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-main {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

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

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

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

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

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

.contact-visual-offset {
    flex: 1;
    transform: translateY(-2rem);
}

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

.contact-cta-section {
    padding: 4rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    flex: 1 1 calc(50% - 1rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

.thanks-hero {
    padding: 10rem 5% 5rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #04a777 100%);
    color: var(--white);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.service-confirmation {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
}

.thanks-next-steps {
    padding: 5rem 5%;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    flex: 0 1 calc(33.333% - 1.5rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-num {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-resources {
    padding: 4rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-resources p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.resources-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.resource-link {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    color: var(--accent-color);
}

.legal-page {
    padding: 8rem 5% 5rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

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

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

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

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

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

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

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-offset,
    .problem-amplify,
    .insight-offset,
    .value-proposition-offset,
    .form-section-asymmetric,
    .trust-section-offset,
    .about-story,
    .expertise-offset,
    .service-detail-block,
    .contact-main {
        flex-direction: column;
        gap: 3rem;
    }

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

    .service-card.offset-right,
    .service-card.offset-left,
    .service-card.offset-bottom {
        transform: none;
    }

    .service-card.wide {
        flex-direction: column;
    }

    .method-steps-irregular {
        flex-direction: column;
    }

    .method-step {
        flex: 1 1 100%;
    }

    .method-step.step-1,
    .method-step.step-2,
    .method-step.step-3,
    .method-step.step-4,
    .method-step.step-5 {
        transform: none;
    }

    .philosophy-grid,
    .values-irregular,
    .team-grid-offset,
    .faq-grid {
        flex-direction: column;
    }

    .philosophy-card,
    .value-block,
    .team-member,
    .faq-item {
        flex: 1 1 100%;
    }

    .philosophy-card.offset,
    .team-member.offset {
        transform: none;
    }

    .value-block.v1,
    .value-block.v2,
    .value-block.v3,
    .value-block.v4 {
        transform: none;
    }

    .next-steps-grid,
    .resources-links {
        flex-direction: column;
    }

    .step-card,
    .resource-link {
        flex: 1 1 100%;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-offset-block h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .services-header-offset {
        padding-left: 0;
    }

    .form-container-offset {
        transform: none;
        padding: 2rem;
    }

    .testimonial-card.offset-1,
    .testimonial-card.offset-2 {
        transform: none;
    }
}
