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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 20px;
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

main {
    padding-top: 120px;
}

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

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--text-primary);
}

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

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.05rem;
}

.cta-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: -120px;
    background: var(--bg-light);
}

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

.intro-overlap {
    display: flex;
    padding: 100px 120px 80px 80px;
    gap: 80px;
    align-items: flex-start;
    background: var(--bg-white);
}

.intro-text-box {
    flex: 1.2;
    padding: 50px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    transform: translateY(-60px);
}

.intro-text-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.intro-stats-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
}

.stat-card {
    padding: 35px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 5px solid var(--secondary-color);
}

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

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-amplify {
    display: flex;
    padding: 120px 80px;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.problem-visual {
    flex: 1;
    background: var(--bg-white);
    transform: translateX(-40px);
}

.problem-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.problem-content {
    flex: 1.3;
    padding-left: 40px;
}

.problem-content h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.problem-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.services-asymmetric {
    padding: 100px 80px;
    background: var(--bg-white);
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 40px;
}

.services-header-left h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.card-1 {
    transform: translateX(-20px);
}

.service-card.card-2 {
    transform: translateX(20px) translateY(30px);
}

.service-card.card-3 {
    transform: translateX(-30px) translateY(-20px);
}

.service-card.card-4 {
    transform: translateX(15px);
}

.service-card.card-5 {
    transform: translateX(-25px) translateY(40px);
}

.service-card.card-6 {
    transform: translateX(30px) translateY(-30px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h4 {
    font-size: 1.5rem;
    margin: 25px 30px 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.service-card p {
    margin: 0 30px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    display: block;
    margin: 0 30px 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.select-service {
    margin: 0 30px 30px;
    padding: 14px 30px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

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

.trust-builder {
    padding: 100px 120px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.trust-content-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content-wide h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.trust-block {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.trust-block p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 80px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-block {
    padding: 40px 50px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-block.block-left {
    transform: translateX(-60px);
    max-width: 70%;
}

.testimonial-block.block-right {
    transform: translateX(150px);
    max-width: 65%;
    align-self: flex-end;
}

.testimonial-block.block-center {
    transform: translateX(40px);
    max-width: 75%;
    align-self: center;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

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

.form-visual-left {
    flex: 1;
    background: var(--bg-white);
}

.form-visual-left img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-container-right {
    flex: 1;
    padding: 50px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-40px);
}

.form-container-right h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.form-container-right > p {
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

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

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

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

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

.final-cta-block {
    padding: 120px 180px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
    color: white;
}

.final-cta-block h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.final-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.3s;
    font-size: 1.05rem;
}

.cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

.footer-top {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col-main {
    flex: 1.5;
}

.footer-col-main h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-col-main p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-col-links,
.footer-col-legal {
    flex: 1;
}

.footer-col-links h5,
.footer-col-legal h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col-links a,
.footer-col-legal a {
    display: block;
    color: #9ca3af;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col-links a:hover,
.footer-col-legal a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-copy {
    font-size: 0.9rem;
    color: #6b7280;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 25px 40px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.about-page,
.services-page,
.contact-page {
    min-height: 100vh;
}

.about-hero-split {
    display: flex;
    padding: 80px 120px 100px 80px;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.about-hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-hero-image {
    flex: 1;
    background: var(--bg-white);
}

.about-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.story-section {
    padding: 100px 200px;
    background: var(--bg-white);
}

.story-content-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.story-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-primary);
}

.story-content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
    line-height: 1.9;
}

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

.values-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.value-item:nth-child(odd) {
    transform: translateX(-30px);
}

.value-item:nth-child(even) {
    transform: translateX(30px) translateY(20px);
}

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

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

.team-asymmetric {
    padding: 100px 80px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-intro-text {
    max-width: 700px;
    padding-left: 40px;
}

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

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

.team-visual {
    transform: translateX(-40px);
    background: var(--bg-light);
}

.team-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-details {
    max-width: 800px;
    margin-left: auto;
    padding-right: 80px;
}

.team-details p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.approach-block {
    padding: 100px 120px;
    background: var(--bg-light);
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 30px;
    padding: 35px 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.1rem;
}

.btn-cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.services-hero {
    padding: 80px 120px 60px;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--text-primary);
}

.services-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 80px 100px;
    background: var(--bg-white);
}

.service-full {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 20px;
}

.service-full.service-alt-left .service-content {
    order: 1;
}

.service-full.service-alt-left .service-image {
    order: 2;
}

.service-full.service-alt-right .service-image {
    order: 1;
}

.service-full.service-alt-right .service-content {
    order: 2;
}

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

.service-full .service-image {
    flex: 1;
    background: var(--bg-white);
}

.service-full .service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-full h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.service-full p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-full h4 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.service-full ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 25px;
}

.service-full ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-timeline,
.service-scope,
.service-note,
.service-extras,
.service-budget {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 15px;
}

.service-price-large {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 25px 0 20px;
}

.services-cta {
    padding: 80px 120px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.services-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--text-secondary);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-cta-services {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.1rem;
}

.btn-cta-services:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-hero-offset {
    padding: 80px 120px 60px 80px;
    background: var(--bg-light);
}

.contact-hero-offset h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--text-primary);
}

.contact-hero-offset p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 80px 80px 60px;
    gap: 80px;
    background: var(--bg-white);
}

.contact-info-block {
    flex: 1;
    padding: 40px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-item {
    margin-bottom: 35px;
}

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

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

.contact-visual-offset {
    flex: 1;
    transform: translateY(-60px);
    background: var(--bg-light);
}

.contact-visual-offset img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-approach {
    padding: 80px 120px;
    background: var(--bg-light);
}

.contact-approach h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

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

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

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

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.contact-form-section {
    padding: 80px 200px;
    background: var(--bg-white);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

.contact-form-main {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-main .form-row {
    display: flex;
    gap: 20px;
}

.contact-form-main .form-group {
    margin-bottom: 25px;
    flex: 1;
}

.contact-form-main label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

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

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

.btn-submit-contact {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

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

.faq-contact {
    padding: 80px 120px;
    background: var(--bg-light);
}

.faq-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

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

.faq-item {
    padding: 35px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.thanks-page {
    min-height: 70vh;
}

.thanks-content {
    padding: 100px 120px 60px;
    text-align: center;
    background: var(--bg-light);
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 120px;
    height: 120px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--bg-white);
    padding: 25px 40px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.thanks-service-info span {
    font-weight: 700;
    color: var(--primary-color);
}

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

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

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

.thanks-next-steps ul li {
    padding: 15px 20px;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 50px;
}

.thanks-next-steps ul li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.btn-home,
.btn-services-link {
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.2s, background 0.3s;
    font-size: 1.05rem;
}

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

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

.btn-services-link {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-services-link:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.thanks-extra {
    padding: 80px 120px;
    background: var(--bg-white);
}

.thanks-extra h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

.extra-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.extra-card {
    flex: 0 0 350px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.extra-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.extra-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.extra-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
}

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

.legal-page {
    min-height: 100vh;
    background: var(--bg-white);
}

.legal-header {
    padding: 100px 120px 60px;
    background: var(--bg-light);
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--text-primary);
}

.legal-update {
    font-size: 1rem;
    color: var(--text-secondary);
}

.legal-content {
    padding: 80px 200px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    font-weight: 600;
    color: var(--text-primary);
}

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

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 25px;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

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

@media (max-width: 1200px) {
    .hero-asymmetric {
        padding: 0 50px;
    }

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

    .services-grid-offset .service-card {
        flex: 0 0 100%;
        transform: none !important;
    }

    .legal-content {
        padding: 80px 80px 100px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
        top: 15px;
        padding: 15px 20px;
    }

    main {
        padding-top: 180px;
    }

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

    .hero-visual-block {
        margin: 40px 0 0 0;
    }

    .intro-overlap,
    .problem-amplify,
    .form-section-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}