* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

.ad-label {
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    text-shadow: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    display: block;
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    text-align: center;
    color: #fff;
}

.hero-text-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subtext {
    font-size: 24px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.story-intro {
    padding: 100px 20px;
    background: #f8f9fa;
}

.lead-text {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-intro a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.visual-break {
    background: #fff;
}

.split-visual {
    display: flex;
    align-items: stretch;
}

.split-image {
    flex: 1;
    background-color: #e5e7eb;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.insight-section {
    padding: 100px 20px;
    background: #1f2937;
    color: #fff;
}

.insight-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
}

.insight-section > .container-narrow > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
}

.insight-section a {
    color: #60a5fa;
}

.insight-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.insight-card {
    flex: 1;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
}

.trust-builder {
    padding: 100px 20px;
    background: #f3f4f6;
}

.testimonial-visual {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #fff;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial blockquote {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: #374151;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
}

.visual-full {
    background-color: #111827;
}

.visual-full img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.services-preview {
    padding: 100px 20px;
    background: #fff;
}

.services-preview h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #6b7280;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-card.selected {
    border: 3px solid #2563eb;
    box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.service-image {
    width: 100%;
    height: 200px;
    background-color: #e5e7eb;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 15px;
    color: #6b7280;
    line-height: 1.6;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.service-card.selected .btn-select {
    background: #10b981;
}

.service-card.selected .btn-select:hover {
    background: #059669;
}

.form-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > .container-narrow > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #6b7280;
}

.selected-service {
    background: #dbeafe;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #2563eb;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-primary {
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-secondary {
    padding: 14px 32px;
    background: #6b7280;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #4b5563;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fef3c7;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #78350f;
    text-align: center;
}

.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-references {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #374151;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-references ol {
    margin-left: 20px;
}

.footer-references ol li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-references ol li a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 5px;
}

.ad-notice {
    font-size: 13px;
    color: #9ca3af;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thanks-header {
    background: #1f2937;
    padding: 20px 0;
}

.thanks-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-box {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4b5563;
}

.service-selected {
    background: #dbeafe;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #2563eb;
}

.thanks-box .btn-primary {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(0,0,0,0.95);
        padding: 20px;
        border-radius: 8px;
        gap: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text-overlay h1 {
        font-size: 36px;
    }

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

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

    .split-content {
        padding: 40px 20px;
    }

    .insight-cards {
        flex-direction: column;
    }

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

    .service-card {
        flex: 0 1 100%;
    }

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

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