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

:root {
    --primary: #1a4d2e;
    --primary-dark: #0f2919;
    --accent: #f58b54;
    --accent-hover: #d97643;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-heavy: rgba(0, 0, 0, 0.18);
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px var(--shadow-heavy);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--accent-hover);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand a {
    color: var(--primary);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.5rem;
}

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

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-menu a {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-medium);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-heavy);
}

.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245, 139, 84, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 139, 84, 0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem 1.5rem;
}

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

.hero-content-center h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

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

.story-lead {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.story-intro p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
    font-style: italic;
}

.problem-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.split-text p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    color: var(--text-medium);
}

.split-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 2rem;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.turning-point {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.turning-point h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.benefit-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.0625rem;
}

.benefit-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.emphasis {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    margin-top: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
    border-radius: 4px;
}

.method-reveal {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

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

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

.method-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.method-card:hover {
    box-shadow: 0 8px 25px var(--shadow-medium);
    transform: translateY(-4px);
}

.method-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

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

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

.social-proof {
    padding: 5rem 1.5rem;
    background: var(--primary);
    color: white;
}

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

.centered-heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9375rem;
    opacity: 0.85;
}

.insight-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.insight-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.insight-highlight {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.deep-dive {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-main h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.content-sidebar {
    position: relative;
}

.sticky-note {
    background: var(--accent);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.sticky-note h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.objection-handle {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.objection-handle h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.services-reveal {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

.section-heading-large {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-medium);
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-block {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 8px 30px var(--shadow-medium);
    transform: translateY(-4px);
}

.service-block.featured {
    border: 3px solid var(--accent);
}

.service-header {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-badge.popular {
    background: var(--accent);
}

.service-body {
    padding: 2rem;
}

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

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

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

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 1.5rem;
    text-align: center;
}

.urgency-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.urgency-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.urgency-calc {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.calc-label {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.calc-result {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.calc-item strong {
    display: block;
    font-size: 1.875rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

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

.urgency-close {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
}

.form-section {
    padding: 5rem 1.5rem;
    background: var(--primary);
    color: white;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.0625rem;
    opacity: 0.9;
}

.consultation-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    color: var(--text-dark);
}

.form-step {
    display: block;
}

.form-step.hidden {
    display: none;
}

.form-step h3 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .service-option-label {
    background: rgba(26, 77, 46, 0.05);
    border-color: var(--primary);
}

.service-option-label strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.service-option-label small {
    color: var(--accent);
    font-weight: 600;
}

.btn-next,
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.final-cta {
    padding: 5rem 1.5rem;
    background: var(--bg-light);
}

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

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

.final-cta p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.cta-final-large {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.cta-final-large:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-heavy);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.page-hero {
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.about-story {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.about-story h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.mission-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.content-block p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.values-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.team-philosophy {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.team-philosophy h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.process-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.process-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-section {
    padding: 5rem 1.5rem;
    background: var(--bg-white);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

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

.services-intro {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.services-detailed {
    padding: 3rem 1.5rem;
}

.service-detailed {
    background: white;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.service-detailed.featured-service {
    border: 3px solid var(--accent);
}

.service-header-full {
    background: var(--primary);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-title-section h2 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
}

.service-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.service-price-large {
    font-size: 2.25rem;
    font-weight: 800;
}

.service-content-detailed {
    padding: 2.5rem;
}

.service-description h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary);
}

.service-description h3:first-child {
    margin-top: 0;
}

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

.detailed-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.detailed-list li {
    padding: 0.875rem 0 0.875rem 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.detailed-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-action {
    margin-top: 2rem;
    text-align: center;
}

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

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

.guarantee-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.guarantee-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-info-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

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

.contact-note {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-additional {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.contact-additional h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

.contact-map-placeholder {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.map-container {
    height: 350px;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.1), rgba(26, 77, 46, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    background: rgba(26, 77, 46, 0.9);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.faq-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.thanks-hero {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.success-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    stroke: white;
}

.thanks-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

.thanks-content {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.thanks-content h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.timeline-thanks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
}

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.thanks-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.thanks-note h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.thanks-selected-service {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.thanks-selected-service h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.selected-service-display {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.thanks-resources {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

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

.resource-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.resource-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--accent);
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--accent-hover);
}

.thanks-final {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.thanks-final h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.thanks-final p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page {
    padding: 2rem 1.5rem 4rem;
    background: var(--bg-white);
}

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

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

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

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem 0;
    color: var(--text-dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary);
}

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

.legal-content ul {
    margin: 1.25rem 0 1.25rem 2rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.625rem;
}

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

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

.legal-content strong {
    color: var(--text-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.btn-link {
    background: transparent;
    color: var(--primary);
    text-decoration: underline;
    padding: 0;
    font-size: inherit;
}

.btn-link:hover {
    color: var(--accent);
}

.legal-acceptance {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.legal-acceptance p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .hero-content-center h1 {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1.25rem;
    }

    .split-layout {
        flex-direction: row;
    }

    .split-text,
    .split-visual {
        flex: 1;
    }

    .split-visual {
        flex-direction: row;
    }

    .method-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .method-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonial-flow {
        flex-direction: row;
    }

    .testimonial-item {
        flex: 1;
    }

    .container-asymmetric {
        flex-direction: row;
    }

    .content-main {
        flex: 2;
    }

    .content-sidebar {
        flex: 1;
    }

    .faq-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .calc-result {
        flex-direction: row;
    }

    .split-content {
        flex-direction: row;
    }

    .content-block {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .resource-grid {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 2;
    }

    .footer-links {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content-center h1 {
        font-size: 3.5rem;
    }

    .section-title-center,
    .section-heading-large {
        font-size: 2.5rem;
    }

    .method-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}
