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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-light: #ff6b6b;
    --text-dark: #0f0f0f;
    --text-light: #f5f5f5;
    --text-gray: #6b7280;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem 1rem;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

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

.hero-content-narrow {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.btn-hero-transparent {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-transparent:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.story-section {
    padding: 7rem 2rem;
    background: var(--bg-white);
}

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

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.inline-image-story {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.inline-image-story img {
    width: 100%;
    display: block;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 1.5rem 0;
}

.testimonial-inline {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.problem-amplification {
    padding: 6rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.two-col-asymmetric {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.col-text-large {
    flex: 1.3;
}

.col-image {
    flex: 1;
}

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

.two-col-asymmetric h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.two-col-asymmetric p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.text-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-light);
    margin: 1.5rem 0;
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.insight-reveal {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.centered {
    text-align: center;
}

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

.insight-reveal h2 {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.insight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-color);
}

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

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.revelation-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--accent-color);
    margin: 3rem 0 2rem;
}

.btn-inline-arrow {
    display: inline-block;
    margin: 2rem auto;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-inline-arrow:hover {
    background: var(--accent-light);
    transform: translateX(5px);
}

.methodology-deep {
    padding: 7rem 2rem;
    background: var(--bg-white);
}

.section-title-large {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
}

.method-block {
    flex: 1 1 calc(50% - 1.25rem);
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 10px;
    position: relative;
}

.method-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.method-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

.method-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.testimonials-scattered {
    padding: 7rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonials-scattered h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.testimonial-large {
    margin: 3rem 0;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.8;
}

.testimonial-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}

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

.benefits-visual {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.section-title-centered {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-major {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-major:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-major h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-major p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

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

.urgency-box {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 3.5rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2rem 0;
}

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

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

.section-intro-centered {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 750px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-light);
}

.service-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

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

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.main-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

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

.final-cta {
    padding: 6rem 2rem;
    background: var(--secondary-color);
    color: var(--text-light);
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
}

.final-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-light);
    margin: 2rem 0 3rem;
    text-align: center;
}

.btn-final-large {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.3rem 3rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-final-large:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

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

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

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

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.page-hero {
    padding: 9rem 2rem 5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.mission-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-block {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

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

.approach-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.stats-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-light);
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

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

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

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

.services-overview {
    padding: 6rem 2rem 4rem;
    background: var(--bg-white);
}

.comparison-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.guide-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.guide-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.guide-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.contact-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.map-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.map-placeholder {
    background: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 1rem;
    color: var(--text-gray);
}

.quick-contact {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-details {
    margin: 3rem 0;
}

.selected-service-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

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

.service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price-confirm {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-next-steps {
    margin: 4rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.thanks-additional {
    margin: 3rem 0;
    text-align: left;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

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

.thanks-additional > p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.prep-list {
    list-style: none;
    margin-top: 1.5rem;
}

.prep-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.prep-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-support {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-support p {
    font-size: 1rem;
    color: var(--text-gray);
}

.thanks-support a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-support a:hover {
    text-decoration: underline;
}

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

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

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

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

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

@media (max-width: 1024px) {
    .methodology-grid {
        gap: 2rem;
    }

    .method-block {
        flex: 1 1 100%;
    }

    .benefits-asymmetric {
        gap: 1.5rem;
    }

    .benefit-major {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

    .two-col-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title-large {
        font-size: 2.2rem;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefit-major {
        flex: 1 1 100%;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .page-hero h1 {
        font-size: 2.2rem;
    }
}