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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5a3d;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: 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(--accent-color);
}

.nav-floating {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 48px;
}

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

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

.hero-offset-block {
    flex: 1;
    max-width: 580px;
    padding-left: 40px;
}

.hero-offset-block h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 36px;
}

.hero-visual-right {
    flex: 1;
    max-width: 650px;
    position: relative;
    top: -40px;
}

.hero-visual-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

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

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

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

.intro-narrow {
    flex: 1.2;
    max-width: 620px;
    padding-top: 40px;
}

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

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

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    left: -20px;
}

.stat-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.problem-amplify {
    padding: 120px 5%;
    display: flex;
    gap: 100px;
    background: var(--primary-color);
    align-items: center;
}

.problem-visual-left {
    flex: 0.9;
    max-width: 480px;
}

.problem-visual-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.problem-content-right {
    flex: 1.3;
    color: white;
}

.problem-content-right h3 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 28px;
}

.problem-content-right p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.insight-reveal {
    padding: 140px 5%;
    background: var(--bg-light);
}

.insight-block-centered {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.insight-block-centered h2 {
    font-size: 44px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.insight-lead {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-grid-asymmetric {
    padding: 120px 5%;
    background: var(--bg-white);
}

.section-header-offset {
    max-width: 680px;
    margin-bottom: 80px;
    padding-left: 40px;
}

.section-header-offset h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.service-cards-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(66% - 16px);
    min-width: 400px;
}

.card-medium {
    flex: 1 1 calc(50% - 16px);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(33% - 16px);
    min-width: 320px;
}

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

.service-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    margin: auto 0 20px 0;
}

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

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

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

.trust-content-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-left {
    flex: 1;
}

.trust-left h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    font-size: 18px;
    color: var(--text-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.trust-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-inline {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    font-size: 19px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-stacked {
    padding: 120px 5%;
    background: var(--bg-white);
}

.benefits-stacked h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 80px;
    text-align: center;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.benefit-item {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.benefit-medium {
    flex: 1 1 calc(45% - 14px);
    min-width: 320px;
}

.benefit-small {
    flex: 1 1 calc(30% - 14px);
    min-width: 280px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.social-proof-offset {
    padding: 100px 5%;
    background: var(--bg-light);
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial-card cite {
    display: block;
    margin-top: 24px;
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.form-section-asymmetric {
    padding: 120px 5%;
    background: var(--primary-color);
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-block {
    flex: 0.8;
    color: white;
    padding-top: 20px;
}

.form-intro-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-intro-block p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.form-container-offset {
    flex: 1.2;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    top: -30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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: 16px 36px;
    background: var(--primary-color);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

.final-cta-sticky {
    position: sticky;
    bottom: 0;
    background: var(--accent-color);
    padding: 32px 5%;
    z-index: 100;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.cta-bright {
    padding: 16px 36px;
    background: white;
    color: var(--accent-color);
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-bright:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 80px 5% 32px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-brand {
    flex: 1.5;
}

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

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

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

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

.footer-col ul li a {
    color: white;
    opacity: 0.8;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px 5%;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero-offset {
    padding: 160px 5% 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    margin-bottom: 40px;
}

.page-hero-offset h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 21px;
    color: var(--text-light);
    max-width: 720px;
    line-height: 1.6;
}

.about-story-split {
    padding: 100px 5%;
    display: flex;
    gap: 100px;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

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

.story-visual {
    flex: 1;
}

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

.values-asymmetric {
    padding: 100px 5%;
    background: var(--bg-light);
}

.values-asymmetric h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: center;
}

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

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

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

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

.team-showcase {
    padding: 100px 5%;
    background: var(--bg-white);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

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

.team-intro p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
}

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

.stat-highlight {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    min-width: 240px;
}

.stat-big {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.certifications-block {
    padding: 100px 5%;
    background: var(--bg-light);
}

.certifications-block h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: center;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.cert-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: white;
    padding: 36px;
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
}

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

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

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

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

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

.services-detailed {
    padding: 60px 5% 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 16px;
}

.service-reverse {
    flex-direction: row-reverse;
    background: white;
    box-shadow: var(--shadow);
}

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

.service-image-side img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-info-side {
    flex: 1.3;
}

.service-info-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-info-side > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 16px;
    color: var(--text-light);
    padding: 10px 0 10px 28px;
    position: relative;
}

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

.price-highlight {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.cta-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.why-choose-services {
    padding: 100px 5%;
    background: var(--bg-light);
}

.why-choose-services h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: center;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.included-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

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

.cta-services-final p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.contact-info-asymmetric {
    padding: 80px 5%;
    display: flex;
    gap: 100px;
}

.contact-block {
    flex: 1.2;
}

.contact-block h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
}

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

.contact-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.directions-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.directions-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
    text-align: center;
}

.directions-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 12px;
}

.direction-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.office-hours-detail {
    padding: 100px 5%;
    background: var(--bg-white);
}

.office-hours-detail h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
    text-align: center;
}

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

.hours-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.hours-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

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

.faq-contact h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
    text-align: center;
}

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

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

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

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

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

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

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

.thanks-hero {
    min-height: 80vh;
    padding: 160px 5% 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-lead {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 48px;
}

.thanks-info {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 18px;
    color: var(--text-dark);
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    text-align: left;
}

.step-item {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    margin-bottom: 20px;
}

.step-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.thanks-contact-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-contact-info p {
    font-size: 17px;
    color: var(--text-light);
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.thanks-resources {
    padding: 100px 5%;
    background: var(--bg-white);
}

.thanks-resources h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
    text-align: center;
}

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

.resource-card {
    flex: 1;
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    text-align: center;
}

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

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.legal-page {
    padding: 160px 5% 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 48px;
}

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

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .nav-floating {
        top: 16px;
        padding: 14px 24px;
        gap: 32px;
    }

    .nav-links {
        gap: 24px;
    }

    .hero-asymmetric {
        gap: 60px;
        padding: 100px 5% 60px;
    }

    .hero-offset-block h1 {
        font-size: 48px;
    }
}

@media (max-width: 968px) {
    .nav-floating {
        flex-direction: column;
        gap: 16px;
        top: 12px;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual-right {
        top: 0;
        max-width: 100%;
    }

    .intro-stagger {
        flex-direction: column;
        gap: 60px;
    }

    .problem-amplify {
        flex-direction: column;
        gap: 60px;
    }

    .about-story-split {
        flex-direction: column;
        gap: 60px;
    }

    .services-detailed {
        gap: 60px;
    }

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

    .contact-info-asymmetric {
        flex-direction: column;
        gap: 60px;
    }

    .form-section-asymmetric {
        flex-direction: column;
        gap: 60px;
    }

    .trust-content-split {
        flex-direction: column;
        gap: 60px;
    }

    .social-proof-offset {
        flex-direction: column;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
    }

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

    .directions-content {
        flex-direction: column;
    }

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

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

    .team-stats {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero-offset-block h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .page-hero-offset h1 {
        font-size: 36px;
    }

    .service-card {
        min-width: 100%;
    }

    .benefit-item {
        min-width: 100%;
    }

    .value-card {
        min-width: 100%;
    }

    .included-item {
        min-width: 100%;
    }

    .cert-item {
        min-width: 100%;
    }

    .hours-item {
        min-width: 100%;
    }

    .form-container-offset {
        padding: 32px 24px;
    }

    .section-header-offset {
        padding-left: 0;
    }

    .hero-offset-block {
        padding-left: 0;
    }
}
