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

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

.ad-disclosure {
    background: #f8f8f8;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    padding: 60px 40px 40px;
}

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

.brand {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s;
}

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

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 700px;
    margin-bottom: 60px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: background 0.3s;
}

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

.hero-visual {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.statement-block {
    background: #f8f8f8;
    padding: 140px 40px;
}

.statement-inner {
    max-width: 900px;
    margin: 0 auto;
}

.large-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    text-align: center;
}

.approach-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px;
}

.approach-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.approach-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.approach-item p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 700px;
}

.visual-break {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #e8e8e8;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px;
}

.problem-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.problem-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.quote-block {
    margin: 80px 0;
    padding: 60px;
    background: #f8f8f8;
    border-left: 3px solid #1a1a1a;
}

.quote-block p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-attribution {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.services-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px;
}

.services-header {
    margin-bottom: 100px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.services-header p {
    font-size: 20px;
    font-weight: 300;
    color: #4a4a4a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    padding: 60px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s;
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.service-price {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.btn-select-service {
    padding: 16px 40px;
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.service-card.selected {
    border-color: #1a1a1a;
    background: #fafafa;
}

.form-section {
    background: #f8f8f8;
    padding: 140px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.form-intro {
    font-size: 18px;
    font-weight: 300;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.selected-service-display {
    padding: 20px;
    background: #ffffff;
    border-left: 3px solid #1a1a1a;
    margin-bottom: 40px;
}

.selected-service-display p {
    font-size: 16px;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.trust-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px;
}

.trust-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.results-grid {
    display: flex;
    gap: 60px;
}

.result-item {
    flex: 1;
}

.result-metric {
    font-size: 64px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.result-item p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #4a4a4a;
}

.disclaimer-section {
    background: #f8f8f8;
    padding: 80px 40px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer-minimal {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    font-weight: 300;
    color: #999;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    font-weight: 300;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 30px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    font-size: 15px;
    font-weight: 300;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #e0e0e0;
}

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

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.thanks-container p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 40px;
    background: #f8f8f8;
    margin: 60px 0;
}

.service-confirmation h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.service-confirmation p {
    font-size: 18px;
    color: #1a1a1a;
}

.about-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.contact-page h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 20px;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 60px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

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

    .nav-links {
        gap: 30px;
    }

    .large-text {
        font-size: 24px;
    }

    .results-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}