/*
 * Esquisse Camera - Clean Design
 * Inspired by presentation deck aesthetic
 * Serif typography, cream background, minimal colors
 */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    background-color: #FAFAF8;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }

p {
    margin-bottom: 1.2rem;
    color: #333333;
}

em, i { font-style: italic; }

a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

a:hover { opacity: 0.7; }

/* BUTTONS */
.form-button, .hero-button, .cta-button, .notify-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: #1a1a1a;
    color: #FAFAF8;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover, .hero-button:hover, .cta-button:hover, .notify-button:hover {
    background: transparent;
    color: #1a1a1a;
}

/* SECTIONS */
section { padding: 6rem 0; }
section:nth-child(even) { background: #ffffff; }
section:nth-child(odd) { background: #FAFAF8; }

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.section-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #555555;
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.8;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 2rem 4rem;
    background: url('img/hero.jpg') center bottom / cover no-repeat !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-intro {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: rgba(250, 250, 248, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FAFAF8;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #FAFAF8;
}

.hero-description {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(250, 250, 248, 0.9);
    margin: 2rem auto;
    max-width: 900px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero .hero-button {
    background: #FAFAF8;
    color: #1a1a1a;
    border-color: #FAFAF8;
}

.hero .hero-button:hover {
    background: transparent;
    color: #FAFAF8;
}

.hero-mask { display: none; }

/* MANIFESTO SECTION */
.manifesto {
    background: #f5f5f5;
    padding: 8rem 0;
}

.name-explanation {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.esquisse-definition {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #1a1a1a;
    font-weight: 500;
}

.esquisse-definition em {
    font-style: italic;
    color: #666666;
    font-size: 0.9em;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-text {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: #333333;
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* .manifesto-text:first-of-type {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #1a1a1a;
}

.manifesto-text:last-of-type {
    font-style: italic;
    color: #555555;
} */

/* FEATURES SECTION */
.features { padding: 6rem 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #555555;
    line-height: 1.7;
}

/* LIFESTYLE GALLERY */
.lifestyle-gallery {
    padding: 0;
    background: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .gallery-item {
        aspect-ratio: 16 / 9;
    }
}

/* TECH SPECS SECTION */
.tech-specs {
    background: #ffffff;
    padding: 8rem 0;
}

.camera-diagrams {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto 4rem;
    max-width: 900px;
}

.diagram-item {
    flex: 1;
}

.diagram-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .camera-diagrams {
        flex-direction: column;
        max-width: 400px;
    }

    .diagram-image {
        width: 100%;
    }
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.spec-category {
    background: #FAFAF8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2rem;
}

.spec-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
}

.spec-item:last-child { border-bottom: none; }

.spec-label {
    font-weight: 600;
    color: #1a1a1a;
}

.spec-value {
    color: #555555;
    text-align: right;
}

.specs-note {
    text-align: center;
    font-style: italic;
    color: #666666;
    margin-top: 3rem;
    font-size: 0.95rem;
}

/* PRICE SECTION */
.price-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.price-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-point {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.price-point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.price-point-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-point-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-point-text span {
    font-size: 0.95rem;
    color: #555555;
}

.price-note {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #1a1a1a;
    border-radius: 4px;
}

.price-note p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333333;
    line-height: 1.7;
    margin: 0;
}

/* DEVELOPMENT STATUS */
.development-status {
    background: #FAFAF8;
    padding: 6rem 0;
}

.reassurance-message { margin-top: 3rem; }

.reassurance-message h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reassurance-item {
    text-align: center;
    padding: 2rem;
}

.reassurance-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reassurance-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.reassurance-item p {
    font-size: 1rem;
    color: #555555;
}

/* CTA SECTIONS */
.cta-section {
    background: #1a1a1a !important;
    color: #FAFAF8;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #FAFAF8 !important;
}

.cta-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #cccccc !important;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: #FAFAF8 !important;
    color: #1a1a1a !important;
    border-color: #FAFAF8 !important;
}

.cta-section .cta-button:hover {
    background: transparent !important;
    color: #FAFAF8 !important;
    border-color: #FAFAF8 !important;
}

/* CTA on light background - override colors */
.cta-section.light-bg {
    background: #FAFAF8 !important;
    color: #1a1a1a;
}

.cta-section.light-bg .cta-title {
    color: #1a1a1a !important;
}

.cta-section.light-bg .cta-description {
    color: #555555 !important;
}

.cta-section.light-bg .cta-button {
    background: #1a1a1a !important;
    color: #FAFAF8 !important;
    border-color: #1a1a1a !important;
}

.cta-section.light-bg .cta-button:hover {
    background: transparent !important;
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

/* COMING SOON / SIGNUP */
.coming-soon {
    padding: 6rem 0;
}

.coming-soon-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.signup-benefits, .community-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    color: #555555;
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 3rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1.1rem;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    background: #ffffff;
    color: #1a1a1a;
}

.email-input::placeholder { color: #999999; }
.notify-button { white-space: nowrap; }

.data-policy-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    margin-top: 1rem;
}

.data-policy-link { text-decoration: underline; }

.signup-success {
    text-align: center;
    padding: 3rem;
    background: #f5f5f5;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    margin: 2rem 0;
}

.signup-success.hidden { display: none; }

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.signup-guarantee, .community-guarantee {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.signup-guarantee p, .community-guarantee p {
    font-size: 1rem;
    color: #555555;
    margin: 0;
}

/* COMMUNITY MEMBER SECTION */
.community-member-section {
    text-align: center;
    padding: 3rem;
    background: #f5f5f5;
    border-radius: 4px;
    margin: 2rem 0;
}

.member-welcome { margin-bottom: 2rem; }

.welcome-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.member-welcome h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.member-email {
    font-size: 1.1rem;
    color: #555555;
}

.member-actions { margin-top: 1.5rem; }

/* FOOTER */
footer {
    background: #1a1a1a;
    color: #FAFAF8;
    padding: 3rem 0;
    text-align: center;
}

footer p {
    color: #cccccc;
    margin: 0.5rem 0;
}

footer a {
    color: #FAFAF8;
}

footer a:hover { opacity: 0.8; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
}

/* Footer social links */
footer .social-links {
    flex-wrap: wrap;
    gap: 1.5rem;
}

footer .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FAFAF8;
    text-decoration: none;
    font-size: 1rem;
}

footer .social-icon {
    font-size: 1.2rem;
}

footer .social-username {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    footer .social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    footer .social-link {
        font-size: 0.9rem;
    }

    footer .social-icon {
        font-size: 1.1rem;
    }

    footer .social-username {
        font-size: 0.85rem;
    }
}

/* FORMS */
.form-group { margin-bottom: 1.5rem; }

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

.form-input, textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1rem;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    background: #ffffff;
    color: #1a1a1a;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

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

/* WELCOME PAGE */
.welcome-message {
    padding: 6rem 0;
}

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

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
}

.welcome-section { padding: 4rem 0; }

.welcome-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.idea-submission {
    padding: 6rem 0;
    background: #f5f5f5;
}

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

.idea-form-container {
    max-width: 600px;
    margin: 3rem auto;
}

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

.idea-guarantee {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 4px;
    text-align: center;
}

.idea-guarantee p {
    margin: 0;
    font-size: 0.95rem;
    color: #555555;
}

/* Next Steps Section */
.next-steps {
    padding: 6rem 0;
    background: #FAFAF8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    text-align: left;
    padding: 2rem;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-item .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step-item .social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #1a1a1a;
    transition: background 0.3s ease;
}

.step-item .social-link:hover {
    background: #e0e0e0;
    opacity: 1;
}

.step-item .social-icon {
    font-size: 1.5rem;
}

.step-item .social-username {
    font-weight: 600;
}

.existing-ideas { margin-top: 4rem; }

.idea-card {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

/* PRESS RELEASE / MEDIA ASSETS */
.media-assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.media-asset-item {
    text-align: left;
}

.media-asset-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.media-asset-item p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-links .form-button {
    text-align: center;
    width: 100%;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-info {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
}

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

.contact-info p {
    margin-bottom: 0.75rem;
    color: #333333;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: underline;
}

.specs-table-container {
    overflow-x: auto;
    margin: 3rem 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Crimson Text', Georgia, serif;
}

.specs-table thead {
    background: #1a1a1a;
    color: #FAFAF8;
}

.specs-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border: 1px solid #e0e0e0;
}

.specs-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    color: #333333;
}

.spec-category-title {
    font-weight: 700;
    color: #1a1a1a;
    vertical-align: top;
}

.specs-table tbody tr:nth-child(even) {
    background: #FAFAF8;
}

.specs-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.quote-attribution {
    text-align: center;
    margin-top: 1.5rem;
}

.quote-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.quote-title {
    font-style: italic;
    color: #666666;
    font-size: 0.95rem;
    margin: 0;
}

.idea-text {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.idea-meta {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
}

/* PREVIEW PAGE (3D Model) */
.hero-logo {
    padding: 2rem 0;
    text-align: center;
}

.hero-logo .logo-link {
    display: inline-block;
}

.hero-logo .logo-image {
    height: 64px;
    width: auto;
}

.hero-logo h3 {
    margin-top: 1rem;
    font-weight: 400;
}

.preview-model-section {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.preview-model-section iframe {
    width: 90%;
    max-width: 1200px;
    height: 600px;
    border: none;
    border-radius: 4px;
}

.preview-info {
    text-align: center;
    margin-top: 1rem;
}

.preview-note {
    font-style: italic;
    font-size: 0.95rem;
    color: #666666;
    margin: 0.5rem;
    display: inline-block;
}

.preview-note:not(:last-child) {
    margin-right: 1.5rem;
}

.preview-disclaimer {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem 4rem;
    text-align: center;
}

.preview-disclaimer p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.preview-disclaimer strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* PRESS RELEASE & LEGAL */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-page h1 { margin-bottom: 2rem; }
.content-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.content-page p { margin-bottom: 1.2rem; }

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

.content-page li { margin-bottom: 0.5rem; }

.press-contact {
    margin-top: 3rem;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.contact-info { margin-top: 1rem; }
.contact-content { margin-top: 1rem; }

.download-links { margin-top: 2rem; }

.download-links a {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.founder-quote {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-left: 4px solid #1a1a1a;
    border-radius: 4px;
    font-style: italic;
}

/* COOKIE BANNER */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #FAFAF8;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

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

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

.cookie-button {
    padding: 0.7rem 1.5rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #FAFAF8;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-decline {
    background: transparent;
    color: #FAFAF8;
}

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

/* PAGE LOGO */
.page-logo {
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: all 0.3s ease;
}

.page-logo:hover {
    transform: translateX(-50%) scale(1.05);
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* LOADING STATES */
.button-loading {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-text { display: inline; }

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body { font-size: 16px; }
    section { padding: 4rem 0; }

    .hero {
        min-height: 80vh;
        padding: 3rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .email-signup { flex-direction: column; }
    .email-input { min-width: 100%; }

    .features-grid,
    .specs-grid,
    .signup-benefits,
    .community-benefits,
    .reassurance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-points { grid-template-columns: 1fr; }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-button {
        flex: 1;
        min-width: 120px;
    }

    .preview-model-section iframe {
        width: 98%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-buttons .hero-button { width: 100%; }
    .section-title { margin-bottom: 2rem; }
    .preview-model-section iframe { height: 350px; }
}

/* UTILITIES */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* CORRECTIONS - Texte blanc sur blanc, grids, cookie banner */

/* Fix 1: Coming soon section - texte visible */

.coming-soon .section-title,
.coming-soon .coming-soon-subtitle,
.coming-soon .benefit-item h3,
.coming-soon .benefit-item p,
.coming-soon .signup-note,
.coming-soon .data-policy-text {
    color: #1a1a1a !important;
}

.coming-soon .benefit-item h3 {
    color: #1a1a1a !important;
}

.coming-soon .benefit-item p {
    color: #555555 !important;
}

/* Fix 2: Grid 4 colonnes en 2x2 au lieu de 3+1 */
.price-points {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 768px) {
    .price-points {
        grid-template-columns: 1fr !important;
    }
}

/* Fix 3: Cookie banner compact (10% larger) */
.cookie-banner {
    padding: 0.44rem 0.66rem !important;
    background: #1a1a1a !important;
}

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

.cookie-banner-text {
    flex: 1;
    min-width: 200px;
}

.cookie-banner-text p {
    font-size: 0.77rem !important;
    color: #FAFAF8 !important;
    margin: 0 !important;
}

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

.cookie-banner-buttons .form-button {
    padding: 0.33rem 0.66rem !important;
    font-size: 0.77rem !important;
    border-width: 1px !important;
}

/* Cookie banner button hover states */
.cookie-banner-buttons .cookie-accept {
    background: #FAFAF8;
    color: #1a1a1a;
}

.cookie-banner-buttons .cookie-accept:hover {
    background: #e0e0e0 !important;
    color: #1a1a1a !important;
}

.cookie-banner-buttons .cookie-reject {
    background: transparent;
    color: #FAFAF8;
    border-color: #FAFAF8;
}

.cookie-banner-buttons .cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #FAFAF8 !important;
}

.cookie-banner-buttons .cookie-settings {
    background: transparent;
    color: #FAFAF8;
    border-color: #FAFAF8;
}

.cookie-banner-buttons .cookie-settings:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #FAFAF8 !important;
}

/* Cookie modal - hidden by default */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.cookie-modal-content {
    position: relative;
    background: #FAFAF8;
    padding: 2rem;
    border-radius: 4px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10002;
}

/* Fix 4: Data policy link avec modal */
.data-policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
}

.data-policy-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-policy-content {
    background: #FAFAF8;
    padding: 3rem;
    border-radius: 4px;
    max-width: 700px;
    width: 100%;
    position: relative;
    color: #1a1a1a;
}

.data-policy-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1a1a1a;
    line-height: 1;
}

.data-policy-content h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.data-policy-content p {
    margin-bottom: 1rem;
    color: #333333;
}

/* Cookie modal additional styles */
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cookie-modal-header h2 {
    margin: 0;
    color: #1a1a1a;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1a1a1a;
    line-height: 1;
    padding: 0;
}

.cookie-modal-intro {
    color: #555555;
    margin-bottom: 2rem;
}

.cookie-categories {
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #1a1a1a;
}

.cookie-category-description {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #1a1a1a;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}
