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

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

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

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

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

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

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background: #444444;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #333333;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-cta {
    background: #0066cc;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #0052a3;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    background: #ff6b35;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

/* Hero Section - Visual First */
.hero-visual {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 5rem;
}

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

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem;
}

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

.hero-visual h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #444444;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Container Variations */
.container-narrow {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Sections */
section {
    padding: 5rem 0;
}

.section-center {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555555;
    max-width: 700px;
    margin: -2rem auto 3rem;
}

/* Story Sections */
.story-intro {
    background: #f8f9fa;
    padding: 6rem 0;
}

.story-lead {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    color: #222222;
    margin-bottom: 1.5rem;
}

.story-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333333;
}

/* Problem Amplify Section */
.problem-amplify {
    background: #ffffff;
    padding: 7rem 0;
}

.split-section {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #333333;
}

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

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

.insight-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin-top: 2rem;
}

.visual-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
}

.stat-large {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

/* Insight Reveal Section */
.insight-reveal {
    background: #fafbfc;
    padding: 7rem 0;
}

.insight-reveal h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-highlight {
    background: #ffffff;
    border-left: 5px solid #0066cc;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.story-highlight p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-highlight ul {
    list-style: none;
    margin-top: 1rem;
}

.story-highlight li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.story-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00cc66;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Trust Building Section */
.trust-building {
    background: #ffffff;
    padding: 7rem 0;
}

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

.trust-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

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

.trust-card p {
    color: #555555;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-inline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 7rem 0;
}

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

.testimonial-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-reveal {
    background: #ffffff;
    padding: 7rem 0;
}

.asymmetric-layout {
    display: flex;
    gap: 4rem;
}

.benefits-main {
    flex: 2;
}

.benefits-sidebar {
    flex: 1;
}

.benefits-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefit-item {
    margin-bottom: 3rem;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #444444;
    line-height: 1.7;
}

.stats-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    position: sticky;
    top: 8rem;
}

.stat-item {
    margin-bottom: 2.5rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Urgency Block */
.urgency-block {
    background: #fff8f5;
    border-top: 4px solid #ff6b35;
    border-bottom: 4px solid #ff6b35;
    padding: 6rem 0;
}

.urgency-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 5px solid #ff6b35;
}

/* Services & Pricing */
.services-pricing {
    background: #fafbfc;
    padding: 7rem 0;
}

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

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #0066cc;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066cc;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.pricing-tag {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
}

.price-period {
    color: #666666;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444444;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00cc66;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.pricing-cta:hover {
    background: #0052a3;
    transform: scale(1.02);
}

/* Form Section */
.form-section {
    background: #ffffff;
    padding: 6rem 0;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    color: #666666;
    font-size: 1.1rem;
}

.form-service-display {
    background: #e8f4ff;
    border: 2px solid #0066cc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: none;
}

.form-service-display.show {
    display: block;
}

.form-service-display p {
    margin: 0;
    font-size: 1.1rem;
}

.change-service {
    background: none;
    border: none;
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 1rem;
    font-size: 0.95rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

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

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

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

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

.form-checkbox {
    margin-bottom: 1.8rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #555555;
}

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

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

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    padding: 7rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.final-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    color: #66b3ff;
    margin-top: 2rem;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #0066cc;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: #ffffff;
}

.cta-primary-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: #ff6b35;
    color: #ffffff;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-primary-large:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

.cta-inline {
    display: inline-block;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #0052a3;
    transform: translateX(5px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.cta-link {
    margin-left: 1.5rem;
    color: #0066cc;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #66b3ff;
}

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

/* Page Hero (for static pages) */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 6rem;
}

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

/* About Page */
.about-story {
    padding: 6rem 0;
}

.about-story h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

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

.stat-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.values-section {
    padding: 6rem 0;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #0066cc;
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.team-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.member-role {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Page */
.services-overview {
    padding: 4rem 0 2rem;
}

.services-detailed {
    padding: 3rem 0;
}

.service-block {
    margin-bottom: 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-price {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-includes {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.service-includes h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00cc66;
    font-weight: 700;
}

.service-result {
    background: #fff8f5;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.additional-services {
    background: #f8f9fa;
    padding: 6rem 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1rem 0 1.5rem;
}

.process-section {
    padding: 6rem 0;
}

.process-steps {
    margin-top: 3rem;
}

.process-step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.guarantee-section {
    background: #fff8f5;
    padding: 6rem 0;
}

.guarantee-box {
    background: #ffffff;
    border: 3px solid #ff6b35;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.guarantee-box p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.guarantee-note {
    text-align: center;
    color: #666666;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

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

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
}

.contact-item p {
    color: #555555;
    line-height: 1.7;
}

.contact-note {
    background: #e8f4ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.map-placeholder {
    background: #f8f9fa;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #666666;
}

.faq-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.faq-list {
    margin-top: 3rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.faq-item p {
    color: #555555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #00cc66 0%, #00994d 100%);
    color: #ffffff;
    margin-top: 6rem;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.selected-service-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.selected-service-box p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.service-note {
    font-size: 1rem;
    opacity: 0.9;
}

.next-steps {
    background: #ffffff;
    color: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: left;
}

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

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #0066cc;
}

.step-content p {
    color: #555555;
}

.thanks-resources {
    background: #ffffff;
    color: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.thanks-resources h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.thanks-resources ul {
    list-style: none;
    margin-top: 1.5rem;
}

.thanks-resources li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.thanks-resources li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    margin-top: 6rem;
}

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

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

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333333;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #444444;
}

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

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

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555555;
}

.cookie-table {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.cookie-table h4 {
    color: #0066cc;
    margin: 0 0 1rem 0;
}

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

.back-link {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.back-link a {
    color: #0066cc;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-floating {
        padding: 1rem;
        gap: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

    .section-center {
        font-size: 1.8rem;
    }

    .split-section {
        flex-direction: column;
        gap: 2rem;
    }

    .asymmetric-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .stats-box {
        position: static;
    }

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

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

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

    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
    }

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

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

    .thanks-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-visual h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    .pricing-card {
        min-width: 280px;
    }
}
