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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    font-size: 16px;
}

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

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

a:hover {
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.97);
    color: #ffffff;
    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;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.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: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #047857;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

/* Hero Immersive */
.hero-immersive {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.92), rgba(6, 78, 59, 0.88)),
                url('https://images.unsplash.com/photo-1511497584788-876760111969?w=1600&h=900&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    margin-top: 68px;
    padding: 60px 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.2), transparent 70%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

/* CTA Buttons */
.cta-hero {
    display: inline-block;
    padding: 16px 42px;
    background: #ffffff;
    color: #047857;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* Story Sections */
.story-intro {
    padding: 100px 20px;
    background: #f9fafb;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #1f2937;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #4b5563;
}

/* Curiosity Block - Split Visual */
.curiosity-block {
    padding: 90px 20px;
    background: #ffffff;
}

.split-visual {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.visual-side {
    flex: 1;
}

.visual-side img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.content-side h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 26px;
    color: #111827;
    font-weight: 800;
}

.content-side p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #4b5563;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 95px 20px;
    background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
}

.contained-flow {
    max-width: 1200px;
    margin: 0 auto;
}

.contained-flow h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: #111827;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.problem-card {
    background: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #dc2626;
    font-weight: 700;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
}

/* Insight Reveal */
.insight-reveal {
    padding: 110px 20px;
    background: #064e3b;
    color: #ffffff;
}

.insight-marker {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.insight-reveal h2 {
    font-size: 44px;
    line-height: 1.25;
    margin-bottom: 30px;
    font-weight: 800;
}

.insight-reveal p {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.methodology-flow {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 50px;
}

.method-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #d1fae5;
    min-width: 70px;
}

.method-step h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #111827;
    font-weight: 700;
}

.method-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 90px 20px;
    background: #f0fdf4;
}

.testimonial-inline blockquote {
    border-left: 5px solid #047857;
    padding-left: 35px;
    font-size: 22px;
    line-height: 1.65;
    font-style: italic;
    color: #1f2937;
}

.testimonial-inline cite {
    display: block;
    margin-top: 22px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #047857;
}

/* Visual Proof */
.visual-proof {
    padding: 85px 20px;
    background: #ffffff;
}

.proof-showcase {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.proof-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.proof-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.proof-item:hover img {
    transform: scale(1.05);
}

.proof-caption {
    padding: 28px;
    background: #ffffff;
}

.proof-caption h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
}

.proof-caption p {
    font-size: 16px;
    color: #10b981;
    font-weight: 600;
}

/* Benefit Cascade */
.benefit-cascade {
    padding: 95px 20px;
    background: #f9fafb;
}

.benefits-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.benefit-major {
    padding: 38px;
    background: #ffffff;
    border-left: 6px solid #10b981;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-major h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #047857;
    font-weight: 700;
}

.benefit-major p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

/* Social Proof Dense */
.social-proof-dense {
    padding: 85px 20px;
    background: #ffffff;
}

.social-proof-dense h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #111827;
    font-weight: 800;
}

.proof-quotes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mini-quote {
    padding: 28px;
    background: #f3f4f6;
    border-radius: 8px;
    border-left: 4px solid #047857;
}

.mini-quote p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #1f2937;
    font-style: italic;
}

.mini-quote span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

/* Urgency Context */
.urgency-context {
    padding: 90px 20px;
    background: linear-gradient(135deg, #7c2d12, #991b1b);
    color: #ffffff;
}

.urgency-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 40px;
    margin-bottom: 28px;
    font-weight: 800;
}

.urgency-content p {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 22px;
    opacity: 0.95;
}

/* Service Reveal */
.service-reveal {
    padding: 100px 20px;
    background: #ffffff;
}

.reveal-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.reveal-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 800;
}

.reveal-intro p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.service-card-enhanced {
    padding: 42px;
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover {
    border-color: #10b981;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #d1fae5;
    color: #047857;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-enhanced h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 800;
}

.service-card-enhanced > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.service-features span {
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.price-reveal {
    font-size: 36px;
    font-weight: 800;
    color: #047857;
    margin-bottom: 24px;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: #047857;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #065f46;
    transform: translateY(-2px);
}

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

.guarantee-trust h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 800;
}

.guarantee-trust p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #374151;
}

