/* CSS Variables for Light/Dark Mode */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-tertiary: #888;
    --border-color: #f0f0f0;
    --shadow-color: rgba(0, 0, 0, 0.1);

    /* Sky gradient - used across hero, spotlight, bento, and CTA sections */
    --gradient-sky: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #93c5fd 75%, #dbeafe 100%);
}

/* Dark mode via system preference */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1a1a1a;
        --bg-secondary: #2a2a2a;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --text-tertiary: #888;
        --border-color: #333;
        --shadow-color: rgba(0, 0, 0, 0.3);
    }
}

/* Manual dark mode override */
:root[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #888;
    --border-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Manual light mode override */
:root[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-tertiary: #888;
    --border-color: #f0f0f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    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: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navigation */
.navbar {
    padding: 1.5rem 2rem;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.nav-logo svg {
    color: var(--text-tertiary);
}

.nav-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Dark Mode Toggle */
.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    color: var(--text-primary);
    background: var(--bg-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* New Hero Section with Sky Background */
.hero-new {
    position: relative;
    padding: 8rem 2rem 10rem;
    background: var(--gradient-sky);
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.hero-text {
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge svg {
    color: #fbbf24;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-app-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.hero-app-store-btn img {
    height: 60px;
    width: auto;
}

.hero-app-store-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

/* Feature Cards */
.hero-features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1.0rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
}

.hero-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Right Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-phone-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-phone {
    position: relative;
    z-index: 2;
    max-width: 320px;
}

/* Decorative Clouds */
.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    opacity: 0.6;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: drift 20s infinite linear;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 120px;
    height: 50px;
    top: 60%;
    right: 15%;
    animation: drift 25s infinite linear;
}

.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-2::after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 15px;
}

.cloud-3 {
    width: 80px;
    height: 35px;
    top: 40%;
    right: 5%;
    animation: drift 30s infinite linear;
}

.cloud-3::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud-3::after {
    width: 50px;
    height: 35px;
    top: -15px;
    right: 10px;
}

@keyframes drift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100vw);
    }
}

/* Responsive for new hero */
@media (max-width: 968px) {
    .hero-new {
        padding: 6rem 2rem 8rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-badge {
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
        order: 2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        order: 3;
    }

    .hero-buttons {
        order: 4;
    }

    .hero-features-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        order: 5;
    }

    .hero-feature-card {
        padding: 1.25rem 0.75rem;
    }

    .hero-feature-card h3 {
        font-size: 0.9rem;
    }

    .hero-feature-card p {
        font-size: 0.8rem;
    }

    .hero-phone {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-new {
        padding: 4rem 1.5rem 6rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-app-store-btn img {
        height: 50px;
    }

    .hero-features-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-feature-card {
        padding: 1rem;
    }

    .hero-phone {
        max-width: 240px;
    }
}

/* ========================================
   SHARED UTILITIES
   ======================================== */

/* Section Tag Badge */
.section-tag {
    display: inline-block;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tag.blue-purple {
    background: var(--gradient-sky);
}

.section-tag.sky {
    background: var(--gradient-sky);
}

/* Section Images */
.section-image {
    max-width: 450px;
    width: 100%;
}

.section-image-medium {
    max-width: 320px;
    width: 100%;
}

.section-image-large {
    max-width: 400px;
    width: 100%;
}

.section-image-small {
    max-width: 350px;
    width: 100%;
}

/* ========================================
   FEATURE SPOTLIGHT SECTION
   ======================================== */

.feature-spotlight-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

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

.spotlight-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
}

.spotlight-grid.reverse {
    direction: rtl;
}

.spotlight-grid.reverse > * {
    direction: ltr;
}

.spotlight-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.spotlight-bg-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.spotlight-content {
    color: white;
}

.spotlight-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.spotlight-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.spotlight-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spotlight-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.spotlight-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.spotlight-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #60a5fa;
}

.spotlight-feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.spotlight-feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   BENTO GRID SECTION
   ======================================== */

.bento-section {
    padding: 8rem 2rem;
    background-color: var(--bg-primary);
}

.bento-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bento-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bento-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.bento-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    position: relative;
}

.bento-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: rgba(15, 52, 96, 0.3);
}

.bento-card:hover .bento-card-bg {
    opacity: 1;
}

.bento-card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bento-large {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: none;
    padding: 3rem;
}

