/* General Styles & Variables */
:root {
    --primary-dark: #1a1a1d;
    --secondary-dark: #252528;
    --accent-color: #FFC456;
    --accent-hover: #FFEE58;
    --text-light: #f0f0f0;
    --text-muted: #b0b0b0;
    --border-color: #444;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    background-image: linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.02));
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    color: var(--text-light);
    margin-top: 0;
    line-height: 1.2;
}

h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

/* Header */
header {
    display: flex;
    /* justify-content: space-between; /* Original, if menu was present */
    justify-content: center; /* Center logo as menu is removed */
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    text-align: center;
}

.logo .logo-accent { /* Added for accent color on Smartcloud */
    color: var(--accent-color);
}

/* Menu navigation styles were REMOVED */

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1em;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s, border-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
}

.cta-button.primary-action {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: 2px solid var(--accent-color);
}

.cta-button.primary-action:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.secondary-action {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cta-button.secondary-action:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 70px;
    min-height: auto;
}

.hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    padding-right: 20px;
}

.hero-content h1 {
    font-size: 3.5em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-content .sub-headline {
    font-size: 1.15em;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 100%;
}

.hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    filter: drop-shadow(0 0 40px rgba(255, 196, 86, 0.35));
}

/* Universal Section Padding & Styling */
section {
    padding: 60px 0;
    border-bottom: 1px solid var(--secondary-dark);
}

/* If legal sections are part of main HTML (as in legal_updates_html_20250517) */
/* they will follow this rule. */
/* The last actual content section before footer should not have a border */
main > section:last-of-type {
    border-bottom: none;
}
/* If FAQ is specifically the last before legal sections, and legal sections are last */
#faq { /* if FAQ is followed by legal sections */
    /* border-bottom: 1px solid var(--secondary-dark); */ /* It would have a border */
}
/* If legal sections are present, the last one should not have a border */
.legal-section:last-of-type {
    border-bottom: none;
}


