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

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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: #64748b;
    color: white;
}

.btn-reject:hover {
    background: #475569;
}

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

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero-overlay {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    padding: 2rem;
    color: white;
    z-index: 1;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Content Containers */
.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Story Flow Section */
.story-flow {
    padding: 5rem 0;
    background: #f8fafc;
}

.story-flow .opener {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #1e293b;
}

.story-flow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

/* Problem Amplification */
.problem-amplify {
    padding: 5rem 0;
    background: white;
}

.problem-amplify h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.problem-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-marker {
    font-size: 2rem;
    color: #ef4444;
    flex-shrink: 0;
    font-weight: 700;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.problem-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Inline CTA */
.inline-cta-block {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
    color: white;
}

.inline-cta-block p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #10b981;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.inline-cta-block.alternate {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #475569;
}

.split-text strong {
    color: #1e293b;
    font-weight: 600;
}

.split-image {
    flex: 1;
    min-height: 400px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 12px;
}

.insight-img {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.about-img {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

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

/* Trust Builder */
.trust-builder {
    padding: 5rem 0;
    background: #f1f5f9;
}

.trust-builder h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.case-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.case-visual {
    height: 200px;
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.case-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.result-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dcfce7;
    color: #166534;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Method Breakdown */
.method-breakdown {
    padding: 5rem 0;
    background: white;
}

.method-breakdown h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.pillars-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e7ff;
}

.pillar h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pillar p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Transformation Visual */
.transformation-visual {
    padding: 5rem 0;
    background: #f8fafc;
}

.before-after-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.before-block,
.after-block {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.before-block h3,
.after-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.before-block h3 {
    color: #ef4444;
}

.after-block h3 {
    color: #10b981;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
}

.comparison-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.comparison-list.positive li::before {
    content: '✓';
    color: #10b981;
}

.arrow-transition {
    font-size: 3rem;
    color: #94a3b8;
    flex-shrink: 0;
}

/* Urgency Signal */
.urgency-signal {
    padding: 5rem 0;
    background: white;
}

.urgency-signal h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.urgency-item {
    padding: 1.5rem;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 6px;
}

.urgency-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #991b1b;
}

.urgency-item p {
    color: #64748b;
    margin: 0;
}

/* Pricing Section */
.pricing-reveal {
    padding: 5rem 0;
    background: #f1f5f9;
}

.pricing-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-intro {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.price-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-desc {
    color: #64748b;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #475569;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.select-service {
    padding: 1rem;
    background: #1e293b;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

.price-card.featured .select-service {
    background: #2563eb;
}

.price-card.featured .select-service:hover {
    background: #1d4ed8;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: #334155;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-submit {
    padding: 1.25rem;
    background: #10b981;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Final Trust */
.final-trust {
    padding: 5rem 0;
    background: #f8fafc;
}

.final-trust h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.final-trust p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

/* Footer */
.site-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #94a3b8;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: white;
}

.story-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #475569;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

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

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.team-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #475569;
}

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

.achievement-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1.1rem;
}

.achievement-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background: #f1f5f9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #1e293b;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: #10b981;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
    background: white;
}

.service-detailed {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    position: relative;
}

.service-detailed.featured-service {
    border: 3px solid #2563eb;
}

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

.service-header h2 {
    font-size: 2rem;
    color: #1e293b;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.ideal-for {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #475569;
    font-size: 1.05rem;
}

.btn-service {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: #1e293b;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.btn-service.primary {
    background: #2563eb;
}

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.comparison-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.comparison-section p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 2rem;
}

.contact-card {
    flex: 1;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-card p {
    color: #475569;
    line-height: 1.7;
}

.contact-card a {
    color: #2563eb;
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 0;
    background: #f1f5f9;
}

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.contact-cta p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Thanks Section */
.thanks-section {
    padding: 8rem 0;
    background: white;
    min-height: 70vh;
}

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

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.thanks-info {
    margin-bottom: 3rem;
}

.selected-service-info {
    background: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    color: #1e40af;
    font-size: 1.1rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Legal Page */
.legal-page {
    padding: 4rem 0;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.legal-page p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #475569;
}

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

.legal-page ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #475569;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        top: 10px;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

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

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

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

    .split-layout.reverse {
        flex-direction: column;
    }

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

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

    .price-card.featured {
        transform: scale(1);
    }

    .before-after-layout {
        flex-direction: column;
    }

    .arrow-transition {
        transform: rotate(90deg);
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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