:root {
    --brand-color: #fdd835;
    --second-color: #b5a26d;
    --white-color: #fff0ca;
    --green-color: #005246;
    --text-color: #1a1a1a;
    --background-light: #ffffff;
    --background-cream: #fff9ed;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: #555; }

.section-title span {
    color: var(--brand-color); /* Fallback or specific styling */
}

/* Gradient Text for Title */
.gradient-text {
    background: linear-gradient(90deg, #111 0%, var(--brand-color) 100%); /* Adjusted based on screenshot look */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--brand-color);
    color: #000;
    border: 2px solid var(--brand-color);
}

.btn-primary:hover {
    background-color: #e6c300;
    border-color: #e6c300;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    border-color: #333;
    background-color: #f5f5f5;
}

.app-store-btn {
    display: inline-block;
    transition: var(--transition);
}
.app-store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Custom App Store Button */
.btn-app-store {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-app-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-app-store__icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.btn-app-store__icon svg {
    fill: #000;
    width: 28px;
    height: 28px;
}

.btn-app-store__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn-app-store__subtitle {
    font-size: 0.65rem;
    font-weight: 500;
}

.btn-app-store__title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.app-store-link {
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    border-radius: 6px;
}

.app-store-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.app-store-badge {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 6px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo__icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-color), #ff9800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.nav__list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    color: #333;
}
.nav__link:hover {
    color: var(--brand-color);
}

.nav__btn {
    background-color: var(--brand-color);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 100px 0; /* Add padding to prevent content from touching edges on smaller screens */
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #000; /* Fallback */
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Adjust visibility */
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero__title span {
    color: var(--brand-color);
}

/* Gradient Text Override for Hero specifically if needed, or keep standard */
.hero .gradient-text {
    background: linear-gradient(90deg, #fff 0%, var(--brand-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__description {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 90%;
}

.hero__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    align-items: center;
}

.hero__note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Glassmorphism Card for Hero Image */
.hero__image-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out 0.2s backwards; /* Added animation with delay */
}

.hero__image-wrapper:hover {
    transform: translateY(-10px);
}

.hero__app-icon {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #222, #000);
    border-radius: 38px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary--light:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Placeholder for app icon shape */
.icon-shape {
    width: 80px;
    height: 100px;
    background-color: #222;
    border-radius: 10px;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow rounded corners */
}
.icon-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stretch to cover the entire container */
    display: block;
}
/* Remove pseudo-element if it interferes, or keep if part of the 'notch' design */
.icon-shape::before {
    display: none; /* Hiding the notch to show full logo, or remove this line to keep it */
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Optional decorative background element */
.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 216, 53, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.about__lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    margin-top: 1rem;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(253, 216, 53, 0.3);
}

.about-card__icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff9ed 0%, #fff0ca 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.about-card:hover .about-card__icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.about-card__icon {
    font-size: 1.8rem;
}

.about-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-card__text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f8f9fa; /* Keeping a light grey to differentiate from About */
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Slightly wider cards */
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card__icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon-box {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--brand-color);
}

.feature-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.feature-card__desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery__item {
    background-color: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* Enforce a consistent aspect ratio container */
    aspect-ratio: 16/9;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-color);
}

.faq__item.active .faq__question::after {
    content: '-';
}

.faq__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: #666;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
    padding-bottom: 20px;
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9ed 0%, #ffe0b2 100%);
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    margin-bottom: 1rem;
    color: #333;
}

.cta__desc {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #666;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__logo h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer__column h5 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #111;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #666;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--brand-color);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #888;
}

.footer__download-link {
    color: var(--brand-color);
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        margin: 0 auto; /* Center the content block */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center flex items (buttons) */
    }
    
    .hero__actions {
        justify-content: center;
        flex-direction: column;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .nav__list {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav__list.active {
        right: 0;
    }

    .nav__list li {
        margin: 15px 0;
    }

    .nav__link {
        font-size: 1.5rem;
    }
    
    .nav__btn {
        font-size: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-page {
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.privacy-content .meta {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.privacy-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    text-align: left;
    color: #1a1a1a;
}

.privacy-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-content p {
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: #444;
}

.privacy-content li {
    margin-bottom: 0.8rem;
    padding-left: 5px;
}

.privacy-content li strong {
    color: #222;
}

.privacy-content a {
    color: var(--brand-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #e6c300;
}

/* Support Page Styles */
.support-page {
    padding: 60px 0 100px;
    background-color: #f9f9f9;
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.support-header p {
    font-size: 1.2rem;
    color: #666;
}

.support-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.support-card--featured {
    background: linear-gradient(135deg, #fff9ed 0%, #ffffff 100%);
    border: 2px solid rgba(253, 216, 53, 0.15);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.support-card--featured h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.support-card__icon {
    font-size: 2.5rem;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.support-card__content {
    flex: 1;
}

.support-email-box {
    margin: 25px 0;
}

.support-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.support-email-btn {
    font-size: 1.1rem;
    text-transform: none; /* Keep email lowercase */
    padding: 12px 30px;
}

.support-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

.section-title-small {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.support-list {
    list-style: none;
    margin-top: 20px;
}

.support-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.support-list li::before {
    content: '•';
    color: var(--brand-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.support-list strong {
    color: #222;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.troubleshooting-grid .support-card {
    padding: 30px;
    margin-bottom: 0;
}

.troubleshooting-grid h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #222;
}

.troubleshooting-steps {
    list-style: none;
}

.troubleshooting-steps li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.troubleshooting-steps li::before {
    content: '→';
    color: var(--brand-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-mini {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.cta-mini h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-mini p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

@media (max-width: 768px) {
    .support-card--featured {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .support-card--featured h2 {
        text-align: center;
    }
    
    .support-email-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .support-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
}