/* Form Primary */
.form-primary {
    padding: 100px 20px;
    background: linear-gradient(135deg, #064e3b, #047857);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.application-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    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: #10b981;
}

.btn-submit-primary {
    width: 100%;
    padding: 16px;
    background: #047857;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-primary:hover {
    background: #065f46;
    transform: translateY(-2px);
}

/* Final Reassurance */
.final-reassurance {
    padding: 90px 20px;
    background: #f9fafb;
}

.final-reassurance h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #111827;
    font-weight: 700;
}

.process-simple {
    list-style: none;
    counter-reset: step-counter;
}

.process-simple li {
    counter-increment: step-counter;
    margin-bottom: 22px;
    padding-left: 50px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.process-simple li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 78, 59, 0.97);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.btn-sticky {
    padding: 12px 32px;
    background: #10b981;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #059669;
    transform: translateY(-1px);
    opacity: 1;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 70px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af;
}

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

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

.footer-section a {
    color: #d1d5db;
    font-size: 15px;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
}

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

/* Page Header */
.page-header {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #064e3b, #047857);
    color: #ffffff;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page */
.about-story {
    padding: 90px 20px;
    background: #ffffff;
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #111827;
    font-weight: 800;
}

/* Philosophy Section */
.philosophy-section {
    padding: 90px 20px;
    background: #f9fafb;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 50px;
}

.philosophy-point {
    padding: 32px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.philosophy-point h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #047857;
    font-weight: 700;
}

.philosophy-point p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

/* Team Approach */
.team-approach {
    padding: 85px 20px;
    background: #ffffff;
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 800;
}

.approach-list {
    margin: 30px 0;
    padding-left: 30px;
}

.approach-list li {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

/* Credentials */
.credentials {
    padding: 90px 20px;
    background: #f0fdf4;
}

.credential-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.credential-item {
    padding: 34px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 5px solid #10b981;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.credential-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #047857;
    font-weight: 700;
}

.credential-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* Impact Numbers */
.impact-numbers {
    padding: 95px 20px;
    background: #064e3b;
    color: #ffffff;
}

.impact-numbers h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 800;
}

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

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

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 17px;
    opacity: 0.9;
}

/* Approach Detail */
.approach-detail {
    padding: 90px 20px;
    background: #f9fafb;
}

.approach-detail h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 800;
}

.methodology-detailed {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.method-phase {
    padding: 36px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.method-phase h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #047857;
    font-weight: 700;
}

.method-phase p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

/* CTA About */
.cta-about {
    padding: 90px 20px;
    background: linear-gradient(135deg, #064e3b, #047857);
    color: #ffffff;
    text-align: center;
}

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

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

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 16px 42px;
    background: #ffffff;
    color: #047857;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

/* Services Detailed */
.services-overview {
    padding: 70px 20px;
    background: #f9fafb;
}

.intro-text {
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #374151;
}

.services-detailed {
    padding: 50px 20px 100px;
    background: #ffffff;
}

.service-full {
    margin-bottom: 80px;
}

.service-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

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

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-category {
    display: inline-block;
    padding: 8px 18px;
    background: #d1fae5;
    color: #047857;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 800;
}

.service-info > p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 28px;
    color: #4b5563;
}

.service-includes {
    margin-bottom: 28px;
}

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 700;
}

.service-includes ul {
    padding-left: 24px;
}

.service-includes li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.service-timeline {
    margin-bottom: 24px;
    padding: 16px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 15px;
    color: #374151;
}

.service-timeline strong {
    color: #111827;
}

.service-price {
    font-size: 40px;
    font-weight: 800;
    color: #047857;
    margin-bottom: 24px;
}

.service-full.featured {
    background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
    padding: 50px 30px;
    border-radius: 16px;
    margin-top: 30px;
}

