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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
    --accent-purple: #8b5cf6;
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

/* Navigation - Floating */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 90%;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-menu li a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 650px;
    margin-left: 80px;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta-floating {
    margin-top: 20px;
    margin-left: 200px;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 600px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -40px 40px 80px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn-primary-offset {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary-large {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border: 2px solid var(--text-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* Insight Diagonal */
.insight-diagonal {
    padding: 100px 20px;
    background: var(--bg-light);
    position: relative;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.stat-block-left {
    flex: 0 0 280px;
    text-align: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: rotate(-3deg);
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-block-left p {
    font-size: 15px;
    color: var(--text-medium);
}

.text-block-right {
    flex: 1;
}

.text-block-right h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.text-block-right p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Problem Stacked */
.problem-stacked {
    padding: 120px 20px;
}

.problem-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.problem-image-side {
    flex: 0 0 400px;
    position: relative;
    top: -40px;
}

.problem-image-side img {
    border-radius: 16px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-content-side {
    flex: 1;
    padding-top: 60px;
}

.problem-content-side h3 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
}

.challenge-item {
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 4px solid var(--primary-color);
}

.challenge-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.challenge-item p {
    font-size: 16px;
    color: var(--text-medium);
}

.link-inline-arrow {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    display: inline-block;
}

.link-inline-arrow:hover {
    transform: translateX(5px);
}

/* Services Preview */
.services-preview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-header-offset {
    max-width: 800px;
    margin: 0 0 80px 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 18px;
    color: var(--text-medium);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card.card-elevated {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card.offset-top {
    margin-top: 60px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.btn-card {
    display: inline-block;
    padding: 12px 28px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.cta-section-centered {
    text-align: center;
    margin-top: 60px;
}

/* Trust Testimonials */
.trust-testimonials {
    padding: 120px 20px;
    background: var(--text-dark);
    color: var(--bg-white);
}

.testimonials-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    max-width: 700px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-block.block-offset-left {
    margin-left: 0;
    margin-right: auto;
}

.testimonial-block.block-offset-right {
    margin-left: auto;
    margin-right: 100px;
}

.testimonial-block blockquote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-block cite {
    font-style: normal;
}

.testimonial-block cite strong {
    font-size: 16px;
    display: block;
}

.testimonial-block cite span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Now Urgent */
.why-now-urgent {
    padding: 100px 20px;
    background: var(--bg-light);
}

.urgent-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.urgent-text {
    flex: 1;
}

.urgent-text h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 28px;
}

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

.urgency-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.urgency-stat {
    flex: 1;
}

.stat-big {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 10px;
}

.urgency-stat p {
    font-size: 15px;
    color: var(--text-medium);
}

.urgent-image {
    flex: 0 0 450px;
}

.urgent-image img {
    border-radius: 16px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

/* Approach Different */
.approach-different {
    padding: 120px 20px;
}

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

.centered-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.approach-item {
    flex: 0 0 calc(50% - 25px);
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
    position: relative;
}

.approach-item.offset-approach {
    margin-top: 40px;
}

.approach-number {
    font-size: 72px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
}

.approach-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.approach-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Form Section Asymmetric */
.form-section-asymmetric {
    padding: 120px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.form-layout-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-block {
    flex: 0 0 400px;
    padding-top: 40px;
}

.form-intro-block h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.form-intro-block p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-benefits {
    list-style: none;
    margin-top: 30px;
}

.form-benefits li {
    font-size: 16px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.form-container-card {
    flex: 1;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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(--primary-color);
}

.btn-submit-large {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-privacy {
    font-size: 13px;
    color: var(--text-medium);
    text-align: center;
}

.form-privacy a {
    text-decoration: underline;
}

/* Final Push */
.final-push {
    padding: 120px 20px;
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
}

.final-content h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 30px;
}

.final-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    opacity: 0.9;
}

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

.btn-final-primary {
    padding: 18px 44px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-final-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    color: var(--bg-white);
}

.btn-final-secondary {
    padding: 18px 44px;
    background: transparent;
    color: var(--bg-white);
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--bg-white);
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-final-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #111827;
    color: var(--bg-white);
    padding: 80px 20px 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-brand-col {
    flex: 2;
    max-width: 350px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.sticky-btn {
    padding: 16px 32px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #059669;
    transform: scale(1.05);
    color: var(--bg-white);
}

/* Page Header Offset */
.page-header-offset {
    padding: 140px 20px 60px;
    background: var(--bg-light);
}

.header-content-asymmetric {
    max-width: 900px;
    margin: 0 auto 0 100px;
}

.header-content-asymmetric h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.header-lead {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.service-detail-card.card-reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 40px 0;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-orange);
    color: var(--bg-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
}

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

.service-benefits-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
}

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

.service-details-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-item strong {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-block {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.price-large {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.price-note {
    font-size: 15px;
    color: var(--text-medium);
}

.btn-service-enroll {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-service-enroll:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--bg-white);
}

.service-detail-image {
    flex: 0 0 400px;
}

.service-detail-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.comparison-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

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

.comparison-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--text-dark);
    color: var(--bg-white);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.btn-table {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-table:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

/* About Page Styles */
.about-hero-split {
    padding: 140px 20px 80px;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-lead {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.about-hero-image {
    flex: 0 0 500px;
}

.about-hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.mission-content-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.mission-text-block {
    flex: 1;
}

.mission-text-block h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 28px;
}

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

.mission-stats-block {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item-offset {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-big-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.stat-item-offset p {
    font-size: 15px;
    color: var(--text-medium);
}

.values-asymmetric {
    padding: 120px 20px;
}

.section-title-centered {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
}

.values-grid-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.value-card.card-large {
    flex: 0 0 calc(60% - 20px);
}

.value-card.card-medium {
    flex: 0 0 calc(50% - 20px);
}

.value-card.card-small {
    flex: 0 0 calc(40% - 20px);
}

.value-card.offset-value {
    margin-top: 30px;
}

.value-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.section-title-offset {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    margin-left: 60px;
}

.team-intro {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 0 60px 60px;
}

.team-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.team-member {
    flex: 0 0 calc(50% - 25px);
    display: flex;
    gap: 30px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-member.member-offset-1 {
    margin-top: 0;
}

.team-member.member-offset-2 {
    margin-top: 40px;
}

.member-image {
    flex: 0 0 140px;
}

.member-image img {
    border-radius: 12px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.member-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

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

.approach-timeline {
    padding: 120px 20px;
}

.approach-timeline h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
}

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

.timeline-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.timeline-step.step-left {
    justify-content: flex-start;
}

.timeline-step.step-right {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.step-number {
    flex: 0 0 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}

.step-content {
    flex: 0 0 500px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

.results-proof h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.results-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.result-block {
    flex: 0 0 calc(25% - 30px);
    min-width: 200px;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.result-stat {
    font-size: 52px;
    font-weight: 900;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 12px;
}

.result-block p {
    font-size: 15px;
    color: var(--text-medium);
}

.cta-about {
    padding: 100px 20px;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-about-content p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.btn-cta-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

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

.btn-cta-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 20px 60px;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 28px;
}

.contact-lead {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-layout-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 24px;
}

.contact-icon {
    flex: 0 0 60px;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

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

.contact-map-block {
    flex: 0 0 450px;
}

.map-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.location-tips {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
}

.location-tips h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.location-tips ul {
    list-style: none;
}

.location-tips ul li {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.location-tips ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.options-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
}

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

.option-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.option-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.btn-option {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-option:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

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

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

.faq-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
}

.faq-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

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

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

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

.contact-cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.contact-cta-content p {
    font-size: 19px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-contact-large {
    padding: 18px 50px;
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 17px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

/* Thanks Page */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.success-icon {
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thanks-content h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

.selected-service-info {
    margin-top: 30px;
}

.service-selected-box {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-selected-box strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-name-display {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

.next-steps-section {
    padding: 80px 20px;
}

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

.next-steps-container h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

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

.step-card {
    flex: 0 0 calc(25% - 23px);
    min-width: 220px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

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

.resources-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
}

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

.resource-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
}

.resource-item:nth-child(even) {
    margin-left: auto;
}

.resource-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

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

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

.resource-link:hover {
    transform: translateX(5px);
    display: inline-block;
}

.testimonial-thanks {
    padding: 100px 20px;
}

.testimonial-content-centered {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.testimonial-content-centered blockquote {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content-centered cite {
    font-style: normal;
}

.testimonial-content-centered cite strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.testimonial-content-centered cite span {
    font-size: 15px;
    color: var(--text-medium);
}

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

.reminder-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.reminder-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.email-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}

.reminder-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Legal Pages */
.legal-page {
    padding: 140px 20px 80px;
}

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

.legal-container h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 16px;
}

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

.legal-list {
    margin: 20px 0 20px 30px;
}

.legal-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.legal-numbered {
    margin: 20px 0 20px 30px;
    counter-reset: legal-counter;
}

.legal-numbered li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
    counter-increment: legal-counter;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table thead {
    background: var(--text-dark);
    color: var(--bg-white);
}

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

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

.cookies-table tbody tr:hover {
    background: var(--bg-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-large {
        font-size: 56px;
    }

    .hero-image-overlap {
        width: 500px;
        height: 450px;
        right: -50px;
    }

    .diagonal-content,
    .urgent-content-split,
    .problem-container {
        flex-direction: column;
    }

    .stat-block-left {
        transform: none;
        margin: 0 auto;
    }

    .services-grid-asymmetric,
    .approach-blocks {
        gap: 30px;
    }

    .approach-item,
    .value-card {
        flex: 0 0 100%;
    }

    .team-member {
        flex: 0 0 100%;
    }

    .contact-layout-asymmetric,
    .about-hero-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 12px 20px;
        gap: 20px;
        top: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        border-radius: 0 0 20px 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-cta-floating {
        margin-left: 0;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

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

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

    .service-detail-image {
        flex: 1;
    }

    .form-layout-offset {
        flex-direction: column;
    }

    .form-intro-block {
        flex: 1;
    }

    .final-content h2 {
        font-size: 36px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .steps-grid,
    .options-grid,
    .results-grid {
        flex-direction: column;
    }

    .step-card,
    .option-card,
    .result-block {
        flex: 0 0 100%;
    }

    .faq-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 32px;
    }

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

    .services-header-offset {
        margin-left: 0;
    }

    .section-title-centered,
    .section-title-offset {
        font-size: 32px;
        margin-left: 0;
    }

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

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

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