/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 90%;
}

.cookie-banner a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-banner a:hover {
    color: #6aa8ff;
    text-decoration: underline;
}

.cookie-btn {
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-left: 1.5rem;
}

.cookie-btn:hover {
    background-color: #3a7bc8;
    transform: translateY(-1px);
}

.cookie-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cookie-banner p {
        margin-bottom: 1rem;
        max-width: 100%;
    }
    
    .cookie-btn {
        margin-left: 0;
        width: 100%;
        max-width: 200px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 1rem 0;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A90E2;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4A90E2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A90E2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-cta {
    display: none; /* hide on desktop */
}

.header-cta {
    /* desktop visible */
    flex-shrink: 0;
}

.header-cta .cta-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta .cta-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .header-cta .cta-primary i {
        display: none;
    }

    /* Hide desktop CTA and show mobile CTA */
    .header-cta {
        display: none;
    }
    .mobile-cta {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }
    .mobile-cta .cta-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-nav.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 999;
    }

    .header-nav.open .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Toggle button animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Adjust body padding to account for fixed header */
body {
    padding-top: 80px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: -1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: "text image";
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: visible;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #4A90E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-designer {
    font-size: 1.125rem; /* Slightly smaller than subtitle for hierarchy */
    margin-bottom: 1.5rem; /* Less space than title-to-designer gap */
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(170, 164, 164, 0.8); /* Soft white */
    position: relative;
    display: inline-block; /* For pseudo-element effects */
}

/* Optional animated underline effect on hover */
.hero-designer::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    transition: width 0.3s ease;
}

.hero-designer:hover::after {
    width: 100%;
}

.location {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.5); /* Subtle differentiation */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #4A90E2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.cta-primary.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    align-self: center;
}

/* Pricing card layout tweaks */
.pricing-card .pricing-main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .pricing-main .cta-primary {
    margin-top: auto;
}

.cta-secondary {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.hero-text {
    grid-area: text;
    z-index: 2;
    position: relative;
}

.hero-visual {
    grid-area: image;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: -2rem;
    z-index: 1;
}

.app-screenshot {
    max-width: 700px;
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(74, 144, 226, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.95);
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: 0;
}

.app-screenshot:hover {
    transform: scale(1.5) translateX(-20%) translateY(-5%);
    box-shadow: 
        0 50px 120px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(74, 144, 226, 0.5);
    z-index: 100;
}

/* Ensure text stays behind the image on hover */
.hero-text {
    position: relative;
    z-index: 1;
}

/* Make sure the visual container doesn't clip the enlarged image */
.hero-visual {
    position: relative;
    z-index: 2;
}

.app-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Problem Section */

/* Narrative variant */
.problem.narrative {
    padding: 6rem 0;
    background: #1a1a1a; /* keep dark background */
}

.problem.narrative .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.problem.narrative .problem-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.25rem;
    color: #cccccc;
    text-align: center;
}

.problem.narrative .problem-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem.narrative .problem-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    line-height: 1.6;
    padding-left: 0;
}

.problem.narrative .problem-list li::before {
    content: "✖";
    color: #E04A4A;
    font-size: 1.3rem;
    line-height: 1;
}

.problem.narrative .problem-list strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    .problem.narrative {
        padding: 4rem 0;
    }
    .problem.narrative .problem-text {
        font-size: 1.1rem;
    }
    .problem.narrative .problem-list li {
        font-size: 1rem;
    }
}
.problem {
    padding: 6rem 0;
    background: #2d2d2d;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 144, 226, 0.3);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #4A90E2;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #242424;
}

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

.feature-card {
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #3a7bc8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

/* Demo Section - Media Gallery */
.see-demo {
    padding: 6rem 0;
    background: #202020;
}

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

.see-demo-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: #cccccc;
}

.media-gallery {
    max-width: 1000px;
    margin: 0 auto;
}

