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

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #ed8936;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-gray: #718096;
    --border-color: #e2e8f0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.nav-floating {
    position: fixed;
    top: 30px;
    right: 40px;
    left: 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 60px;
    position: relative;
}

.hero-content-offset {
    max-width: 650px;
    padding-right: 60px;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 137, 54, 0.3);
}

.hero-visual-block {
    position: absolute;
    right: -50px;
    top: 180px;
    width: 45%;
    max-width: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

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

.stats-overlay {
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    background: var(--light-bg);
}

.stat-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

.stat-offset-1 {
    transform: translateY(-20px);
}

.stat-offset-2 {
    transform: translateY(10px);
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
}

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

.narrative-block {
    flex: 1;
}

.section-heading-offset {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.narrative-content p {
    font-size: 19px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.problem-visual {
    flex: 0 0 400px;
    transform: rotate(-2deg);
}

.problem-visual img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.insight-reveal {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--white);
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.insight-text-block {
    flex: 1;
}

.insight-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.insight-text-block h2 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-text-block p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.insight-quote-offset {
    flex: 0 0 350px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    transform: translateY(40px);
}

.insight-quote-offset blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.95;
}

.trust-builder {
    padding: 100px 40px;
    background: var(--light-bg);
}

.trust-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.trust-item-1 {
    transform: translateY(-25px);
}

.trust-item-2 {
    transform: translateY(15px);
}

.trust-item-3 {
    transform: translateY(-10px);
}

.trust-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.trust-content {
    padding: 30px;
}

.trust-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.trust-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.trust-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.sticky-cta-appear {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 20px 40px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s;
}

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

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.sticky-cta-content span {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 35px;
    background: var(--white);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 25px;
    transition: transform 0.3s;
}

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

.method-section {
    padding: 100px 40px;
}

.method-layout-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.method-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.method-header h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.method-intro {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.7;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    max-width: 700px;
}

.step-offset-right {
    align-self: flex-end;
    transform: translateX(-40px);
}

.step-offset-left {
    align-self: flex-start;
    transform: translateX(40px);
}

.step-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

.benefits-reveal {
    padding: 100px 40px;
    background: var(--light-bg);
}

.benefits-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header-center h2 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
}

.benefits-asymmetric-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-block {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.benefit-medium {
    flex: 1 1 calc(48% - 15px);
    min-width: 280px;
}

.benefit-small {
    flex: 1 1 calc(38% - 15px);
    min-width: 250px;
}

.benefit-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-block p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.inline-cta-section {
    padding: 80px 40px;
}

.inline-cta-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
}

.inline-cta-block h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.inline-cta-block p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-inline-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s;
}

.btn-inline-cta:hover {
    transform: translateY(-3px);
}

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

.services-intro-offset {
    max-width: 700px;
    margin-bottom: 60px;
}

.services-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-intro-offset h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-position-1 {
    transform: translateY(-15px);
}

.service-position-2 {
    transform: translateY(20px);
}

.service-position-3 {
    transform: translateY(-10px);
}

.service-position-4 {
    transform: translateY(15px);
}

.service-position-5 {
    transform: translateY(-20px);
}

.service-position-6 {
    transform: translateY(10px);
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

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

.urgency-section {
    padding: 100px 40px;
    background: var(--light-bg);
    display: flex;
    gap: 80px;
    align-items: center;
}

.urgency-content-offset {
    flex: 1;
}

.urgency-content-offset h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.urgency-content-offset p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.btn-urgency {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s;
}

.btn-urgency:hover {
    transform: translateY(-3px);
}

.urgency-visual {
    flex: 0 0 500px;
}

.urgency-visual img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-section {
    padding: 100px 40px;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro-block {
    flex: 0 0 320px;
}

.form-intro-block h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro-block p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-form {
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
}

.final-cta-section {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 52px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

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

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

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    color: var(--text-gray);
}

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

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

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

.btn-cookie-reject {
    background: var(--light-bg);
    color: var(--text-gray);
}

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

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero {
    padding: 150px 40px 80px;
    text-align: center;
    background: var(--light-bg);
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1,
.thanks-content h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-subtitle,
.services-subtitle,
.contact-subtitle,
.thanks-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.about-story,
.about-approach {
    padding: 100px 40px;
}

.story-layout,
.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text,
.approach-text {
    flex: 1;
}

.story-text h2,
.approach-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text p,
.approach-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image,
.approach-visual {
    flex: 0 0 450px;
}

.story-image img,
.approach-visual img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-mission {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.mission-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.about-values {
    padding: 100px 40px;
    background: var(--light-bg);
}

.values-heading {
    font-size: 48px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.value-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.approach-list {
    list-style: disc;
    margin-left: 25px;
}

.approach-list li {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-team {
    padding: 100px 40px;
}

.team-heading {
    font-size: 48px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 0 0 320px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 20px 0 5px;
    padding: 0 20px;
}

.team-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    padding: 0 20px 25px;
}

.about-cta {
    padding: 100px 40px;
    background: var(--light-bg);
    text-align: center;
}

.about-cta-content h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.btn-cta,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 25px;
    transition: transform 0.3s;
}

.btn-cta,
.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--primary-color);
    margin-left: 15px;
}

.btn-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.services-main {
    padding: 60px 40px 100px;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.intro-text {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-pricing-block {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-visual {
    flex: 0 0 400px;
}

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

.service-featured {
    position: relative;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 30px;
}

.service-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.btn-featured {
    background: var(--primary-color);
}

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

.highlight-price {
    font-size: 48px;
}

.price-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.services-cta {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-main {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-detail-block {
    margin-bottom: 35px;
}

.contact-detail-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail-block p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-detail-block a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
}

.contact-note p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 40px;
    background: var(--light-bg);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.thanks-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-confirmation {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-next-steps {
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.next-steps-list {
    list-style: decimal;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps-list li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    margin-left: 25px;
}

.thanks-actions {
    margin-top: 40px;
}

.legal-page {
    padding: 150px 40px 80px;
}

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

.legal-container h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content ul li {
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-visual-block {
        width: 40%;
        right: 0;
    }

    .problem-narrative,
    .urgency-section,
    .story-layout,
    .approach-layout {
        flex-direction: column;
    }

    .problem-visual,
    .urgency-visual,
    .story-image,
    .approach-visual {
        flex: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail-visual {
        flex: 1;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        left: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 20px;
        right: 20px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 20px 40px;
    }

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

    .hero-title {
        font-size: 42px;
    }

    .hero-visual-block {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: 0;
        top: 0;
        margin-top: 40px;
        transform: rotate(0);
    }

    .stats-overlay {
        padding: 60px 20px;
    }

    .stat-card {
        min-width: 100%;
        transform: none !important;
    }

    .section-heading-offset,
    .method-header h2,
    .services-intro-offset h2 {
        font-size: 36px;
    }

    .trust-item {
        flex: 1 1 100%;
        transform: none !important;
    }

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

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 100%;
        transform: none !important;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .form-intro-block {
        flex: 1;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .insight-container {
        flex-direction: column;
    }

    .insight-quote-offset {
        flex: 1;
        transform: none;
    }
}

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

    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 38px;
    }

    .final-cta-content h2 {
        font-size: 36px;
    }
}