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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 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-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

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

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

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 122, 0.4);
}

.intro-block-offset {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 15%;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.problem-visual-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
}

.split-image {
    flex: 0.9;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.split-content-irregular {
    flex: 1.1;
    padding-left: 2rem;
}

.split-content-irregular h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--accent-color);
}

.insight-cards-irregular {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    padding-left: 8%;
    color: var(--text-dark);
}

.cards-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 3%;
}

.card-overlap {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-overlap.card-1 {
    transform: translateY(-20px);
}

.card-overlap.card-2 {
    transform: translateY(20px);
    background: var(--primary-color);
    color: white;
}

.card-overlap.card-3 {
    transform: translateY(-10px);
}

.card-overlap:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.card-overlap.card-2 .card-number {
    color: white;
    opacity: 0.8;
}

.card-overlap h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card-overlap p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.card-overlap.card-2 p {
    color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-visual {
    flex: 1.2;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(-30px);
}

.testimonial-visual blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-visual cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.trust-stats-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateY(30px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 250px;
}

.services-interactive {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.services-title-irregular {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    transform: translateX(-5%);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:nth-child(odd) {
    transform: translateY(-15px);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-featured {
    border-color: var(--accent-color);
    border-width: 3px;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.service-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 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: 600;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.form-container-irregular {
    max-width: 650px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateX(-5%);
}

.form-container-irregular h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
}

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.why-choose-overlap {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.why-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 10%;
}

.why-content-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.why-item {
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.why-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

.approach-title-offset {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    transform: translateX(5%);
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.approach-block.block-2 {
    flex-direction: row-reverse;
    transform: translateX(5%);
}

.approach-block.block-1 {
    transform: translateX(-3%);
}

.approach-block.block-3 {
    transform: translateX(2%);
}

.approach-block img {
    flex: 1;
    border-radius: 8px;
}

.approach-content {
    flex: 1.2;
}

.approach-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.final-cta-asymmetric {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: white;
}

.cta-content-offset {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: translateX(-3%);
}

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

.cta-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #d97706;
    transform: translateY(-3px);
}

.btn-cta-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

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

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

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

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    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(20px);
    transition: all 0.3s ease;
}

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

.sticky-btn {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d97706;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

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

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

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

.btn-accept:hover {
    background: #059669;
}

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

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

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

.page-hero-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.story-content-offset {
    flex: 1.2;
    padding-right: 2rem;
}

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

.story-content-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-visual-overlap {
    flex: 0.8;
    transform: translateY(-30px);
}

.story-visual-overlap img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

.mission-block {
    flex: 1;
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

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

.mission-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.mission-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.values-cards-irregular {
    padding: 5rem 5%;
}

.values-cards-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.value-card:nth-child(3) {
    transform: translateY(-10px);
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-featured {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(20px) scale(1.05);
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.value-featured p {
    color: rgba(255, 255, 255, 0.9);
}

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

.expertise-content {
    flex: 1.3;
}

.expertise-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.expertise-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.expertise-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.expertise-visual {
    flex: 0.7;
}

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

.team-approach-offset {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.team-approach-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) {
    transform: translateX(5%);
}

.timeline-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.timeline-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

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

.clients-trust h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.clients-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.client-examples {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.client-item {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.client-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-item cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.cta-about {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.services-overview {
    padding: 2rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.overview-text {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-detail-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-highlight {
    border-color: var(--accent-color);
    border-width: 3px;
}

.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-duration {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-detail-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.custom-solutions h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.contact-layout {
    padding: 3rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-block {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

.contact-item p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

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

.contact-note {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

.thanks-hero {
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-confirmation {
    margin-bottom: 2.5rem;
}

.selected-service-info {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

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

.next-steps {
    padding: 5rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

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

.steps-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
}

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

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

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 5%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

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

.legal-content li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

    .hero-content-offset {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-visual-overlap {
        transform: none;
        width: 100%;
        margin-top: 2rem;
    }

    .problem-visual-split,
    .trust-testimonial-overlap,
    .about-story-irregular,
    .expertise-split {
        flex-direction: column;
    }

    .approach-block.block-2 {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

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

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

    .hero-title {
        font-size: 2.2rem;
    }

    .cards-asymmetric,
    .mission-asymmetric,
    .values-grid-asymmetric {
        flex-direction: column;
    }

    .card-overlap,
    .mission-block,
    .value-card {
        transform: none !important;
    }

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

    .service-card {
        max-width: 100%;
        transform: none !important;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title-offset,
    .services-title-irregular {
        font-size: 2rem;
    }

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