/* Main Display Area */
.main-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.media-viewer {
    width: 100%;
    max-width: 1000px; /* Increased from 800px */
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.media-content {
    position: relative;
    aspect-ratio: 3/2; /* Changed from 16/9 to match 2400x1600 screenshots */
    background: transparent; /* Changed from #2d2d2d to make grey areas transparent */
    margin: 0 auto;
    max-width: 100%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.video-placeholder:hover {
    border-color: rgba(74, 144, 226, 0.5);
    transform: scale(1.01);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(74, 144, 226, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: #4A90E2;
    transform: scale(1.1);
}

.play-button i {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-overlay {
    text-align: center;
}

.video-overlay h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.video-overlay p {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
}

.media-image {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.media-image.active {
    display: block !important;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(74, 144, 226, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: #4A90E2;
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: -25px;
}

.nav-next {
    right: -25px;
}

.nav-arrow i {
    width: 24px;
    height: 24px;
}

/* Media Description */
.media-description {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.media-description h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.media-description p {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Thumbnail Strip */
.thumbnail-strip {
    position: relative;
}

.thumbnail-container,
.thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #4A90E2 #2d2d2d;
}

.thumbnail-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 3px;
}

.thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.thumbnail:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 144, 226, 0.5);
}

.thumbnail.active {
    border-color: #4A90E2;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

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

.thumb-video {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thumb-play-icon {
    width: 24px;
    height: 24px;
    background: rgba(74, 144, 226, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.thumb-play-icon i {
    width: 12px;
    height: 12px;
    color: white;
    margin-left: 1px;
}

.thumb-label {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

/* Always Included Section */
.always-included {
    padding: 6rem 0;
    background: #1a1a1a; /* keeps dark theme */
    text-align: center;
}

.always-included .section-title {
    margin-bottom: 0.5rem;
}

.always-included .section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 50px auto 25px;
    justify-content: center;
    grid-auto-rows: 1fr; /* equal height rows */
}

.included-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #2d2d2d;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease;
    height: 72px; /* equal height for all cards */
    max-width: 320px;
    width: 100%;
}

.included-grid .feature-item:hover {
    transform: translateY(-4px);
}

.included-grid .feature-item i {
    color: #2ecc71;
    flex-shrink: 0;
}

/* Force Lucide SVG check icons green in Always Included section */
.included-grid .feature-item svg,
.included-grid .feature-item svg [stroke],
.included-grid .feature-item svg [fill] {
    color: #2ecc71 !important;
    stroke: #2ecc71 !important;
    fill: none !important;
}

.included-grid .feature-item svg[data-lucide="check"] path {
    stroke: #2ecc71 !important;
}

/* Pricing Features Section: alert-circle yellow, check green */
.pricing-features .feature-item svg[data-lucide="alert-circle"],
.pricing-features .feature-item svg[data-lucide="alert-circle"] path {
    color: #ffd600 !important;
    stroke: #ffd600 !important;
}

/* Make check icons in the unlock section bolder and more prominent */
.pricing-features .feature-item svg[data-lucide="check"],
.pricing-features .feature-item svg[data-lucide="check"] path {
    color: #2ecc71 !important;
    stroke: #2ecc71 !important;
    stroke-width: 4px !important;
    filter: drop-shadow(0 0 1px rgba(46, 204, 113, 0.5));
}



/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #333333 100%);
}

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

.pricing-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: #cccccc;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto 4rem;
    background: #2d2d2d;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 2px solid #4A90E2;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #3a7bc8);
}

.pricing-main h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: #4A90E2;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: #cccccc;
    font-weight: 500;
}

.payment-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.5;
}

.pricing-features {
    max-width: 400px;
    margin: 2rem auto 3rem;
    text-align: left;
}

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

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #4A90E2;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.feature-item span {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
}

.pricing-note {
    font-size: 0.9rem;
    color: #9c9a9a;
    text-align: center;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-badge i {
    color: #4A90E2;
    width: 32px;
    height: 32px;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.guarantee-text p {
    margin: 0;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-features h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.features-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

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

.pricing-feature:hover {
    background: rgba(74, 144, 226, 0.08);
    border-color: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-check i {
    width: 14px;
    height: 14px;
    color: white;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.feature-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #333333;
}

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

.faq-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: #cccccc;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.1);
}

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

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(74, 144, 226, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #4A90E2;
    transform: rotate(45deg);
}

.faq-toggle i {
    width: 16px;
    height: 16px;
    color: #4A90E2;
    transition: color 0.3s ease;
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(74, 144, 226, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.system-requirements {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.system-requirements h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #4A90E2;
}

.system-requirements ul {
    list-style: none;
    text-align: left;
}

.system-requirements li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

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

.system-requirements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4A90E2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "text"
            "image";
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        margin-left: 0;
        justify-content: center;
    }
    
    .app-screenshot {
        max-width: 100%;
        transform: none;
    }
    
    .app-screenshot:hover {
        transform: scale(1.02);
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card p {
        text-align: justify;
    }
}

@media (max-width: 768px) {
    /* Center feature icons and titles */
    .feature-card {
        text-align: center;
    }
    .feature-card .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    /* Download demo list left alignment */
    .demo-features,
    .demo-features-list {
        text-align: left;
    }
    .demo-features-list li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    /* Ensure thumbnail strip fits small screens */
    .thumbnail-container,
    .thumbnails {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible; /* allow wrapping instead of horizontal scroll */
    }

    .thumbnail {
        width: 90px;
        height: 60px;
        margin-bottom: 0.5rem; /* space between rows */
    }

    /* Always Included section tweaks */
    .included-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .included-grid .feature-item {
        max-width: 100%;
        width: 100%;
    }

    /* Problem list single-column layout */
    .problem.narrative .problem-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .problem.narrative .problem-list strong {
        display: inline-block;
        margin-bottom: 0.25rem;
    }

    /* move red X icon inside the title and hide original for mobile */
    .problem.narrative .problem-list li::before {
        display: none;
    }
    .problem.narrative .problem-list strong::before {
        content: "✖";
        color: #E04A4A !important;
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }

    .problem.narrative .problem-list li {
        text-align: center;
        align-items: center;
    }

    .hero {
        min-height: 80vh;
    }
    
    .cta-primary {
        width: 100%;
        justify-content: center;
    }
    
    .problem-card,
    .feature-card {
        padding: 2rem;
    }
    
    .system-requirements {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .pricing-card {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .pricing-features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-feature {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .media-gallery {
        margin: 0 1rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-prev {
        left: -20px;
    }
    
    .nav-next {
        right: -20px;
    }
    
    .nav-arrow i {
        width: 20px;
        height: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        width: 24px;
        height: 24px;
    }
    
    .video-overlay h3 {
        font-size: 1.25rem;
    }
    
    .media-description {
        padding: 0 1rem;
    }
    
    .media-description h4 {
        font-size: 1.25rem;
    }
    
    .thumbnail {
        width: 100px;
        height: 67px;
    }
}

/* Download Demo Section */
.download-demo {
    padding: 6rem 0;
    background: #1a1a1a;
}

.download-demo .section-title,
.download-demo .section-subtitle {
    text-align: center;
}

.demo-content {
    margin-top: 3rem;
}

.demo-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid #4A90E2;
    border-radius: 12px;
    padding: 2.5rem;
    background: #0f0f0f;
    flex-wrap: wrap;
}

.demo-image {
    flex: 1 1 300px;
    max-width: 350px;
}

.demo-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.demo-features {
    flex: 2 1 300px;
}

.demo-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-features-list li {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    position: relative;
    padding-left: 1.75rem;
}

.demo-features-list li::before {
    content: "\2713"; /* checkmark */
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 700;
}

.demo-action {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.download-button {
    display: inline-block;
    background: #4A90E2;
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.download-button:hover {
    background: #3a7bd5;
}

.download-size {
    font-size: 0.85rem;
    color: #cccccc;
}

.demo-info {
    text-align: center;
    margin-top: 2rem;
    color: #888888;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .demo-card {
        flex-direction: column;
        text-align: center;
    }

    .demo-image,
    .demo-features,
    .demo-action {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .demo-action {
        margin-top: 1rem;
    }
}

@media (min-width: 769px) {
    /* add a bit more left padding on wide screens */
    .demo-features {
        padding-left: 1.5rem;
    }
}

.demo-features-list p {
    display: flex;
    align-items: center; /* vertically center arrow + text */
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.demo-features-list p i[data-lucide] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.contact-details h2 {
    color: #4A90E2;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-reasons {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.contact-reasons li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-reasons li::before {
    content: "•";
    color: #4A90E2;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.contact-methods h3 {
    color: #ffffff;
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.contact-methods a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-methods a:hover {
    color: #7ab0f0;
    text-decoration: underline;
}

.contact-form-container {
    position: relative;
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #444;
    border-radius: 6px;
    background: #333;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

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

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin: 1rem 0 1.5rem;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-container label {
    margin: 0;
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
}

.checkbox-container a {
    color: #4A90E2;
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.btn.contact-btn {
    background: #4A90E2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    font-weight: 600;
}

.btn.contact-btn:hover {
    background: #3a7bd5;
    transform: translateY(-2px);
}

/* Text justification */
.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive styles for contact page */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-info h1 {
        font-size: 2rem;
    }
    
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Imprint Page */
.imprint-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

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

.imprint-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.imprint-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.imprint-block {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease;
}

.imprint-block:hover {
    transform: translateY(-4px);
}

.imprint-block strong {
    color: #4A90E2;
}

.imprint-block h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.imprint-block h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.imprint-block p,
.imprint-block li {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

.imprint-block p {
    margin-bottom: 1rem;
}

.imprint-block li {
    margin-bottom: 0.5rem;
}

.imprint-block ul {
    list-style: none;
    padding-left: 0.5rem;
}

.imprint-block ul li {
    position: relative;
    padding-left: 1.5rem;
}

.imprint-block ul li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #4A90E2;
}

@media (max-width: 768px) {
    .imprint-block {
        padding: 1.5rem;
    }
}


/* About Page */
.about-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.about-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.about-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
}

.about-card h3 {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.about-expertise h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.expertise-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 300px;
}

.expertise-icon {
    font-size: 1.75rem;
}

.expertise-text h4 {
    margin-bottom: 0.25rem;
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.cta-button {
    display: inline-block;
    background: #4A90E2;
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #3a7bd5;
}

.secondary-button {
    display: inline-block;
    border: 1px solid #4A90E2;
    color: #4A90E2;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary-button:hover {
    background: #4A90E2;
    color: #ffffff;
}

@media (max-width: 768px) {
    .about-card {
        padding: 1.5rem;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Icon sizing */
[data-lucide] {
    width: 24px;
    height: 24px;
}

.problem-icon [data-lucide],
.feature-icon [data-lucide] {
    width: 32px;
    height: 32px;
}
