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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Navigation - Minimal */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

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

.nav-links a:hover {
    opacity: 0.6;
}

/* Hero Section - Minimal Premium */
.hero-minimal {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.cta-primary:hover {
    background: #333;
}

.cta-secondary {
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Story Section */
.story-section {
    padding: 8rem 2rem;
    background: #f8f8f8;
}

.story-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.story-intro {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.8rem;
}

/* Insight Section */
.insight-section {
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.insight-content {
    max-width: 600px;
}

.insight-content h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.insight-image {
    max-width: 500px;
    margin: 0 auto;
}

.insight-image img {
    border-radius: 4px;
}

/* Trust Section */
.trust-section {
    padding: 8rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-quote {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.trust-quote:last-child {
    margin-bottom: 0;
}

.trust-quote blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.trust-quote cite {
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.7;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 2rem;
}

.benefits-section h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    padding: 2.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Process Section */
.process-section {
    padding: 8rem 2rem;
    background: #f8f8f8;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 5rem;
}

.process-step {
    margin-bottom: 4rem;
    padding-left: 5rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: 200;
    color: #ccc;
}

.process-step h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Services Reveal Section */
.services-reveal {
    padding: 8rem 2rem;
}

.services-reveal h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
}

.services-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 5rem;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.3s ease;
}

.service-item:hover {
    border-color: #1a1a1a;
}

.service-item.featured {
    border-color: #1a1a1a;
    border-width: 2px;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

.service-duration {
    font-size: 0.9rem;
    color: #888;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
}

.service-select {
    padding: 0.9rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.service-select:hover {
    background: #333;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-section .cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-section .cta-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Form Section */
.form-section {
    padding: 8rem 2rem;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

.btn-submit {
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

/* Footer */
.footer-minimal {
    padding: 4rem 2rem;
    background: #f8f8f8;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #1a1a1a;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

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

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

.btn-cookie {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 1500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta:hover {
    background: #333;
}

/* Additional Pages Styling */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: #f8f8f8;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

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

.page-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f8f8;
    padding: 2.5rem;
    margin: 3rem 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.contact-info strong {
    font-weight: 600;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thanks-section h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.thanks-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 600px;
    margin-bottom: 1rem;
}

.thanks-section .service-name {
    font-weight: 600;
    color: #1a1a1a;
}

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

/* Responsive - Tablet */
@media (min-width: 768px) {
    .hero-minimal {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image {
        flex: 1;
    }

    .insight-section {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .insight-content {
        flex: 1;
    }

    .insight-image {
        flex: 1;
    }

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

    .benefit-card {
        flex: 0 0 calc(50% - 1.5rem);
    }

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

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

    .services-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .service-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .service-item.featured {
        flex: 0 0 100%;
    }

    .nav-minimal {
        padding: 2rem 4rem;
    }
}

/* Mobile Menu Toggle */
@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .insight-content h2,
    .benefits-section h2,
    .process-content h2,
    .services-reveal h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .trust-quote blockquote {
        font-size: 1.2rem;
    }

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

    .thanks-section h1 {
        font-size: 2.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
    }
}
