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

:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --max-width: 1400px;
}

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

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

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

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

.container-wide {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

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

.hero-split {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.split-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.split-right img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.intro-split,
.story-split,
.insight-split,
.benefits-split,
.how-it-works-split,
.mission-split,
.team-split,
.about-split,
.services-intro-split,
.final-cta-split,
.contact-split {
    padding: 100px 20px;
}

.intro-split.reverse .split-content,
.insight-split.reverse .split-content,
.mission-split.reverse .split-content,
.how-it-works-split.reverse .split-content {
    flex-direction: row-reverse;
}

.split-left h2,
.split-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.split-left p,
.split-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.story-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

.trust-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.problem-amplify {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.section-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin: -2rem auto 3rem;
    max-width: 700px;
}

.problem-list {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
}

.problem-card {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.problem-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

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

.btn-accent:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.testimonials-slider {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: white;
}

.testimonials-slider h2 {
    color: white;
}

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

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.pricing-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.btn-select:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

.btn-select.primary:hover {
    background: #d97706;
}

.urgency-section {
    padding: 80px 20px;
}

.urgency-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.urgency-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.urgency-timer {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.timer-number {
    font-size: 3rem;
    font-weight: 800;
    background: rgba(255,255,255,0.2);
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 100px;
}

.timer-label {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-urgency {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

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

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.step-content p {
    color: var(--text-light);
}

.social-proof {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.press-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.press-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.press-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

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

.order-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    color: var(--text-dark);
    line-height: 1.6;
}

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

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.final-cta-split {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-cta-split h2 {
    color: white;
}

.final-cta-split p {
    color: white;
    opacity: 0.95;
}

.btn-final {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

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

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

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

.btn-sticky {
    display: block;
    padding: 16px 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #1d4ed8;
}

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

.btn-secondary:hover {
    border-color: white;
}

.page-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.numbers-section {
    padding: 100px 20px;
}

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

.stat-item {
    flex: 0 1 calc(33.333% - 27px);
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
}

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

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -48px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid var(--bg-light);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.timeline-item p {
    color: var(--text-light);
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-light);
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-about p,
.cta-services p,
.cta-contact p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell.label {
    justify-content: flex-start;
    font-weight: 600;
}

.comparison-cell.highlight {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

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

.service-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-text {
    flex: 1.5;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 12px;
}

.service-lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-text h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
}

.service-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-text ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.service-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.use-case {
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.contact-block {
    margin-bottom: 2.5rem;
}

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

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.map-placeholder {
    margin-top: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.map-placeholder ul {
    list-style: none;
    margin-top: 1rem;
}

.map-placeholder li {
    padding: 8px 0;
    color: var(--text-dark);
}

.contact-reasons {
    padding: 80px 20px;
}

.reasons-grid {
    display: flex;
    gap: 30px;
}

.reason-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.reason-card p {
    color: var(--text-light);
}

.social-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    padding: 15px 40px;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-contact {
    padding: 80px 20px;
}

.thanks-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    font-weight: bold;
}

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

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

.thanks-details {
    padding: 80px 20px;
}

.thanks-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.thanks-step {
    display: flex;
    gap: 30px;
}

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

.thanks-step .step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.thanks-step .step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-tips {
    padding: 80px 20px;
    background: var(--bg-light);
}

.tips-grid {
    display: flex;
    gap: 30px;
}

.tip-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-support {
    padding: 80px 20px;
}

.support-box {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.support-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.support-box p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.support-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.thanks-cta {
    padding: 80px 20px;
    text-align: center;
}

.thanks-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.legal-page {
    padding: 60px 20px;
}

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

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--secondary-color);
}

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

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 2rem 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.legal-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.legal-table td {
    color: var(--text-light);
}

.story-moment {
    padding: 80px 20px;
    background: var(--bg-light);
}

.moment-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.moment-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.moment-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.moment-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .split-content {
        flex-direction: column;
        gap: 40px;
    }

    .intro-split.reverse .split-content,
    .insight-split.reverse .split-content,
    .mission-split.reverse .split-content,
    .how-it-works-split.reverse .split-content,
    .service-split.reverse {
        flex-direction: column;
    }

    .trust-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .trust-item {
        flex: 0 1 calc(50% - 15px);
    }

    .problem-list,
    .testimonial-grid,
    .values-grid,
    .reasons-grid,
    .tips-grid {
        flex-direction: column;
    }

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

    .footer-col {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .split-left h1 {
        font-size: 2.5rem;
    }

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

    .split-left h2,
    .split-right h2 {
        font-size: 2rem;
    }

    .section-center {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .trust-item {
        flex: 0 1 100%;
    }

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

    .pricing-card {
        flex: 0 1 100%;
    }

    .urgency-timer {
        gap: 15px;
    }

    .timer-number {
        font-size: 2rem;
        padding: 15px 20px;
        min-width: 80px;
    }

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

    .stat-item {
        flex: 0 1 100%;
    }

    .comparison-cell {
        font-size: 0.9rem;
        padding: 15px 10px;
    }

    .service-split {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;
    }

    .thanks-buttons {
        flex-direction: column;
    }

    .footer-col {
        flex: 0 1 100%;
    }

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

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

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

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

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}
