/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

/* Typography - Minimal Premium Style */
h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

/* Navigation - Minimal Style */
.nav-minimal {
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Layout Containers - Large Spacing */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

/* Sections - Large Spacing */
section {
    padding: 8rem 0;
}

.hero-space {
    padding: 12rem 0 10rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-content-minimal {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-lead {
    font-size: 1.375rem;
    font-weight: 300;
    color: #4a5568;
    margin-bottom: 3rem;
}

/* Sections with Alternating Backgrounds */
.section-light {
    background: #ffffff;
}

.section-dark {
    background: #1a202c;
    color: #e2e8f0;
}

.section-dark h2,
.section-dark h3 {
    color: #ffffff;
}

.section-dark p {
    color: #cbd5e0;
}

/* Page Header */
.page-header {
    padding: 6rem 0 4rem;
    background: #f7fafc;
    text-align: center;
}

.header-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #718096;
}

/* Intro Text - Large */
.intro-text {
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #2d3748;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Buttons - Minimal Premium */
.cta-primary {
    display: inline-block;
    padding: 1.125rem 3rem;
    background: #2c5282;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1.125rem 3rem;
    background: transparent;
    color: #2c5282;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid #2c5282;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c5282;
    color: #ffffff;
}

.btn-text {
    display: inline-block;
    padding: 1rem 0;
    color: #4a5568;
    font-size: 0.95rem;
    text-decoration: underline;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e2e8f0;
    color: #2d3748;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #cbd5e0;
}

/* Insight Grid */
.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.insight-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Testimony Section */
.section-testimony {
    background: #2c5282;
    color: #ffffff;
}

blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

cite {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: #cbd5e0;
}

/* Services Layout - Stacked Blocks */
.services-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.service-block {
    padding: 3rem;
    background: #f7fafc;
    border-left: 4px solid #2c5282;
}

.service-block h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 300;
    color: #2c5282;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background: #2c5282;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

/* Form Styles */
.section-form {
    background: #edf2f7;
}

.form-intro {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: #2d3748;
    background: #ffffff;
    border: 1px solid #cbd5e0;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.125rem 3rem;
    background: #2c5282;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #1a365d;
}

.form-privacy {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #718096;
}

/* Trust Points */
.section-trust {
    background: #f7fafc;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Sticky CTA */
.section-cta-sticky {
    padding: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    padding: 1.25rem 2rem;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.sticky-content span {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 300;
}

.btn-sticky {
    padding: 0.875rem 2rem;
    background: #2c5282;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #1a365d;
}

/* Final CTA Section */
.section-final {
    background: #2c5282;
    color: #ffffff;
    text-align: center;
}

.section-final h2 {
    color: #ffffff;
}

.section-final p {
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
}

/* About Page Styles */
.about-intro {
    margin-top: 2rem;
}

.section-values {
    background: #edf2f7;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: #ffffff;
}

/* Services Detailed */
.services-detailed {
    background: #ffffff;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 300;
    color: #2c5282;
}

.service-body h3 {
    margin-top: 2rem;
    color: #2d3748;
}

.service-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-body li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

/* Contact Page Styles */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-detail h3 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #718096;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    font-size: 1.125rem;
    color: #2d3748;
    line-height: 1.8;
}

.contact-note {
    padding: 2.5rem;
    background: #f7fafc;
}

.section-map {
    background: #edf2f7;
}

.map-placeholder {
    padding: 8rem 2rem;
    background: #cbd5e0;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.25rem;
    color: #2d3748;
}

.map-note {
    font-size: 1rem;
    color: #718096;
}

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

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #cbd5e0;
}

/* Thanks Page */
.thanks-page {
    padding: 8rem 0;
    min-height: 60vh;
}

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

.thanks-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.thanks-service {
    padding: 2rem;
    background: #f7fafc;
    margin: 2rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: #2c5282;
}

.thanks-next {
    margin: 4rem 0;
    text-align: left;
}

.thanks-steps {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-note {
    padding: 2rem;
    background: #fef5e7;
    margin: 3rem 0;
    text-align: left;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Section CTA */
.section-cta {
    background: #f7fafc;
    text-align: center;
}

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

.legal-date {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #e2e8f0;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Footer */
.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 5rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #718096;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #a0aec0;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #e2e8f0;
}

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

.footer-bottom p {
    color: #718096;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-space {
        padding: 6rem 0 5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .large-text {
        font-size: 1.125rem;
    }

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

@media (min-width: 769px) {
    .insight-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .insight-card {
        flex: 1;
    }

    .services-layout {
        gap: 2.5rem;
    }

    .trust-points {
        flex-direction: row;
        gap: 2rem;
    }

    .trust-item {
        flex: 1;
    }

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

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

    .contact-layout {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-info {
        flex: 1;
    }

    .contact-note {
        flex: 1;
    }
}
