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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #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;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

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

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

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

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 3rem 5%;
    gap: 3rem;
}

.hero-content-left {
    flex: 1;
    padding-right: 2rem;
    transform: translateY(-30px);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-image-right {
    flex: 1;
    transform: translateY(30px) translateX(20px);
}

.hero-image-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.intro-diagonal {
    padding: 5rem 8%;
    background: var(--bg-light);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.intro-text-block {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
}

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

.intro-text-block p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.problem-amplify {
    padding: 5rem 5%;
    background: white;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.problem-card-2 {
    transform: translateY(40px);
}

.problem-card-3 {
    transform: translateY(-20px);
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.insight-offset {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 5%;
    background: white;
}

.insight-image {
    flex: 1;
    transform: translateX(-40px);
}

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

.insight-content {
    flex: 1;
    transform: translateX(40px);
}

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

.insight-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto 2rem;
}

.service-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-large {
    flex: 2;
    min-width: 320px;
}

.service-medium {
    flex: 1.5;
    min-width: 280px;
    transform: translateY(30px);
}

.service-small {
    flex: 1;
    min-width: 260px;
}

.service-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-box p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

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

.services-link-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.link-services {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.trust-builder {
    padding: 5rem 5%;
    background: white;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.trust-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.testimonials-scattered {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

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

.testimonial-2 {
    transform: translateY(30px);
}

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

.testimonial p {
    font-size: 1.05rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.benefits-reveal {
    padding: 6rem 5%;
    background: white;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-layout {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-sticky-trigger {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transform: rotate(-0.5deg);
}

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

.form-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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(--primary-color);
}

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

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

.urgency-block {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    text-align: center;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.final-cta {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.cta-large:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.cta-floating.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cta-floating a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.cta-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

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

.footer-content {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.page-header {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-full {
    padding: 4rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

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

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

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

.service-detail p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

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

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

.price-note {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 400;
}

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

.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-services p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.about-story {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.story-content {
    flex: 1.5;
}

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

.story-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.team-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.team-member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.numbers-grid {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.number-item {
    text-align: center;
    min-width: 200px;
}

.number-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.number-item p {
    color: var(--text-medium);
    font-size: 1rem;
}

.why-us-section {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.why-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.why-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-detail p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-faq {
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
}

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

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

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

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

.thanks-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
}

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

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

.thanks-resources {
    padding: 4rem 5%;
    background: white;
}

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

.resources-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

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

.legal-update {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

.legal-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.gdpr-table th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
}

.gdpr-table td {
    color: var(--text-medium);
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 5%;
    }

    .hero-content-left {
        transform: none;
        padding-right: 0;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-image-right {
        transform: none;
        width: 100%;
    }

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

    .insight-image,
    .insight-content {
        transform: none;
    }

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

    .about-story {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .cta-floating {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-content-left h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-text-block h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-medium {
        transform: none;
    }

    .problem-card-2,
    .problem-card-3 {
        transform: none;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        transform: none;
    }

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