.bento-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 300px;
    justify-content: center;
}

.bento-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 14px;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-card-icon {
    transform: rotate(5deg) scale(1.05);
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spotlight-grid.reverse {
        direction: ltr;
    }

    .spotlight-title {
        font-size: 2rem;
    }

    .spotlight-description {
        font-size: 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-cards-column {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .bento-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .feature-spotlight-section,
    .bento-section {
        padding: 4rem 1.5rem;
    }

    .spotlight-title {
        font-size: 1.75rem;
    }

    .spotlight-description {
        font-size: 0.95rem;
    }

    .section-image {
        max-width: 280px;
    }

    .section-image-medium {
        max-width: 240px;
    }

    .section-image-large {
        max-width: 280px;
    }

    .section-image-small {
        max-width: 240px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-cards-column {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-title {
        font-size: 1.75rem;
    }

    .bento-card {
        padding: 1.5rem;
    }
}

/* Diagonal Background Utility */
.diagonal-bg {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.diagonal-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--bg-primary);
    transform: skewY(-2deg);
    transform-origin: left;
}

/* Feature Item Text (gebruikt in features-list) */
.feature-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Section Utilities */
.section-icon {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ========================================
   DYNAMISCHE SECTIES
   ======================================== */

/* Features List Section - Compact iPhone + checklist */
.features-list-section {
    padding: 5rem 2rem;
    background-color: var(--bg-secondary);
}

.features-list-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.features-list-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-list-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.feature-checkmark svg {
    display: block;
    transition: transform 0.2s ease;
}

.feature-item:hover .feature-checkmark svg {
    transform: scale(1.08);
}

.feature-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Screenshot Sections */
.screenshot-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.screenshot-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.screenshot-content.reverse {
    direction: rtl;
}

.screenshot-content.reverse > * {
    direction: ltr;
}

.screenshot-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-text {
    padding: 2rem 0;
}

.screenshot-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.screenshot-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
}

/* Centered Text Section */
.centered-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--bg-primary);
}

.centered-content {
    max-width: 600px;
    margin: 0 auto;
}

.centered-section .section-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.centered-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.centered-section .section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.centered-section .text-link,
.centered-section a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 500;
}

.centered-section .text-link:hover,
.centered-section a:hover {
    text-decoration: none;
    opacity: 0.85;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background-color: var(--bg-primary);
}

.stats-section.bg-light {
    background-color: var(--bg-secondary);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background-color: var(--bg-secondary);
}

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

.testimonials-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--bg-primary);
}

.cta-section.bg-gradient {
    background: var(--gradient-sky);
    color: white;
}

.cta-section.bg-gradient h2,
.cta-section.bg-gradient .cta-description {
    color: white;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button.primary {
    background-color: #4A90E2;
    color: white;
}

.cta-section.bg-gradient .cta-button.primary {
    background-color: white;
    color: #667eea;
}

.cta-button.secondary {
    background-color: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.cta-section.bg-gradient .cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: #4A90E2;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--bg-primary);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-icon {
    font-size: 1.5rem;
    color: #4A90E2;
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
}

/* Background Utilities */
.bg-light {
    background-color: var(--bg-secondary);
}

.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #666 !important;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-list-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-list-content h2 {
        font-size: 2.25rem;
    }

    .features-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    

    .screenshot-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .screenshot-content.reverse {
        direction: ltr;
    }

    .screenshot-text h2 {
        font-size: 2rem;
    }

    

    .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .app-name {
        font-size: 2rem;
    }

    .feature-text h2,
    .powerful-section h2 {
        font-size: 1.7rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-section h2,
    .centered-section h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 1.5rem 5rem;
    }

    .features-list-section,
    .screenshot-section,
    .feature-section,
    .screenshots-section {
        padding: 4rem 1.5rem;
    }

    .features-list-content h2 {
        font-size: 2rem;
    }

    .features-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        gap: 0.875rem;
        padding: 0.625rem 0;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    

    .screenshot-text h2 {
        font-size: 1.75rem;
    }

    .screenshot-text p {
        font-size: 1rem;
    }

    .powerful-section {
        padding: 4rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .cta-button {
        width: 100%;
    }

    .centered-section,
    .stats-section,
    .testimonials-section,
    .cta-section,
    .faq-section {
        padding: 4rem 1.5rem;
    }
}