/* Services CTA */
.services-cta {
    padding: 90px 20px;
    background: linear-gradient(135deg, #064e3b, #047857);
    text-align: center;
}

.services-cta .cta-content {
    color: #ffffff;
}

/* Contact Page */
.contact-main {
    padding: 90px 20px;
    background: #f9fafb;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 800;
}

.contact-info-side > p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 40px;
    color: #4b5563;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #047857;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.contact-item a {
    color: #047857;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
    font-style: italic;
}

.response-time {
    margin-top: 40px;
    padding: 24px;
    background: #ecfdf5;
    border-radius: 8px;
}

.response-time h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
    font-weight: 700;
}

.response-time p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.contact-form-side {
    flex: 1;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #111827;
    font-weight: 700;
}

/* Location Context */
.location-context {
    padding: 80px 20px;
    background: #ffffff;
}

.location-context h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 800;
}

.location-context p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: #4b5563;
}

/* Thanks Page */
.thanks-hero {
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, #064e3b, #047857);
    color: #ffffff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 18px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
}

/* Next Steps */
.next-steps {
    padding: 90px 20px;
    background: #f9fafb;
}

.next-steps h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #111827;
    font-weight: 800;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

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

.step-num {
    min-width: 60px;
    height: 60px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #111827;
    font-weight: 700;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
}

.step-timing {
    display: inline-block;
    padding: 6px 14px;
    background: #d1fae5;
    color: #047857;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* Thanks Resources */
.thanks-resources {
    padding: 85px 20px;
    background: #ffffff;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 800;
}

.thanks-resources > p {
    text-align: center;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #6b7280;
}

.resource-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.resource-card {
    padding: 32px;
    background: #f9fafb;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.resource-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
    font-weight: 700;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 18px;
}

.resource-link {
    color: #047857;
    font-weight: 600;
    font-size: 15px;
}

.resource-link:hover {
    text-decoration: underline;
}

/* Thanks Footer CTA */
.thanks-footer-cta {
    padding: 60px 20px;
    background: #f0fdf4;
    text-align: center;
}

.thanks-footer-cta p {
    font-size: 17px;
    color: #374151;
}

.thanks-footer-cta a {
    color: #047857;
    font-weight: 700;
}

/* Legal Pages */
.legal-header {
    padding: 140px 20px 80px;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

.legal-header h1 {
    font-size: 44px;
    margin-bottom: 14px;
    font-weight: 800;
}

.legal-updated {
    font-size: 16px;
    opacity: 0.8;
}

.legal-content {
    padding: 90px 20px;
    background: #ffffff;
}

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

.legal-text h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 14px;
    color: #047857;
    font-weight: 600;
}

.legal-text h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #374151;
    font-weight: 600;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4b5563;
}

.legal-text ul,
.legal-text ol {
    margin: 20px 0 20px 30px;
}

.legal-text li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.legal-text a {
    color: #047857;
    font-weight: 600;
}

.legal-text a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #111827;
}

.cookie-table td {
    font-size: 15px;
    color: #4b5563;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 64px;
    }

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

    .split-visual {
        flex-direction: row;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1;
        min-width: 280px;
    }

    .proof-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .proof-item {
        flex: 1;
        min-width: 320px;
    }

    .benefits-offset {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-major {
        flex: 1;
        min-width: 280px;
    }

    .proof-quotes {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mini-quote {
        flex: 1;
        min-width: 300px;
    }

    .services-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card-enhanced {
        flex: 1;
        min-width: 320px;
        max-width: calc(50% - 22px);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-point {
        flex: 1;
        min-width: 280px;
    }

    .credential-cards {
        flex-direction: row;
    }

    .credential-item {
        flex: 1;
    }

    .stats-display {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

    .methodology-detailed {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .method-phase {
        flex: 1;
        min-width: 280px;
    }

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

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

    .contact-layout {
        flex-direction: row;
    }

    .resource-cards {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .sticky-inner {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 18px;
        font-size: 14px;
    }

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

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

    .contained-flow h2 {
        font-size: 32px;
    }

    .service-card-enhanced {
        max-width: 100%;
    }
}