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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2a4a6f;
    --accent-color: #e67e22;
    --light-bg: #f8f9fa;
    --dark-text: #1a1a1a;
    --light-text: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

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

.nav-menu li a {
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

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

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

.hero-offset {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-text-offset {
    max-width: 600px;
    padding: 60px;
    background: var(--white);
    position: relative;
    z-index: 10;
    margin-left: 5%;
    box-shadow: var(--shadow-lg);
}

.hero-text-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.asymmetric-intro {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-left {
    flex: 1;
    padding-left: 8%;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
}

.intro-visual-right {
    flex: 0.8;
    transform: translateY(-40px);
}

.intro-visual-right img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.problem-amplify {
    background: var(--light-bg);
    padding: 120px 20px;
    position: relative;
}

.problem-amplify::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(42, 74, 111, 0.05));
}

.problem-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.problem-content h3 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: left;
    max-width: 700px;
    color: var(--primary-color);
}

.problem-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.problem-card.offset-up {
    transform: translateY(-30px);
}

.problem-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
}

.insight-text {
    flex: 1.2;
}

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

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

.insight-visual {
    flex: 1;
}

.insight-visual img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.trust-building {
    padding: 100px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trust-header p {
    font-size: 19px;
    color: var(--light-text);
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

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

.trust-item p {
    font-size: 17px;
    color: var(--dark-text);
}

.testimonials-inline {
    padding: 80px 20px;
    background: var(--light-bg);
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 45px 55px;
    background: var(--white);
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.testimonial-block.offset-right {
    margin-left: auto;
    margin-right: 5%;
}

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

.testimonial-author {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.services-showcase {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 19px;
    color: var(--light-text);
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    transform: scale(1.05);
}

.service-card.wide {
    flex: 1 1 calc(50% - 15px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card.featured p {
    opacity: 0.95;
}

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

.service-card.featured .service-price {
    color: var(--white);
}

.btn-select-service {
    padding: 14px 28px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.service-card.featured .btn-select-service {
    background: var(--accent-color);
}

.service-card.featured .btn-select-service:hover {
    background: #d35400;
}

.form-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 18px;
    color: var(--light-text);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.form-consent {
    margin: 30px 0;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--light-text);
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

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

.btn-submit:hover {
    background: #d35400;
}

.benefits-visual {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-content {
    flex: 1.3;
}

.benefits-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 28px;
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.benefits-image {
    flex: 1;
}

.benefits-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.urgency-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent-color), #d35400);
    text-align: center;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.urgency-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.urgency-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.cta-urgency:hover {
    transform: scale(1.05);
    color: var(--accent-color);
}

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

.final-trust-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-trust-wrapper h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.final-trust-wrapper p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-item {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-col ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.98);
    color: var(--white);
    padding: 20px;
    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;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.story-section {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--light-text);
    margin-bottom: 20px;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 100px 20px;
    background: var(--light-bg);
    text-align: center;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    box-shadow: var(--shadow);
}

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

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

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

.team-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 50px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

.stat-item p {
    font-size: 16px;
    color: var(--dark-text);
}

.methodology-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.methodology-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.methodology-wrapper h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.method-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
}

.method-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.method-step p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
}

.achievements-section {
    padding: 100px 20px;
    text-align: center;
}

.achievements-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.achievement-item {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
}

.achievement-year {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
    min-width: 100px;
}

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

.cta-about {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.cta-about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    color: var(--white);
}

.services-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.services-intro {
    padding: 80px 20px;
    text-align: center;
}

.intro-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-text);
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 60px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background: var(--light-bg);
}

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

.service-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

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

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 30px;
}

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

.service-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--dark-text);
}

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

.service-pricing-detail {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.price-large {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 20px;
}

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

.service-detail-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.services-comparison {
    padding: 80px 20px;
    background: var(--light-bg);
}

.services-comparison h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 17px);
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.comparison-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.comparison-card p {
    font-size: 15px;
    color: var(--light-text);
}

.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.contact-main {
    padding: 100px 20px;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 700;
}

.info-block p,
.info-block a {
    font-size: 17px;
    line-height: 1.8;
    color: var(--light-text);
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-text);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
}

.contact-cta {
    padding: 80px 20px;
    text-align: center;
}

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

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

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

.thanks-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--success-color), #229954);
    color: var(--white);
}

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.thanks-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-info {
    padding: 100px 20px;
}

.info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.info-card {
    flex: 1.5;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

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

.timeline-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.service-confirmation {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    align-self: flex-start;
}

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

.service-confirmation p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--dark-text);
}

.service-price-confirm {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 15px;
}

.thanks-resources {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.resources-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.resources-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resources-wrapper p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.resources-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-card {
    flex: 1 1 calc(33.333% - 17px);
    min-width: 250px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.resource-card p {
    font-size: 15px;
    color: var(--light-text);
}

.thanks-contact {
    padding: 80px 20px;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-box p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.email-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: underline;
}

.email-link:hover {
    color: #d35400;
}

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

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

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

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

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

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

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

.gdpr-table th,
.cookies-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.gdpr-table td,
.cookies-table td {
    font-size: 15px;
    color: var(--dark-text);
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 15px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        display: none;
        gap: 15px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-offset {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
    }

    .hero-visual img {
        clip-path: none;
    }

    .hero-text-offset {
        margin-left: 0;
        order: 1;
    }

    .hero-text-offset h1 {
        font-size: 38px;
    }

    .asymmetric-intro,
    .story-wrapper,
    .benefits-visual,
    .insight-wrapper,
    .service-detail-card,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .intro-visual-right {
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .hero-text-offset h1 {
        font-size: 32px;
    }

    .problem-cards {
        flex-direction: column;
    }

    .problem-card.offset-up {
        transform: none;
    }

    .trust-grid,
    .team-stats {
        gap: 40px;
    }

    .trust-number,
    .stat-number {
        font-size: 42px;
    }

    .services-header h2,
    .page-hero h1 {
        font-size: 34px;
    }

    .contact-form {
        padding: 30px;
    }

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

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

    .values-grid {
        flex-direction: column;
    }

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

    .comparison-grid {
        flex-direction: column;
    }

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

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