/* General Body & Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    margin: 0;
    background-color: #FFFBF5; /* Warm, creamy off-white background */
    color: #4A4A4A; /* Softer, warmer dark grey for text */
    overflow-x: hidden;
}

.container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-weight: 700;
    color: #2c3e50; /* A deep, muted blue for headings */
}

p {
    color: #5a5a5a; /* Standard text color */
    font-size: 1.1rem;
}

a {
    color: #FF6B6B; /* Vibrant Coral for links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #e05252;
}

/* Header & Language Switcher */
header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
    box-sizing: border-box;
}

.lang-switcher a {
    color: #4A4A4A;
    font-weight: 600;
    margin: 0 8px;
    font-size: 0.9rem;
}

/* Hero Section - Modern App Landing */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF0E4 50%, #FFE8D6 100%);
    padding: 80px 20px;
    box-sizing: border-box;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: left;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c3e50, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #5a5a5a;
    line-height: 1.6;
}

/* App Showcase - iPhone SE 3 Mockup (Rebuilt) */
.app-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.device-carousel {
    position: relative;
    width: 300px;
    height: 635px; /* 724:1532 aspect ratio */
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border-radius: 25px;
    overflow: hidden;
}


.device {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.device.active {
    opacity: 1;
    z-index: 2;
}

.device:not(.active) {
    pointer-events: none;
}

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

.screen-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #FF6B6B;
    transform: scale(1.3);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Base CTA Button Styles (Generic) */
.cta-button {
    display: inline-block;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* Ensure no underline */
    text-transform: none; /* Ensure text is not uppercased */
}

/* New: Vertical CTA Buttons Container */
.vertical-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons */
    margin-top: 30px; /* Space from the tagline */
    align-items: center; /* Center buttons horizontally */
}

/* Styles for all buttons within vertical-cta-buttons */
.vertical-cta-buttons .cta-button {
    width: 200px; /* Fixed width for all buttons */
    padding: 8px 0; /* Vertical padding, horizontal padding handled by width */
    font-size: 0.9rem; /* Consistent font size */
    line-height: 1.2; /* Ensure text fits */
    border: 2px solid; /* All buttons have a border */
}

.vertical-cta-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Specific Button Colors and States */
.vertical-cta-buttons .cta-button.compact-primary {
    background: #FF6B6B;
    color: #FFFFFF;
    border-color: #FF6B6B;
}

.vertical-cta-buttons .cta-button.compact-secondary {
    background: #FFFFFF;
    color: #FF6B6B;
    border-color: #FF6B6B;
}

.vertical-cta-buttons .cta-button.compact-secondary:hover {
    background: #FFF0E4;
    border-color: #e05252;
    color: #e05252;
    box-shadow: none;
}

.vertical-cta-buttons .cta-button.compact-disabled {
    /* Removed this class as per user request */
}

.vertical-cta-buttons .cta-button.compact-inactive {
    background: #FFFFFF;
    color: #FF6B6B;
    border-color: #FF6B6B;
    cursor: default; /* Change cursor to default to indicate non-interactiveness */
    pointer-events: none; /* Disable all pointer events */
    box-shadow: none;
    transform: none; /* No hover effect */
}

.vertical-cta-buttons .cta-button.compact-inactive:hover {
    transform: none;
    box-shadow: none;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #FFFBF5; /* Match the warm background */
    text-align: center;
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 70px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #FFFFFF; /* Pure white cards */
    padding: 40px 30px;
    border-radius: 16px;
    /* Warmer, more subtle shadow */
    box-shadow: 0 12px 35px rgba(211, 189, 168, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(211, 189, 168, 0.25);
}

/* Icon styling with background plate */
.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #FFF0E4; /* Light peach background for icon */
    border-radius: 50%;
    margin-bottom: 25px;
}

.icon-container img {
    width: 48px; /* Control icon size inside the circle */
    height: 48px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #FFF0E4; /* Match the darker part of the gradient */
    border-top: 1px solid #E9D8CC;
}

footer p {
    font-size: 0.9rem;
    color: #8c7a6b;
    margin: 5px 0;
}

/* Privacy Page Specific Styles */
.privacy-policy-section {
    background-color: #FFFBF5;
    padding: 120px 20px 60px;
}

.privacy-policy-section .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(211, 189, 168, 0.15);
    text-align: left;
}

.privacy-policy-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.privacy-policy-section h2 {
    border-bottom: 1px solid #E9D8CC;
    padding-bottom: 10px;
    margin-top: 30px;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    font-weight: bold;
}

/* Responsive Adjustments (Rebuilt) */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .device-carousel {
        width: 255px;
        height: 540px; /* 724:1532 aspect ratio */
        border-radius: 22px;
    }
    
    .device {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .device-carousel {
        width: 225px;
        height: 476px; /* 724:1532 aspect ratio */
        border-radius: 19px;
    }
    
    .device {
        width: 100%;
        height: 100%;
    }
}
