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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
    overflow-x: hidden;
}

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

a:hover {
    color: #3498db;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

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

.hero-offset-left {
    width: 55%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtext {
    font-size: 24px;
    color: #555;
    font-weight: 300;
    max-width: 500px;
}

.hero-visual-right {
    width: 45%;
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 0 0 20px;
}

/* Story Overlap Section */
.story-overlap {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
}

.story-card-left {
    flex: 1;
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateX(-40px);
}

.story-card-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-card-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.story-visual-right {
    flex: 0.8;
}

.visual-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    transform: translateY(-30px);
}

/* Insight Zigzag */
.insight-zigzag {
    display: flex;
    padding: 120px 40px;
    gap: 80px;
    align-items: center;
}

.insight-number-left {
    flex: 0.6;
    text-align: right;
}

.big-stat {
    font-size: 140px;
    font-weight: 900;
    color: #3498db;
    line-height: 1;
    display: block;
}

.stat-caption {
    font-size: 20px;
    color: #666;
    margin-top: 15px;
}

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

.insight-text-right h3 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-text-right p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

/* Revelation Block */
.revelation-block {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
}

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

.revelation-content h2 {
    font-size: 56px;
    margin-bottom: 25px;
}

.revelation-lead {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.95;
}

.revelation-benefits {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    text-align: center;
    max-width: 200px;
}

.benefit-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 16px;
}

/* Trust Asymmetric */
.trust-asymmetric {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.trust-testimonial-offset {
    flex: 1;
    transform: translateX(60px);
}

.trust-testimonial-offset blockquote {
    padding: 40px;
    background: #fff;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-testimonial-offset p {
    font-size: 24px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.5;
}

.trust-testimonial-offset cite {
    font-style: normal;
    color: #666;
    font-size: 16px;
}

.trust-visual {
    flex: 0.7;
}

.visual-element {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 12px;
}

/* Problem Amplify */
.problem-amplify {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    background: #1a1a1a;
    color: #fff;
}

.amplify-split-left {
    flex: 1.2;
}

.amplify-split-left h3 {
    font-size: 44px;
    margin-bottom: 30px;
}

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

.cost-list li {
    font-size: 19px;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.cost-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 28px;
    font-weight: 700;
}

.amplify-box-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c3e50;
    padding: 50px;
    border-radius: 12px;
}

.amplify-question {
    font-size: 28px;
    line-height: 1.4;
    color: #3498db;
    font-weight: 600;
}

/* Solution Reveal */
.solution-reveal {
    padding: 120px 40px;
    background: #f8f9fa;
}

.solution-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.solution-header-center h2 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.solution-intro {
    font-size: 20px;
    color: #555;
}

.solution-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.solution-card {
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 60px;
}

.card-offset-3 {
    margin-left: 120px;
}

.solution-card h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.solution-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.cta-card {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-card:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* More Solutions */
.more-solutions {
    padding: 60px 40px 120px;
    background: #f8f9fa;
}

.more-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.solution-card-small {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.solution-card-small h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.solution-card-small p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Social Proof Scattered */
.social-proof-scattered {
    padding: 100px 40px;
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.proof-item {
    position: absolute;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.proof-pos-1 {
    top: 50px;
    left: 10%;
}

.proof-pos-2 {
    top: 150px;
    right: 15%;
}

.proof-pos-3 {
    bottom: 50px;
    left: 35%;
}

.proof-item blockquote {
    margin: 0;
}

.proof-item p {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 10px;
}

.proof-item cite {
    font-style: normal;
    font-size: 14px;
    color: #666;
}

/* Urgency Block */
.urgency-block {
    padding: 80px 40px;
    background: #fff;
}

.urgency-content-offset {
    max-width: 700px;
    margin-left: 15%;
}

.urgency-content-offset h3 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #e74c3c;
}

.urgency-content-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 30px;
}

/* Form Section Diagonal */
.form-section-diagonal {
    padding: 120px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
}

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

.form-container h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2c3e50;
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* Final Push */
.final-push {
    padding: 100px 40px;
    background: #fff;
    text-align: center;
}

.final-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-question {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #3498db;
    color: #fff;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: #2980b9;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

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

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

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

.footer-col p {
    color: #999;
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: #999;
    font-size: 14px;
}

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

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

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

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

.sticky-cta.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* About Page */
.about-hero {
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-story {
    padding: 100px 40px;
}

.story-content-offset {
    max-width: 800px;
    margin-left: 20%;
}

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

.story-content-offset p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-mission {
    padding: 80px 40px;
    background: #f8f9fa;
}

.mission-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mission-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.about-values {
    padding: 100px 40px;
    text-align: center;
}

.about-values h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-approach {
    padding: 100px 40px;
    background: #2c3e50;
    color: #fff;
}

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

.approach-content h2 {
    font-size: 44px;
    margin-bottom: 25px;
}

.approach-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.cta-content h3 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Services Page */
.services-hero {
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 80px 40px;
}

.service-item-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 100px;
}

.service-item-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.service-price {
    margin-bottom: 25px;
}

.price-from {
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 5px;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.btn-service {
    padding: 14px 30px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-visual {
    flex: 0.8;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.services-cta {
    padding: 100px 40px;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Contact Page */
.contact-hero {
    padding: 150px 40px 60px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-intro {
    font-size: 20px;
    color: #555;
}

.contact-content {
    display: flex;
    gap: 80px;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.info-item a {
    color: #3498db;
}

.contact-form-wrapper {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-form-wrapper p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-hero {
    padding: 150px 40px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 24px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details strong {
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 35px;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 35px;
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #fff;
}

.thanks-next-steps {
    padding: 80px 40px;
}

.thanks-next-steps h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #3498db;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 150px 40px 80px;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-offset-left {
        width: 100%;
        padding-right: 0;
    }

    .hero-text-block h1 {
        font-size: 52px;
    }

    .hero-visual-right {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

    .hero-image-placeholder {
        border-radius: 12px;
    }

    .story-overlap,
    .insight-zigzag,
    .trust-asymmetric,
    .problem-amplify,
    .service-item-asymmetric,
    .contact-content {
        flex-direction: column;
    }

    .story-card-left {
        transform: translateX(0);
    }

    .trust-testimonial-offset {
        transform: translateX(0);
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        margin-left: 0;
    }

    .social-proof-scattered {
        padding: 400px 40px 60px;
    }

    .proof-item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 20px;
    }

    .proof-pos-1,
    .proof-pos-2,
    .proof-pos-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: calc(100% - 40px);
        padding: 15px 20px;
        top: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-text-block h1 {
        font-size: 42px;
    }

    .hero-subtext {
        font-size: 20px;
    }

    .story-card-left h2,
    .insight-text-right h3 {
        font-size: 32px;
    }

    .revelation-content h2,
    .solution-header-center h2 {
        font-size: 38px;
    }

    .big-stat {
        font-size: 80px;
    }

    .values-grid,
    .more-cards,
    .next-steps-grid {
        flex-direction: column;
    }

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

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .social-proof-scattered {
        padding: 60px 40px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .revelation-content h2,
    .solution-header-center h2 {
        font-size: 32px;
    }

    .story-card-left,
    .solution-card,
    .contact-form {
        padding: 30px;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 38px;
    }
}