/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Container and Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-minimal {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a73e8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 15px 30px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(26,115,232,0.3);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(26,115,232,0.4);
}

/* Hero Section */
.hero-overlay {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    background: #ffffff;
    color: #667eea;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ffffff" opacity="0.1" width="400" height="400"/><circle cx="200" cy="200" r="150" fill="%23ffffff" opacity="0.05"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

/* Story Intro */
.story-intro {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Problem Amplification */
.problem-amplification {
    padding: 100px 20px;
    background: #ffffff;
}

.problem-amplification h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    max-width: 500px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.problem-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Curiosity Hook */
.curiosity-hook {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.curiosity-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.curiosity-hook p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Scenario Storytelling */
.scenario-storytelling {
    padding: 100px 20px;
    background: #ffffff;
}

.story-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.story-content {
    flex: 1 1 500px;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 30px 0;
    padding: 20px;
    background: #e8f4fd;
    border-radius: 8px;
}

.story-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(102,126,234,0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

/* Insight Reveal */
.insight-reveal {
    padding: 100px 20px;
    background: #f8f9fa;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #5a6c7d;
}

.insight-block {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a73e8;
    min-width: 80px;
}

.insight-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

/* Trust Builder */
.trust-builder {
    padding: 100px 20px;
    background: #ffffff;
}

.trust-builder h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #1a73e8;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #5a6c7d;
}

/* Benefits Stacked */
.benefits-stacked {
    padding: 100px 20px;
    background: #f8f9fa;
}

.benefits-stacked h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #5a6c7d;
}

.benefit-item {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 4px solid #1a73e8;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

/* CTA Block Emphasis */
.cta-block-emphasis {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: #ffffff;
    color: #667eea;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Comparison Reality */
.comparison-reality {
    padding: 100px 20px;
    background: #ffffff;
}

.comparison-reality h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.comparison-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.path-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    border-radius: 12px;
}

.path-without {
    background: #fff5f5;
    border: 2px solid #ff6b6b;
}

.path-with {
    background: #f0fdf4;
    border: 2px solid #10b981;
}

.path-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.path-card ul {
    list-style: none;
}

.path-card li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.path-without li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.path-with li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Urgency Subtle */
.urgency-subtle {
    padding: 80px 20px;
    background: #fff9e6;
}

.urgency-subtle h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.urgency-subtle p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.urgency-calc {
    padding: 25px;
    background: #ffffff;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
}

/* Services Reveal */
.services-reveal {
    padding: 100px 20px;
    background: #f8f9fa;
}

.services-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #1a73e8;
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #1a73e8;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-tagline {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #5a6c7d;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-pricing {
    text-align: center;
    margin-bottom: 25px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
}

.price-note {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 5px;
}

.btn-select-service,
.service-card a.btn-select-service {
    display: block;
    padding: 15px 30px;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-select-service:hover,
.service-card a.btn-select-service:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #5a6c7d;
    font-size: 1.1rem;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group a {
    color: #1a73e8;
    text-decoration: underline;
}

.btn-submit {
    padding: 18px 40px;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #5a6c7d;
}

/* Final Push */
.final-push {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #3c4e62 100%);
    color: #ffffff;
}

.final-push h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.final-push p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.final-question {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
}

/* Guarantee Trust */
.guarantee-trust {
    padding: 80px 20px;
    background: #f8f9fa;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border: 3px solid #10b981;
}

.guarantee-box h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.guarantee-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #b0bec5;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #b0bec5;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3c4e62;
    color: #b0bec5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
}

.cookie-content a {
    color: #1a73e8;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #10b981;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background: #f59e0b;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #d97706;
}

/* Page Hero */
.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page */
.about-story,
.approach-section {
    padding: 80px 20px;
}

.about-story h2,
.approach-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-story p,
.approach-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.mission-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.mission-box h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mission-text {
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 500;
}

.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 500px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto;
}

.team-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.results-numbers {
    padding: 100px 20px;
    background: #ffffff;
}

.results-numbers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #5a6c7d;
}

/* Services Page */
.services-detailed {
    padding: 80px 20px;
    background: #f8f9fa;
}

.comparison-section {
    padding: 80px 20px;
    background: #ffffff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info,
.contact-additional {
    flex: 1 1 400px;
}

.contact-info h2,
.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.info-block a {
    color: #1a73e8;
}

.info-note {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

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

.checkmark-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    background: #ffffff;
    color: #10b981;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    font-weight: bold;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-info {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-info h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a73e8;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4fd;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-service-info {
    padding: 60px 20px;
    background: #f8f9fa;
}

.service-selected-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-selected-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-selected-box p {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
}

.thanks-tips {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-tips h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.tip-item {
    margin-bottom: 30px;
    padding-left: 25px;
    border-left: 4px solid #1a73e8;
}

.tip-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tip-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-support {
    padding: 60px 20px;
    background: #f8f9fa;
}

.support-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
}

.support-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.support-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.support-box a {
    color: #1a73e8;
    font-weight: 600;
}

.thanks-social {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-social h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-social p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-content a {
    color: #1a73e8;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.cta-box-centered h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-box-centered p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e8f4fd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

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

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

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

    .story-split,
    .comparison-split,
    .contact-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .insight-block {
        flex-direction: column;
        gap: 20px;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .stats-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .checkmark-icon {
        width: 80px;
        height: 80px;
        font-size: 4rem;
    }
}