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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

a:hover {
    opacity: 0.7;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

.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 {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background: #1a1a1a;
    color: #fff;
}

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

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

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

/* Navigation - Minimal Style */
.minimal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

/* Hero Section - Minimal Premium */
.hero-minimal {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.hero-content-centered {
    max-width: 900px;
}

.hero-title-large {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.hero-subtitle-spaced {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.5;
    color: #555;
    margin-bottom: 60px;
    font-weight: 300;
}

/* CTA Buttons */
.cta-primary-large,
.cta-primary-xl,
.cta-secondary {
    display: inline-block;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary-large,
.cta-primary-xl {
    background: #1a1a1a;
    color: #fff;
}

.cta-primary-large:hover,
.cta-primary-xl:hover {
    background: #333;
    transform: translateY(-2px);
}

.cta-primary-xl {
    font-size: 20px;
    padding: 24px 56px;
}

.cta-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.cta-inline {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
}

.cta-link {
    color: #666;
    font-size: 16px;
}

/* Content Layouts */
.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.content-centered-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.content-centered-minimal {
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.content-wide-spaced {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 40px;
}

.content-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.content-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-wide-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 60px;
}

.approach-column {
    flex: 1;
}

/* Story Intro */
.story-intro {
    background: #fff;
    padding: 80px 0;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
}

/* Visual Block */
.visual-block {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 80px;
    max-width: 700px;
    text-align: center;
}

.overlay-text h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -1px;
}

/* Problem Section */
.problem-section {
    background: #f5f5f5;
    padding: 100px 0;
}

.section-heading-large {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 80px;
    font-weight: 600;
    letter-spacing: -1.5px;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.problem-item {
    flex: 1;
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

/* Insight Section */
.insight-minimal {
    padding: 120px 0;
    background: #1a1a1a;
    color: #fff;
}

.insight-quote {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

/* Approach Section */
.approach-section {
    background: #fff;
    padding: 100px 0;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 48px;
    margin-bottom: 32px;
    font-weight: 600;
    letter-spacing: -1px;
}

.approach-text p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.approach-visual {
    flex: 1;
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    background: #fafafa;
    padding: 100px 0;
}

.section-heading-centered {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: -1px;
}

.testimonials-minimal {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

/* Services Section */
.services-reveal {
    padding: 120px 0;
    background: #fff;
}

.section-heading-xl {
    font-size: clamp(40px, 6vw, 64px);
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -2px;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 80px;
}

.services-cards-minimal {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fafafa;
    padding: 60px;
    border-radius: 12px;
    position: relative;
}

.service-card.featured {
    background: #1a1a1a;
    color: #fff;
}

.badge-popular {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.service-card.featured .service-description {
    color: #ccc;
}

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

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 600;
}

.service-card.featured .service-features li {
    color: #ddd;
}

.service-price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.btn-select-service {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    font-weight: 600;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-card.featured .btn-select-service {
    background: #fff;
    color: #1a1a1a;
}

.service-card.featured .btn-select-service:hover {
    background: #f5f5f5;
}

/* Urgency Section */
.urgency-minimal {
    padding: 100px 0;
    background: #f5f5f5;
}

.urgency-minimal h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -1px;
}

.urgency-minimal p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

/* Benefits Section */
.benefits-reveal {
    padding: 100px 0;
    background: #fff;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -1px;
}

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

.benefits-list li {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 36px;
    position: relative;
}

.benefits-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-size: 24px;
}

.benefits-image {
    flex: 1;
}

/* Final CTA */
.final-cta-section {
    padding: 140px 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.cta-heading-large {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 48px;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.final-cta-section .cta-primary-xl {
    background: #fff;
    color: #1a1a1a;
}

.final-cta-section .cta-primary-xl:hover {
    background: #f5f5f5;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: #fafafa;
}

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

.form-container-centered h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.contact-form {
    background: #fff;
    padding: 48px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    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: #1a1a1a;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
}

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

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

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

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

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.4s ease;
}

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

.sticky-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer-minimal {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    color: #888;
    font-size: 14px;
}

/* About Page */
.page-hero-minimal {
    padding: 160px 40px 80px;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-lead {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #666;
    font-weight: 300;
}

.about-story {
    padding: 100px 0;
    background: #fff;
}

.about-story h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -1px;
}

.about-story p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.team-visual {
    padding: 100px 0;
    background: #fafafa;
}

.team-grid {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    font-size: 15px;
    color: #888;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-section {
    padding: 100px 0;
    background: #fff;
}

.values-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: -1px;
}

.values-minimal {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    text-align: center;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.approach-detailed {
    padding: 100px 0;
    background: #f5f5f5;
}

.cta-about {
    padding: 120px 0;
    background: #1a1a1a;
    text-align: center;
}

.cta-about h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -1px;
}

.cta-about .cta-primary-large {
    background: #fff;
    color: #1a1a1a;
}

.cta-about .cta-primary-large:hover {
    background: #f5f5f5;
}

/* Services Page */
.services-detailed {
    padding: 80px 0;
    background: #fff;
}

.service-card-extended {
    background: #fafafa;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
}

.service-card-extended.featured-extended {
    background: #1a1a1a;
    color: #fff;
}

.badge-popular-large {
    position: absolute;
    top: 32px;
    right: 32px;
    background: #fff;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

.service-card-extended h2 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-tagline {
    font-size: 20px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 300;
}

.service-card-extended.featured-extended .service-tagline {
    color: #ccc;
}

.service-description-long {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.service-card-extended.featured-extended .service-description-long {
    color: #ddd;
}

.service-card-extended h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    font-weight: 600;
}

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

.service-features-extended li {
    font-size: 17px;
    line-height: 1.8;
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.service-features-extended li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 18px;
}

.service-card-extended.featured-extended .service-features-extended li {
    color: #ddd;
}

.service-pricing-box {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.service-card-extended.featured-extended .service-pricing-box {
    border-top-color: #444;
}

.service-price-large {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.comparison-section {
    padding: 100px 0;
    background: #f5f5f5;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

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

.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: -1px;
}

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

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.cta-services {
    padding: 120px 0;
    background: #1a1a1a;
    text-align: center;
}

.cta-services h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.cta-services .cta-primary-large {
    background: #fff;
    color: #1a1a1a;
}

.cta-services .cta-primary-large:hover {
    background: #f5f5f5;
}

/* Contact Page */
.contact-main {
    padding: 80px 0;
    background: #fff;
}

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

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

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.contact-detail a {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-note {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

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

.contact-form-side h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
}

.form-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
}

.map-section {
    padding: 80px 0;
    background: #fafafa;
}

.content-full-width {
    max-width: 100%;
    padding: 0 40px;
}

.map-placeholder {
    max-width: 1400px;
    margin: 40px auto 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 32px;
    border-radius: 8px;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 160px 40px 80px;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.service-confirmation {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 8px;
    display: inline-block;
}

.service-selected {
    font-size: 17px;
    margin: 0;
}

.next-steps {
    padding: 100px 0;
    background: #fff;
}

.next-steps h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: -1px;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.while-you-wait {
    padding: 80px 0;
    background: #f5f5f5;
}

.while-you-wait h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 600;
}

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

.waiting-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

.waiting-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 28px;
    color: #1a1a1a;
}

.waiting-list a {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
}

.thanks-cta {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

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

.or-divider {
    margin: 24px 0;
    color: #999;
}

/* Legal Pages */
.legal-page {
    padding: 120px 40px 80px;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 48px 0 20px;
    font-weight: 600;
}

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

.legal-content a {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 24px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-minimal {
        min-height: 70vh;
        padding: 100px 24px 60px;
    }

    .problem-grid,
    .testimonials-minimal,
    .team-grid,
    .values-minimal,
    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .content-asymmetric,
    .content-split,
    .content-wide-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .contact-container-split {
        flex-direction: column;
        gap: 60px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

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

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

    .service-card,
    .service-card-extended {
        padding: 40px 28px;
    }

    .badge-popular,
    .badge-popular-large {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }
}

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .nav-links {
        gap: 16px;
    }

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

    .hero-subtitle-spaced {
        font-size: 18px;
    }

    .content-narrow,
    .content-centered,
    .content-wide,
    .content-wide-spaced {
        padding: 60px 24px;
    }

    .section-heading-large,
    .section-heading-xl {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .contact-form,
    .form-container-centered {
        padding: 32px 24px;
    }

    .map-placeholder {
        height: 300px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
