/* ============================================
   BRIGHT WELL - RESPONSIVE STYLESHEET
   Archetype: Long-Form Funnel
   Mobile-first, Flexbox only
   ============================================ */

/* Reset & Base */
* {
    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;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.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;
    text-align: center;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.brand a {
    color: #e74c3c;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f8f9fa;
    color: #e74c3c;
    padding-left: 2rem;
}

/* Hero Section */
.hero-immersive {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9)),
                url('https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1600') center/cover;
    position: relative;
    margin-top: 70px;
    padding: 3rem 1.5rem;
}

.hero-overlay {
    width: 100%;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-content-narrow h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Content Sections */
.content-centered {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

.content-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Story Intro */
.story-intro {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1rem;
}

/* Split Content */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 1.5rem;
}

.split-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #546e7a;
}

.problem-list {
    margin-top: 1.5rem;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #546e7a;
}

.problem-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.3rem;
}

.split-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

/* Problem Amplification */
.problem-amplification {
    background: #ffffff;
}

/* Insight Section */
.insight-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 1.5rem;
    color: #ffffff;
}

.insight-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.insight-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Scenario Story */
.scenario-story {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.story-card {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e74c3c;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.story-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1rem;
}

.story-result {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.1rem;
    padding-top: 1rem;
    border-top: 2px solid #ecf0f1;
}

/* Trust Building */
.trust-building {
    padding: 4rem 1.5rem;
}

.trust-building h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.reason-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.reason-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

/* CTA Inline */
.cta-inline {
    padding: 3rem 1.5rem;
    background: #2c3e50;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* Solution Reveal */
.solution-reveal {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.solution-reveal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.solution-reveal > div > p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    opacity: 0.3;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-large,
.benefit-small {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-large h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-large p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefit-small h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-small p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-inline {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

blockquote {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

blockquote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    font-style: italic;
    margin-bottom: 1rem;
}

cite {
    display: block;
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: normal;
    font-weight: 600;
}

/* Services Pricing */
.services-pricing {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.services-pricing h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #ecf0f1;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.price-card.premium {
    border-color: #9b59b6;
    background: linear-gradient(135deg, #f5f0ff 0%, #ffffff 100%);
}

.badge,
.badge-large {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-large {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.price-card.premium .price {
    color: #9b59b6;
}

.price-save {
    font-size: 0.95rem;
    color: #27ae60;
    font-weight: 600;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #546e7a;
}

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

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

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

.btn-select-service.premium {
    background: #9b59b6;
}

.btn-select-service.premium:hover {
    background: #8e44ad;
}

/* Urgency Section */
.urgency-section {
    padding: 3rem 1.5rem;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.15rem;
}

/* Form Section */
.form-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-section > div > p {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.checkbox-group a {
    color: #e74c3c;
    text-decoration: underline;
}

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

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

/* Final CTA */
.final-cta {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #e74c3c;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Page Header */
.page-header {
    padding: 6rem 1.5rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    margin-top: 70px;
}

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

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

.legal-date {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* About Page */
.about-story {
    padding: 4rem 1.5rem;
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.2rem;
}

.mission-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.values-section {
    padding: 4rem 1.5rem;
}

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

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

.value-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

.stats-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.stats-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.team-section {
    padding: 4rem 1.5rem;
}

.team-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-section > p {
    text-align: center;
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.role {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.cta-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-section p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

/* Services Page */
.services-detailed {
    padding: 4rem 1.5rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #ecf0f1;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.price-badge {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #546e7a;
}

.service-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-note {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.btn-service-select {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-detail-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-service {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid #e74c3c;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.2);
}

.featured-service .price-badge.premium {
    background: #9b59b6;
}

.price-note {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-highlight {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.guarantee-section {
    padding: 3rem 1.5rem;
    background: #f8f9fa;
}

.guarantee-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.guarantee-section > div > p {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.guarantee-list {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #546e7a;
    border-bottom: 1px solid #ecf0f1;
}

.guarantee-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.guarantee-list li:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-info {
    padding: 4rem 1.5rem;
}

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

.contact-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

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

.contact-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

.contact-card a {
    color: #e74c3c;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 0.5rem;
}

.contact-methods {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.contact-methods h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-methods > div > p {
    text-align: center;
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.methods-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.method h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.method p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

.method a {
    color: #e74c3c;
    font-weight: 600;
}

.faq-section {
    padding: 4rem 1.5rem;
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

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

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1rem;
}

.next-steps {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    list-style-position: inside;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #546e7a;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: #ffffff;
}

.additional-info {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.additional-info h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1rem;
}

.info-card a {
    color: #e74c3c;
    font-weight: 600;
}

/* Legal Pages */
.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    list-style: disc;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

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

.legal-content strong {
    color: #2c3e50;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 3rem;
    }

    .hero-lead {
        font-size: 1.3rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu a:hover {
        padding-left: 0;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

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

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

    .reason-card {
        flex: 1;
        min-width: 250px;
    }

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

    .benefit-large {
        flex: 1 1 100%;
    }

    .benefit-small {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .testimonial-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    blockquote {
        flex: 1 1 calc(50% - 1rem);
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .price-card.featured,
    .featured-service {
        flex: 1 1 100%;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .stat {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .contact-card {
        flex: 1;
    }

    .methods-grid {
        flex-direction: row;
    }

    .method {
        flex: 1;
    }

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

    .info-card {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

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

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .hero-content-narrow h1 {
        font-size: 3.5rem;
    }

    .intro-text {
        font-size: 1.5rem;
    }

    .steps-flow {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }

    .pricing-cards {
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

    .price-card.featured,
    .featured-service {
        flex: 1 1 100%;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }

    blockquote {
        flex: 1 1 calc(33.333% - 1.34rem);
    }
}