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

:root {
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --gray-900: #111827;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --gradient-pink: linear-gradient(135deg, #fef7f7 0%, #fdf2f8 100%);
    --gradient-red: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(220, 38, 38, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
    padding: 0.875rem 0;
    z-index: 1000;
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:active {
    transform: translateY(0);
}

.logo img {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
    transition: box-shadow 0.3s ease;
}

.logo:hover img {
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--gray-600);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 1.125rem;
    background: rgba(243, 244, 246, 0.5);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.social-icon.instagram:hover {
}

.social-icon.tiktok:hover {
}

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

.nav-link {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-red);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fee2e2;
    color: var(--primary-red);
    border: none;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    transform: scale(1.05);
    background: #fecaca;
}

.lang-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(243, 244, 246, 0.5);
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    background: rgba(243, 244, 246, 0.8);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--gray-900);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
    background: var(--primary-red);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
    background: var(--primary-red);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 999;
    transition: right 0.3s ease;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-content h3 {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 600;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-red);
}

.desktop-only {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-red);
    color: white;
    padding: 100px 1.5rem 40px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.popcorn-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.popcorn {
    position: absolute;
    font-size: 2rem;
    animation: floatUp linear infinite;
}

.popcorn:nth-child(1) {
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.popcorn:nth-child(2) {
    left: 25%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.popcorn:nth-child(3) {
    left: 40%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.popcorn:nth-child(4) {
    left: 60%;
    animation-duration: 16s;
    animation-delay: 1s;
}

.popcorn:nth-child(5) {
    left: 75%;
    animation-duration: 19s;
    animation-delay: 3s;
}

.popcorn:nth-child(6) {
    left: 90%;
    animation-duration: 17s;
    animation-delay: 5s;
}

@keyframes floatUp {
    0% {
        bottom: -100px;
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        bottom: 100%;
        transform: translateX(100px) rotate(360deg);
        opacity: 0.5;
    }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-playful {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #000;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.download-btn img {
    border-radius: 6px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text .small {
    font-size: 0.65rem;
}

.btn-text .large {
    font-size: 0.875rem;
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 1.5rem;
    background: var(--gradient-pink);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    animation: fadeInUp 0.8s ease both;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.3s;
}

.step:nth-child(3) {
    animation-delay: 0.5s;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Blog Section */
.blog-section {
    padding: 80px 1.5rem;
    background: white;
}

.blog-coming-soon {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--gradient-pink);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.blog-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.blog-coming-soon p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-red);
    color: white;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-view-all:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.blog-view-all:hover i {
    transform: translateX(4px);
}

.blog-view-all i {
    transition: transform 0.3s ease;
}

.blog-listing {
    padding: 100px 1.5rem 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border: 1px solid #fee2e2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.blog-card-meta i {
    color: var(--primary-red);
    margin-right: 0.25rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

/* Disable hover effects for blog post cards only */
.blog-card:hover {
    transform: none;
    box-shadow: none;
}

.blog-card .blog-read-more:hover {
    gap: 0.5rem;
}

/* Blog Listing (section/post) */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    background: white;
    border: 1px solid #fee2e2;
    border-radius: 16px;
    overflow: hidden;
}

.blog-featured-link {
    display: contents;
    text-decoration: none !important;
    color: inherit;
}

.blog-featured-image {
    position: relative;
    min-height: 320px;
    background: var(--gradient-pink);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-red);
    color: white;
    padding: 0.375rem 0.625rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.blog-featured-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.3;
    margin: 0.25rem 0 0.75rem;
    color: var(--gray-900);
}

.blog-featured-excerpt {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.blog-recent-section {
    margin-top: 3rem;
}

.blog-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.blog-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Responsive: featured layout */
@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr 1fr;
    }
}

/* Blog Post Content Styling */
.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-900);
}

.blog-post-content > * {
    margin-bottom: 1.5rem;
}

.blog-post-content > *:last-child {
    margin-bottom: 0;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.blog-post-content h1 {
    font-size: 2.25rem;
}

.blog-post-content h2 {
    font-size: 1.875rem;
    color: var(--primary-red);
    border-bottom: 2px solid #fee2e2;
    padding-bottom: 0.5rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
}

.blog-post-content h4 {
    font-size: 1.25rem;
}

.blog-post-content h5 {
    font-size: 1.125rem;
}

.blog-post-content h6 {
    font-size: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.blog-post-content a:hover {
    color: var(--primary-red-dark);
}

.blog-post-content strong,
.blog-post-content b {
    font-weight: 700;
    color: var(--gray-900);
}

.blog-post-content em,
.blog-post-content i {
    font-style: italic;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.blog-post-content ul {
    list-style-type: disc;
}

.blog-post-content ol {
    list-style-type: decimal;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-post-content li::marker {
    color: var(--primary-red);
    font-weight: 600;
}

.blog-post-content ul ul,
.blog-post-content ol ul,
.blog-post-content ul ol,
.blog-post-content ol ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary-red);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-600);
    background: var(--gradient-pink);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.blog-post-content blockquote p {
    margin-bottom: 0;
}

.blog-post-content code {
    background: #f3f4f6;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Courier New', Courier, monospace;
    color: var(--primary-red);
}

.blog-post-content pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-post-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: 0.875rem;
    line-height: 1.6;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-content hr {
    border: none;
    border-top: 2px solid #fee2e2;
    margin: 3rem 0;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow-x: auto;
    display: block;
}

.blog-post-content table thead {
    background: var(--primary-red);
    color: white;
}

.blog-post-content table th,
.blog-post-content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #fee2e2;
}

.blog-post-content table tbody tr:hover {
    background: var(--gradient-pink);
}

.blog-post-content .footnotes {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #fee2e2;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Share Section */
.share-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #fee2e2;
}

.share-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.share-btn-facebook {
    background: #1877f2;
}

.share-btn-facebook:hover {
    background: #1460c7;
}

.share-btn-twitter {
    background: #1da1f2;
}

.share-btn-twitter:hover {
    background: #1a8cd8;
}

.share-btn-linkedin {
    background: #0077b5;
}

.share-btn-linkedin:hover {
    background: #006399;
}

/* Download Section */
.download-section {
    padding: 80px 1.5rem;
    background: var(--gradient-red);
    color: white;
    text-align: center;
}

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

.mascot-animation {
    margin-bottom: 2rem;
    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.download-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.download-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.download-section .availability {
    font-size: 1rem;
    opacity: 0.75;
}

/* Footer */
.footer {
    padding: 60px 1.5rem;
    background: var(--gray-900);
    color: white;
    text-align: center;
}

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

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

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo img {
    border-radius: 6px;
}

.tagline {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer .social-links {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-lang-toggle {
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
}

.footer-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-lang-toggle:active {
    transform: scale(0.95);
}

.privacy-link {
    display: inline-block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #d1d5db;
}

.copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 90px 1rem 30px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .btn-text {
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-image {
        min-height: 240px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-card {
        max-width: 100%;
    }
    
    .download-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-content {
        gap: 1rem;
    }
    
    .logo img {
        width: 36px;
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .blog-featured-title {
        font-size: 1.375rem;
    }
}

/* Smooth Scrolling and Intersection Observer Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

