* {
    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;
    --success-color: #10b981;
    --accent-color: #8b5cf6;
}

html {
    scroll-behavior: smooth;
}

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

.ad-notice {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fbbf24;
}

.nav-floating {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-floating.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 16px 32px;
    top: 42px;
    left: 20px;
    right: 20px;
}

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

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

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 92vh;
    min-height: 600px;
    margin-top: -32px;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    right: 60px;
    color: var(--bg-white);
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.story-intro {
    padding: 120px 20px;
    background-color: var(--bg-white);
}

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

.intro-large {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.story-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

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

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin-top: 32px;
}

.problem-list li {
    font-size: 16px;
    color: var(--text-medium);
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.problem-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
}

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

.insight-reveal h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    text-align: center;
}

.insight-card {
    margin-top: 60px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-color);
}

.insight-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-caption {
    padding: 40px;
    background-color: var(--bg-white);
}

.insight-caption p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
}

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

.trust-build h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.trust-build > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
}

.citation:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.testimonials-inline {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.benefits-visual {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.benefits-visual h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

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

.benefit-item {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 24px 12px 24px;
    color: var(--text-dark);
}

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

.services-reveal {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.services-reveal h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.services-intro {
    font-size: 18px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-option {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.service-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}

.service-option.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, var(--bg-white) 100%);
}

.service-option.selected {
    border-color: var(--success-color);
    background-color: #f0fdf4;
}

.service-badge {
    position: absolute;
    top: -16px;
    left: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.service-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

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

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

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

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

.btn-select:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.form-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.form-section > div > p {
    font-size: 17px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
    margin-top: 32px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input[readonly] {
    background-color: #f3f4f6;
    color: var(--text-medium);
    cursor: not-allowed;
}

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

.form-consent label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-medium);
    cursor: pointer;
}

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

.form-consent a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-consent a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: var(--success-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

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

.final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.final-cta p {
    font-size: 20px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.btn-cta-alt {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-alt:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.final-cta .btn-cta-alt {
    margin: 0 auto;
    display: table;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding-top: 40px;
    border-top: 1px solid #374151;
}

.footer-references h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-references ol {
    padding-left: 24px;
}

.footer-references ol li {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-references a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding-top: 40px;
    border-top: 1px solid #374151;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.cookie-banner.show {
    transform: translateY(0);
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-cookie-accept {
    background-color: var(--success-color);
    color: var(--bg-white);
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--text-medium);
    border: 2px solid var(--border-color);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.cookie-link {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, var(--bg-white) 100%);
}

.page-header h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.lead {
    font-size: 24px;
    color: var(--text-medium);
    font-weight: 300;
}

.about-story {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.about-story img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 48px;
}

.about-story h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.about-story p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

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

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

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

.approach-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.values-visual {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.expertise-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1px;
    text-align: center;
}

.expertise-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.expertise-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    text-align: center;
}

.cta-about {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.cta-about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.cta-about p {
    font-size: 18px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.cta-about .btn-primary {
    margin: 0 auto;
    display: table;
}

.services-list {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 16px;
}

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

.service-visual {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.service-info {
    flex: 1;
    position: relative;
}

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

.service-price-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

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

.service-checklist {
    list-style: none;
    margin-bottom: 32px;
}

.service-checklist li {
    font-size: 16px;
    color: var(--text-medium);
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
}

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

.service-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.services-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, var(--bg-white) 100%);
}

.services-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.services-cta p {
    font-size: 20px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.services-cta .btn-primary {
    margin: 0 auto;
    display: table;
}

.contact-info-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

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

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

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

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

.contact-visual {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--bg-white);
}

.contact-overlay-info p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

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

.contact-process h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.process-steps {
    display: flex;
    gap: 32px;
}

.process-step {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    position: relative;
}

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

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.contact-cta {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.contact-cta p {
    font-size: 18px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-cta .btn-primary {
    margin: 0 auto;
    display: table;
}

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

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 32px auto;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.thanks-lead {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 48px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.thanks-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.thanks-list {
    list-style: none;
    margin-top: 24px;
}

.thanks-list li {
    font-size: 17px;
    color: var(--text-medium);
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
}

.thanks-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.thanks-service-info {
    background-color: #eff6ff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
    display: none;
}

.thanks-service-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.thanks-service-info p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 48px;
}

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

.next-steps-grid {
    display: flex;
    gap: 32px;
}

.next-step-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.next-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.next-step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.thanks-contact-reminder p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.thanks-email {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-page {
    padding: 160px 20px 100px 20px;
    background-color: var(--bg-white);
}

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

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

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

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 56px;
    }

    .split-content,
    .split-content-reverse,
    .benefits-grid,
    .approach-grid,
    .testimonials-inline,
    .process-steps,
    .next-steps-grid,
    .contact-layout {
        flex-direction: column;
    }

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

    .footer-content {
        flex-wrap: wrap;
    }

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

    .expertise-stats {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 40px;
    }

    .hero-overlay h1 {
        font-size: 40px;
    }

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

    .page-header h1 {
        font-size: 42px;
    }

    .intro-large {
        font-size: 22px;
    }

    .split-text h2,
    .about-story h2,
    .trust-build h2,
    .contact-details h2,
    .contact-process h2,
    .contact-cta h2,
    .cta-about h2 {
        font-size: 32px;
    }

    .insight-reveal h2,
    .benefits-visual h2,
    .services-reveal h2,
    .final-cta h2,
    .approach-section h2,
    .services-cta h2,
    .expertise-section h2 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

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

    .service-header h3 {
        font-size: 24px;
    }

    .service-price {
        font-size: 28px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}