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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #2563eb;
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

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: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.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: 1rem;
}

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

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

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent-color);
    color: #fff;
}

.cookie-accept:hover {
    background: #1d4ed8;
}

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

.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.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo a {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

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

.hero-text-float {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-text-float h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.cta-hero:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Story Section */
.story-intro {
    background: var(--secondary-color);
    padding: 5rem 2rem;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.opening-line {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.emphasis-text {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    color: var(--accent-color);
    margin-top: 2rem;
}

/* Visual Break */
.visual-break {
    padding: 0;
}

.split-visual {
    display: flex;
}

.visual-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.visual-side img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.visual-side:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 4px;
}

/* Problem Amplification */
.problem-amplification {
    padding: 5rem 2rem;
    background: #fff;
}

.problem-amplification h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.option-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.fade-bg {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.option-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.option-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.section-conclusion {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    color: var(--accent-color);
}

/* Insight Reveal */
.insight-reveal {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 2rem;
}

.insight-reveal h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-reveal p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Transformation Showcase */
.transformation-showcase {
    padding: 5rem 2rem;
    background: #fff;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-title-center {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

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

.showcase-item {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.showcase-info {
    padding: 1.5rem;
    background: #fff;
}

.showcase-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.showcase-info p {
    color: var(--light-text);
    margin-bottom: 0.75rem;
}

.duration {
    display: inline-block;
    background: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Trust Building */
.trust-building {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.trust-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.trust-points {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.trust-label {
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
}

.trust-visual {
    flex: 1;
    min-width: 300px;
}

.trust-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonials-inline {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--light-text);
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
}

.benefits-reveal h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.benefits-reveal p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefit-showcase {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta span {
    font-weight: 600;
}

.cta-sticky-btn {
    background: #fff;
    color: var(--accent-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-sticky-btn:hover {
    background: var(--secondary-color);
}

/* Services Pricing */
.services-pricing {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.services-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.premium {
    border: 2px solid var(--accent-color);
}

.service-card.exclusive {
    border: 2px solid #10b981;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.exclusive-badge {
    background: #10b981;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-desc {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-cta {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
    background: #fff;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

/* Order Form */
.order-form-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
}

.form-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.order-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 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: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

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

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.form-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    padding: 3rem 2rem;
    background: #fff;
}

.urgency-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 6px solid #f59e0b;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 2rem;
    background: #f59e0b;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-urgency:hover {
    background: #d97706;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-final-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-final-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* About Page */
.page-hero {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #374151 100%);
    color: #fff;
    text-align: center;
}

.page-hero.minimal {
    padding: 10rem 2rem 5rem;
}

.hero-content-center h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content {
    background: #fff;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.quote-block {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    margin: 3rem 0;
    border-radius: 8px;
}

.quote-block p {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--primary-color);
}

.milestone-visual {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.milestone-visual img {
    width: 100%;
    height: auto;
}

.values-section {
    margin: 4rem 0;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.value-item p {
    color: var(--light-text);
    line-height: 1.6;
}

.cta-block {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

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

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Services Page */
.services-detail {
    padding: 3rem 2rem;
    background: #fff;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.service-detail-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-detail-header {
    background: var(--secondary-color);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-detail-title h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.badge-popular,
.badge-exclusive,
.badge-fast {
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-exclusive {
    background: #10b981;
}

.badge-fast {
    background: #f59e0b;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-detail-body {
    padding: 2rem;
}

.service-detail-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.detailed-features {
    margin-bottom: 2rem;
}

.detailed-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.detailed-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-ideal-for {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-ideal-for h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-ideal-for p {
    color: var(--light-text);
    line-height: 1.6;
}

.service-duration {
    margin: 1.5rem 0;
    font-size: 1.05rem;
}

.service-note {
    background: #fef3c7;
    padding: 1.2rem;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
    margin: 1.5rem 0;
}

.service-order-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

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

.exclusive-card {
    border: 2px solid #10b981;
}

.additional-services {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

.additional-services h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.addon-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 1.8rem;
    border-radius: 8px;
    text-align: center;
}

.addon-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.addon-item p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.addon-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-guarantee {
    padding: 4rem 2rem;
    background: #fff;
}

.service-guarantee h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-guarantee > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-points {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-point {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.guarantee-point h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--success-color);
}

.guarantee-point p {
    color: var(--light-text);
}

.cta-services {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 3rem 2rem;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-side {
    flex: 1;
    min-width: 300px;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-detail {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: underline;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
}

.contact-map-side {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

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

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

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

.thanks-details {
    padding: 4rem 2rem;
    background: #fff;
}

.thanks-info-box {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-info-box h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

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

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--light-text);
    line-height: 1.7;
}

.selected-service-box {
    background: #e0f2fe;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
}

.selected-service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-contact {
    text-align: center;
    margin: 2rem 0;
}

.thanks-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.thanks-contact a {
    color: var(--accent-color);
    text-decoration: underline;
}

.thanks-cta {
    text-align: center;
    margin-top: 2rem;
}

.social-proof-thanks {
    padding: 3rem 2rem;
    background: var(--secondary-color);
}

.social-proof-thanks h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-simple {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-simple p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-simple span {
    font-weight: 600;
    color: var(--light-text);
}

/* Legal Pages */
.legal-page {
    padding: 8rem 2rem 4rem;
    background: #fff;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

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

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookies-table th {
    background: var(--secondary-color);
    font-weight: 600;
}

.legal-nav {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.legal-nav a {
    color: var(--accent-color);
    font-weight: 600;
    transition: color 0.3s;
}

.legal-nav a:hover {
    color: #1d4ed8;
}

.effective-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-nav {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

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

    .visual-side img {
        height: 300px;
    }

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

    .process-arrow {
        display: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .sticky-cta span {
        width: 100%;
        text-align: center;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hours-item {
        flex-direction: column;
    }

    .gdpr-table,
    .cookies-table {
        font-size: 0.9rem;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookies-table th,
    .cookies-table td {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow,
    .narrow-content {
        padding: 3rem 1.5rem;
    }

    .hero-text-float {
        padding: 1.5rem;
    }

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

    .service-card {
        min-width: 100%;
    }

    .benefit-showcase {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