.section-subtitle {
    text-align: center;
    font-size: 1.15em;
    color: var(--text-muted);
    margin-top: -35px;
    margin-bottom: 40px;
    font-style: italic;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.small-text-muted {
    font-size: 0.9em;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
}

.accent-icon-inline {
    color: var(--accent-color);
    margin-right: 8px;
}

.full-width-button {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.1em;
}

.visuals-placeholder {
    margin-top: 40px;
    padding: 25px;
    background-color: rgba(0,0,0,0.1);
    border: 1px dashed var(--border-color);
    border-radius: 5px;
    text-align: center;
}

/* Features Section */
.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.features-section .feature-item {
    background-color: var(--secondary-dark);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.features-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.features-section .feature-item .accent-icon {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.8em;
}

.features-section .feature-item h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: var(--text-light);
}

.features-section .feature-item p {
    font-size: 0.9em;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.video-placeholder-container {
    margin-top: 40px;
    margin-bottom: 20px;
    max-width: 500px; /* Max width for the video area */
    width: 90%;       /* Responsive width, up to max-width */
    margin-left: auto;
    margin-right: auto; /* Centers the container */
    background-color: rgba(0,0,0,0.1); /* Optional: slight background for the container */
    border-radius: 8px;
    overflow: hidden; /* Crucial to clip the video if it tries to be too big */
    position: relative; /* Good practice for child positioning, though not strictly needed for this video setup */

    /* Modern CSS for enforcing a 1:1 aspect ratio on the container itself */
    aspect-ratio: 1 / 1; 
}

/* Styling for the video element itself */
.feature-video {
    display: block; /* Remove extra space below video */
    width: 100%;    /* Video fills the container's width */
    height: 100%;   /* Video fills the container's height (container has aspect-ratio) */
    object-fit: cover; /* Ensures video content covers the 1:1 area.
                          Use 'contain' if you want to see the whole video,
                          which might result in letterboxing if the video's
                          source aspect ratio isn't perfectly 1:1.
                          Since your video is 1:1, 'cover' is fine. */
    border-radius: 8px; /* Match container's border radius if desired */
}

/* How It Works Section */
.how-it-works-section .how-it-works-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    text-align: center;
}
.how-it-works-step .accent-icon {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.how-it-works-step h4 {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 10px;
}
.how-it-works-step p {
    font-size: 0.9em;
    color: var(--text-muted);
}


/* Lifestyle Section */
.lifestyle-section .lifestyle-gallery {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns, if specifically desired and auto-fit doesn't achieve it */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* More responsive default */
    gap: 20px;
}
/* To explicitly force 4 columns on wider screens for lifestyle, if auto-fit isn't preferred: */
@media (min-width: 1025px) { /* Example breakpoint for 4 columns */
    .lifestyle-section .lifestyle-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 769px) and (max-width: 1024px) { /* Example breakpoint for 2-3 columns */
    .lifestyle-section .lifestyle-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Or repeat(3,1fr) or repeat(2,1fr) */
    }
}


.lifestyle-item {
    background-color: var(--secondary-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.lifestyle-item:hover {
    transform: scale(1.03);
}
.lifestyle-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.lifestyle-caption {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lifestyle-caption h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: var(--accent-color);
}
.lifestyle-caption p {
    font-size: 0.85em;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Community Section */
.community-section {
    text-align: center;
}
.community-content p {
    font-size: 1.1em;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px auto;
}
.social-follow {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.social-follow .social-link {
    margin: 0;
}
.community-cta .cta-button {
    font-size: 1.1em;
}

/* Offer Section */
.offer-section {
    background-color: var(--secondary-dark);
}
.offer-content {
    display: block; /* Stack text and form */
}
.offer-text {
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.offer-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.6;
}
.offer-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    display: inline-block;
    text-align: left;
}
.offer-text ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-muted);
}
.offer-form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--primary-dark);
    padding: 30px;
    border-radius: 8px;
}
.offer-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.6em;
    color: var(--accent-color);
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start; /* Align checkbox with the start of the label text */
    gap: 10px; /* Space between checkbox and label */
    margin-bottom: 20px; /* Space below the checkbox group */
    text-align: left; /* Ensure label text is left-aligned */
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px; /* Adjust vertical alignment of checkbox if needed */
    /* Default browser checkbox styling is often fine, but you can style it further if desired */
    /* For custom styling, you'd typically hide the default checkbox and style the label or a pseudo-element */
    flex-shrink: 0; /* Prevent checkbox from shrinking */
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.85em; /* Smaller text for the optional consent */
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
    font-weight: normal; /* Ensure it's not bold if other labels are */
}

.waitlist-form .small-text-muted a { /* Ensure link in the small text is styled */
    color: var(--accent-color);
    text-decoration: underline;
}
.waitlist-form .small-text-muted a:hover {
    color: var(--accent-hover);
}

.waitlist-form .form-group {
    margin-bottom: 15px;
}
.waitlist-form input[type="email"] {
    width: calc(100% - 22px);
    padding: 12px 10px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-dark);
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1em;
    text-align: center;
}
.waitlist-form input[type="email"]::placeholder {
    color: #777;
}
.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 196, 86, 0.3);
}


/* Our Story Section */
.our-story-section .our-story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.creator-image-placeholder {
    margin-bottom: 25px;
}
.creator-image-placeholder i {
    color: var(--accent-color);
}
.our-story-content p {
    font-size: 1.1em;
    color: var(--text-muted);
    line-height: 1.7;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--secondary-dark);
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 3px solid var(--accent-color);
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1em;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    word-break: break-word;
}
.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--accent-color);
}
.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.95em;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0;
    word-break: break-word;
}
.faq-answer.active {
    padding-top: 5px;
}

/* Legal Sections Styling (If present on main page) */
.legal-section {
    padding: 40px 0;
    background-color: var(--primary-dark);
}

.legal-section h2 {
    margin-bottom: 30px;
    text-align: left;
}
.legal-section h2::after {
    margin-left: 0;
    margin-right: auto;
}

