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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f5f5f5;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-cookie-accept {
    background-color: var(--highlight-color);
    color: var(--text-light);
}

.btn-cookie-accept:hover {
    background-color: #d63850;
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 50px 80px;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content-offset {
    flex: 1;
    max-width: 650px;
    padding-right: 60px;
    margin-left: 5%;
}

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

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

.hero-visual-block {
    flex: 1;
    max-width: 550px;
    position: relative;
    margin-right: 5%;
}

.hero-visual-block img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-outline {
    display: inline-block;
    padding: 17px 44px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cta-inline {
    display: inline-block;
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 3px;
    margin-top: 20px;
}

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

.trust-strip {
    padding: 60px 50px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    color: var(--text-light);
}

.trust-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-offset {
    padding: 120px 50px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

.intro-text-narrow {
    flex: 1;
    max-width: 600px;
    margin-left: 8%;
}

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

.intro-text-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.intro-image-float {
    flex: 1;
    max-width: 450px;
    margin-top: 50px;
    transform: translateY(-30px);
}

.intro-image-float img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.problem-section {
    padding: 100px 50px;
    background-color: var(--light-bg);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
}

.problem-block {
    flex: 1;
    max-width: 550px;
}

.problem-block h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.problem-visual img {
    border-radius: 20px;
    transform: rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.solution-intro {
    padding: 100px 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title-large {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

.solution-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.services-grid-offset {
    padding: 80px 50px 120px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card-large {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transform: rotate(-1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    transform: rotate(1deg);
    border: 2px solid var(--border-color);
}

.service-card-large h3,
.service-card-medium h3,
.service-card-small h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-large p,
.service-card-medium p,
.service-card-small p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin: 20px 0;
}

.service-select {
    padding: 14px 32px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    align-self: flex-start;
}

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

.service-card-small .service-select {
    background-color: var(--primary-color);
}

.service-card-small .service-select:hover {
    background-color: var(--accent-color);
}

.process-visual {
    padding: 100px 50px;
    background-color: var(--light-bg);
}

.process-visual h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--highlight-color);
    min-width: 60px;
}

.process-step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.testimonial-offset {
    padding: 100px 50px;
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 45px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 20px;
    transform: rotate(-1.5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card:nth-child(even) {
    transform: rotate(1.5deg);
    background-color: var(--accent-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    opacity: 0.8;
    font-style: normal;
}

.insight-block {
    padding: 120px 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 80px;
}

.insight-content {
    flex: 1;
    max-width: 650px;
}

.insight-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.insight-image {
    flex: 1;
    max-width: 500px;
}

.insight-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-block-sticky {
    padding: 100px 50px;
    background-color: var(--light-bg);
    text-align: center;
}

.cta-block-sticky h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-block-sticky > p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-form-offset {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.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: 15px;
    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(--highlight-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 16px 50px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 10px;
    width: 100%;
}

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

.final-cta-visual {
    padding: 120px 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta-content p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.footer-asymmetric {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 50px 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 14px;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--highlight-color);
}

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

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

.page-hero-minimal {
    padding: 180px 50px 100px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.page-hero-minimal h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.1;
}

.hero-lead {
    font-size: 22px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    padding: 100px 50px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-block {
    flex: 1;
    max-width: 650px;
}

.story-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.story-image {
    flex: 1;
    max-width: 500px;
}

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

.values-offset {
    padding: 80px 50px;
    background-color: var(--light-bg);
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.team-intro {
    padding: 100px 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-lead {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    background-color: var(--light-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--highlight-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.approach-section {
    padding: 100px 50px;
    background-color: var(--light-bg);
}

.approach-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.approach-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
    max-width: 650px;
}

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

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

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

.projects-highlight {
    padding: 100px 50px;
}

.projects-highlight h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.project-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-item {
    padding: 35px;
    background-color: var(--light-bg);
    border-radius: 15px;
    border-left: 5px solid var(--highlight-color);
}

.project-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.cta-about {
    padding: 80px 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

.cta-about h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.page-hero-services {
    padding: 180px 50px 100px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-hero-services h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.page-hero-services .hero-lead {
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 80px 50px;
}

.services-detailed:nth-child(even) {
    background-color: var(--light-bg);
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    max-width: 650px;
}

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

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

.service-detail-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-select-btn {
    padding: 16px 40px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    display: inline-block;
}

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

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

.service-detail-image img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

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

.services-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.service-process {
    padding: 100px 50px;
    background-color: var(--light-bg);
}

.service-process h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-marker {
    min-width: 60px;
    height: 60px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-split {
    padding: 100px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--highlight-color);
}

.contact-item p,
.contact-item a {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

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

.contact-note h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-cta-final {
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.contact-cta-final h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta-final p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.thanks-hero {
    padding: 180px 50px 100px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.service-selected {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 10px;
    margin: 30px auto;
    max-width: 600px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next {
    margin: 50px auto;
    max-width: 600px;
    text-align: left;
}

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

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

.next-steps li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.6;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-info {
    padding: 80px 50px;
}

.thanks-info h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.info-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px;
    background-color: var(--light-bg);
    border-radius: 15px;
    text-align: center;
}

.info-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.info-card a {
    color: var(--highlight-color);
    font-weight: 600;
    text-decoration: underline;
}

.info-card a:hover {
    color: var(--primary-color);
}

.legal-page {
    padding: 150px 50px 80px;
    background-color: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

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

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

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

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

.legal-content a:hover {
    color: var(--primary-color);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 700;
    color: var(--primary-color);
}

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

@media screen and (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 150px 40px 80px;
    }

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

    .hero-visual-block {
        margin-right: 0;
    }

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

    .intro-offset,
    .problem-container,
    .about-story,
    .approach-content,
    .service-detail-card {
        flex-direction: column;
        gap: 50px;
    }

    .intro-text-narrow,
    .story-block,
    .approach-text,
    .service-detail-content {
        margin-left: 0;
        max-width: 100%;
    }

    .insight-block {
        flex-direction: column;
        gap: 50px;
    }

    .nav-floating {
        top: 20px;
        left: 20px;
        right: 20px;
        padding: 15px 25px;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }

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

    .nav-menu a {
        color: var(--text-light);
        font-size: 20px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title-large {
        font-size: 38px;
    }

    .page-hero-minimal h1,
    .page-hero-services h1 {
        font-size: 42px;
    }

    .testimonial-offset,
    .footer-links {
        flex-direction: column;
    }

    .trust-strip {
        padding: 40px 30px;
    }

    .contact-form-offset,
    .legal-container {
        padding: 30px;
    }

    .services-grid-offset {
        padding: 60px 30px;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        transform: none;
    }

    section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

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

    .section-title-large {
        font-size: 32px;
    }

    .nav-floating {
        border-radius: 20px;
        padding: 12px 20px;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}