/* 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;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #fbfbf7;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to right, rgba(221, 214, 200, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(221, 214, 200, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    /* Add subtle paper texture */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(221, 214, 200, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(221, 214, 200, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    pointer-events: none;
    z-index: -1;
}

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

/* Add a subtle margin line like in notebooks */
.container::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(233, 148, 32, 0.3) 0%,
        rgba(233, 148, 32, 0.1) 50%,
        rgba(233, 148, 32, 0.3) 100%
    );
    z-index: 1;
}

@media (max-width: 768px) {
    .container::before {
        left: 30px;
        width: 1px;
    }
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2a2a2a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e95420, transparent);
    border-radius: 2px;
}

/* Handwritten notes */
.handwritten-note {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    color: #e95420;
    text-align: center;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
    display: inline-block;
    position: relative;
    z-index: 2;
    background: rgba(251, 251, 247, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(233, 148, 32, 0.2);
    box-shadow: 0 2px 6px rgba(233, 148, 32, 0.1);
}

.handwritten-note.light {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.section-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #595959;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(251, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(221, 214, 200, 0.4);
    box-shadow: 0 2px 10px rgba(42, 42, 42, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(42, 42, 42, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a2a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

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

.nav-link:hover {
    color: #0b76da;
}

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

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

.cta-button {
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(11, 118, 218, 0.2);
    border: 2px solid transparent;
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 118, 218, 0.3);
    border: 2px solid rgba(11, 118, 218, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #fbfbf7 0%, #f4f1e9 100%);
    overflow: hidden;
    background-image: 
        linear-gradient(to right, rgba(221, 214, 200, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(221, 214, 200, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #595959;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 118, 218, 0.2);
    border: 2px solid transparent;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 118, 218, 0.3);
    border: 2px solid rgba(11, 118, 218, 0.2);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: 2px solid #ddd6c8;
    border-radius: 8px;
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(42, 42, 42, 0.1);
}

.secondary-button:hover {
    border-color: #0b76da;
    color: #0b76da;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 118, 218, 0.15);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 
        0 0 0 1px rgba(221, 214, 200, 0.4),
        0 8px 32px rgba(42, 42, 42, 0.12),
        0 4px 16px rgba(42, 42, 42, 0.08);
    border: 3px solid #e9e4d8;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0b76da, #2aa876);
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e95420, #d7263d);
    bottom: 20%;
    left: 5%;
    animation: float 12s ease-in-out infinite reverse;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background: #ffffff;
    background-image: 
        linear-gradient(to right, rgba(221, 214, 200, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(221, 214, 200, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

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

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

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e9e4d8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(42, 42, 42, 0.05),
        0 1px 4px rgba(42, 42, 42, 0.03);
}

/* Add subtle corner fold effect like notebook stickers */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(-45deg, transparent 46%, #e9e4d8 50%, #ddd6c8 100%);
    opacity: 0.6;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 32px rgba(42, 42, 42, 0.12),
        0 6px 16px rgba(42, 42, 42, 0.08);
    border-color: #ddd6c8;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(11, 118, 218, 0.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.feature-description {
    color: #595959;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fbfbf7 0%, #f4f1e9 100%);
    background-image: 
        linear-gradient(to right, rgba(221, 214, 200, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(221, 214, 200, 0.1) 1px, transparent 1px);
    background-size: 48px 48px;
}

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

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #ffffff;
    border: 3px solid #e9e4d8;
    box-shadow: 
        0 8px 24px rgba(42, 42, 42, 0.1),
        0 4px 12px rgba(42, 42, 42, 0.06);
}

.screenshot-item:hover {
    transform: translateY(-12px) rotate(1deg);
    border-color: #ddd6c8;
    box-shadow: 
        0 16px 48px rgba(42, 42, 42, 0.15),
        0 8px 24px rgba(42, 42, 42, 0.1);
}

.screenshot-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(42, 42, 42, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.screenshot-overlay p {
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Privacy Section */
.privacy {
    padding: 6rem 0;
    background: #ffffff;
    background-image: 
        linear-gradient(to right, rgba(221, 214, 200, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(221, 214, 200, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

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

.privacy-description {
    font-size: 1.125rem;
    color: #595959;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2a2a2a;
    font-weight: 500;
    padding: 1rem;
    background: rgba(251, 251, 247, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(221, 214, 200, 0.3);
}

.privacy-feature svg {
    color: #0b76da;
    flex-shrink: 0;
}

.privacy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-illustration {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 12px 32px rgba(11, 118, 218, 0.2),
        0 6px 16px rgba(11, 118, 218, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.privacy-illustration::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(11, 118, 218, 0.2);
    border-radius: 20px;
    animation: pulse 3s infinite;
}

.shield-icon {
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05) rotate(2deg);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.1) rotate(0deg);
        opacity: 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fbfbf7 0%, #f4f1e9 100%);
    background-image: 
        linear-gradient(to right, rgba(221, 214, 200, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(221, 214, 200, 0.1) 1px, transparent 1px);
    background-size: 64px 64px;
}

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

.use-case {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e9e4d8;
    box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.use-case::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case:hover::before {
    opacity: 1;
}

.use-case:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(42, 42, 42, 0.15);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11, 118, 218, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.use-case:hover .use-case-icon {
    transform: translateY(-2px) scale(1.06) rotate(-3deg);
    box-shadow: 0 10px 24px rgba(11, 118, 218, 0.3);
}

.use-case h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.use-case p {
    color: #595959;
}

.use-case:hover h4,
.use-case:hover p {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0b76da 0%, #2aa876 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.download .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.download-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.app-store-button,
.play-store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 180px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.app-store-button:hover,
.play-store-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.store-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.store-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1px;
}

.download-note {
    opacity: 0.8;
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: #e7e5e4;
    padding: 3rem 0 1rem;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.footer-tagline {
    color: #cfcfcb;
}

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

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e7e5e4;
}

.footer-column a {
    display: block;
    color: #cfcfcb;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #79a6e8;
}

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 2rem;
    text-align: center;
    color: #a8a79f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .primary-button,
    .secondary-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Smooth scrolling and enhanced animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .screenshot-item,
    .use-case {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .feature-card:nth-child(5) { animation-delay: 0.5s; }
    .feature-card:nth-child(6) { animation-delay: 0.6s; }
}

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