.legal-section h3 {
    font-size: 1.5em;
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p,
.legal-section ul,
.legal-section li {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}
.legal-section a:hover {
    color: var(--accent-hover);
}

.legal-section ul {
    padding-left: 20px;
}

.legal-disclaimer {
    background-color: var(--secondary-dark);
    color: var(--accent-color) !important;
    padding: 15px;
    border-left: 3px solid var(--accent-hover);
    margin-top: 10px;
    margin-bottom: 25px !important;
    font-size: 0.9em;
}
.legal-disclaimer strong {
    color: var(--text-light);
}

.container-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-dark);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    font-size: 0.9em;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-banner-content p {
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: var(--accent-color);
    text-decoration: underline;
}
.cookie-banner-content a:hover {
    color: var(--accent-hover);
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-banner-actions .cta-button {
    padding: 8px 18px;
    font-size: 0.85em;
}


/* Footer - MODIFIED */
footer {
    background-color: #121212;
    color: var(--text-muted);
    padding: 50px 0 30px; /* Vertical padding */
    font-size: 0.9em;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1200px; /* Match .container max-width */
    width: 90%; /* Match .container width */
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px; /* Match .container padding */
    text-align: center;
}

.footer-column {
    flex: 1 1 160px; /* Allow shrinking and growing, with a base of 160px */
    /* min-width: 160px; /* Redundant if using flex-basis in flex shorthand */
    /* text-align is left by default, which is usually desired for columns */
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1em;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
    display: inline-block;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Adjustments */

@media (max-width: 992px) {
    .container {
        width: 95%;
    }
    h2 {
        font-size: 2.5em;
    }
    .hero-content h1 {
        font-size: 3em;
    }
    .hero-content .sub-headline {
        font-size: 1.1em;
    }
    /* Lifestyle gallery: auto-fit will handle column changes */
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.2em;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 0 50px;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
        flex-basis: auto;
        width: 100%;
    }
    .hero-image {
        order: 1;
        margin-bottom: 25px;
        flex-basis: auto;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 2.6em;
    }
    .hero-content .sub-headline {
        font-size: 1em;
    }
    .hero-image img {
      max-width: 80%;
      margin: 0 auto;
    }

    header {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    .logo {
        font-size: 1.6em;
    }

    section {
        padding: 45px 0;
    }
    .section-subtitle {
        margin-top: -25px;
        margin-bottom: 30px;
        font-size: 1.1em;
    }

    /* Grids will naturally go to 1 column */
    .lifestyle-item img {
        height: 220px;
    }

    .offer-text {
        text-align: left;
    }
    .offer-text ul {
        display: block;
    }

    .footer-links {
        /* justify-content: flex-start; /* Or center, if preferred when columns stack */
        /* Consider changing flex-direction to column if all items should stack vertically */
    }
    .footer-column {
        flex-basis: 100%; /* Make columns full width to stack */
        text-align: center; /* Center text in stacked columns */
        margin-bottom: 20px; /* Space between stacked columns */
    }
    .footer-column:last-child {
        margin-bottom: 0;
    }
    .footer-column h4 {
        display: inline-block; /* Keep underline centered */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    h2 {
        font-size: 2em;
    }
    h2::after {
        width: 60px;
        margin-top: 10px;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content .sub-headline {
        font-size: 0.9em;
    }
    .cta-button {
        font-size: 0.9em;
        padding: 10px 18px;
    }
    .social-follow .social-link {
        font-size: 0.9em;
        padding: 8px 15px;
        flex-basis: calc(50% - 5px); /* Two buttons per row if possible */
    }
    .lifestyle-caption h3 {
        font-size: 1em;
    }
    .lifestyle-caption p {
        font-size: 0.8em;
    }
    .offer-form-container {
        padding: 20px;
    }
    .offer-form-container h3 {
        font-size: 1.3em;
    }
    .faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .faq-question::after {
        right: 15px;
        font-size: 0.9em;
    }
    .logo {
        font-size: 1.5em;
    }
    section {
        padding: 40px 0;
    }
    .section-subtitle {
        font-size: 1em;
    }
    .features-section .feature-item .accent-icon {
        font-size: 1.6em;
    }
    .features-section .feature-item h3 {
        font-size: 1.15em;
    }
    .features-section .feature-item p {
        font-size: 0.85em;
    }
    .cookie-banner-content {
        gap: 10px;
    }
    .cookie-banner-actions {
        flex-direction: column; /* Stack cookie buttons on very small screens */
        width: 100%;
    }
    .cookie-banner-actions .cta-button {
        width: 80%; /* Make buttons wider when stacked */
        margin: 5px auto;
    }
}
