/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
    /* Colors */
    --brand-green: #6CFE5F;
    --brand-green-dark: #5AE04F;
    --bg-page: #FFFFFF;
    --bg-dark: #0D1117;
    --bg-card: #111318;
    --text-primary: #dadada;
    --text-secondary: #8B949E;
    --text-muted: #6E7681;
    --text-dark: #1a1a1a;

    /* Typography */
    --font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --container-padding: 24px;
    --page-padding: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-card: 24px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ============================================
   Page Wrapper - White padding around card
   ============================================ */
.page-wrapper {
    padding: var(--page-padding);
    min-height: 100vh;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.highlight {
    color: var(--brand-green-dark);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-family);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--brand-green);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 254, 95, 0.3);
}

/* ============================================
   Header & Navigation (Subtle style)
   ============================================ */
.header {
    position: absolute;
    top: var(--page-padding);
    left: var(--page-padding);
    right: var(--page-padding);
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 110;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.98);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
}

.mobile-nav-links a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

/* ============================================
   Hero Section - Card Style
   ============================================ */
.hero {
    position: relative;
}

.hero-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    min-height: calc(100vh - var(--page-padding) * 2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 50px;
}

/* Hero Content (Left) */
.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.hero-subtitle-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.subtitle-blob {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(108, 254, 95, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.hero-subtitle {
    position: relative;
    z-index: 1;
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.google-play-badge {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.google-play-badge img {
    height: 200px;
    width: auto;
}

.google-play-badge:hover {
    transform: scale(1.05);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    object-fit: cover;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-proof-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.social-proof-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ============================================
   Hero Mockups (Right) - CSS Phone Frames
   ============================================ */
.hero-mockups {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin-left: -100px;
    /* Overlap into content area */
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Phone styling */
.phone {
    position: absolute;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 44px;
    padding: 10px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 240px;
    height: auto;
    aspect-ratio: 9/19.5;
    object-fit: cover;
    object-position: top;
    border-radius: 34px;
    display: block;
}

.phone-front {
    left: 20%;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    z-index: 2;
}

.phone-front:hover {
    transform: translateY(-50%) rotate(-4deg) translateY(-4px);
}

.phone-back {
    right: 0%;
    top: 50%;
    transform: translateY(-48%) rotate(5deg);
    z-index: 1;
}

.phone-back:hover {
    transform: translateY(-48%) rotate(9deg) translateY(-4px);
}

/* Hero Background Blob */
.hero-bg-blob {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 254, 95, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   Sections Common Styles
   ============================================ */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   How it Works Section
   ============================================ */
.how-it-works {
    background-color: var(--bg-page);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(108, 254, 95, 0.2);
    line-height: 1;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    background-color: var(--bg-dark);
}

.features .section-title {
    color: var(--text-primary);
}

.features .section-subtitle {
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 254, 95, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Blog Preview Section (Landing Page)
   ============================================ */
.blog-preview {
    background-color: var(--bg-page);
    padding: 80px 0;
}

.blog-preview .container {
    max-width: 900px;
}

.section-title-dark {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card-home {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.blog-card-home:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: rgba(108, 254, 95, 0.3);
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card-date {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card-category {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background-color: var(--bg-page);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    padding: 24px 0;
    cursor: pointer;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

/* FAQ Answer Animation */
.faq-answer {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-right: 40px;
    padding-bottom: 24px;
    overflow: hidden;
    animation: faq-open 0.3s ease-out;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.faq-item:not([open]) .faq-answer {
    display: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: transparent;
    padding: 0;
}

.footer-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 40px 0 24px;
    margin: 0 var(--page-padding) var(--page-padding);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-download .google-play-badge img {
    height: 120px;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }

    .phone-screen {
        width: 200px;
    }

    .phone {
        border-radius: 38px;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 30px;
    }

    .phone-notch {
        width: 75px;
        height: 24px;
        top: 14px;
    }

    .hero-mockups {
        height: 520px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    :root {
        --page-padding: 16px;
    }

    .nav-links {
        display: none;
    }

    .nav .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 480px;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-mockups {
        height: 450px;
        order: 2;
    }

    .phone-screen {
        width: 180px;
    }

    .phone {
        border-radius: 34px;
        padding: 7px;
    }

    .phone-screen {
        border-radius: 27px;
    }

    .phone-notch {
        width: 68px;
        height: 22px;
        top: 12px;
    }

    .phone-front {
        left: 20%;
    }

    .phone-back {
        right: 10%;
    }

    .hero-bg-blob {
        right: -20%;
        width: 500px;
        height: 500px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --page-padding: 12px;
    }

    .hero-card {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-container {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-mockups {
        height: 380px;
    }

    .phone-screen {
        width: 150px;
    }

    .phone {
        border-radius: 30px;
        padding: 6px;
    }

    .phone-screen {
        border-radius: 24px;
    }

    .phone-notch {
        width: 56px;
        height: 18px;
        top: 10px;
    }

    .phone-front {
        left: 15%;
    }

    .phone-back {
        right: 5%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .google-play-badge img {
        height: 46px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    :root {
        --page-padding: 10px;
        --radius-card: 20px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-img {
        width: 34px;
        height: 34px;
    }

    .header {
        padding: 16px 0;
    }

    .hero-container {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-mockups {
        height: 320px;
    }

    .phone-screen {
        width: 130px;
    }

    .phone {
        border-radius: 26px;
        padding: 5px;
    }

    .phone-screen {
        border-radius: 21px;
    }

    .phone-notch {
        width: 48px;
        height: 16px;
        top: 8px;
    }

    .phone-front {
        left: 10%;
    }

    .phone-back {
        right: 0;
    }

    .hero-bg-blob {
        width: 350px;
        height: 350px;
        right: -40%;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .phone-screen {
        width: 110px;
    }

    .phone {
        border-radius: 22px;
        padding: 4px;
    }

    .phone-screen {
        border-radius: 18px;
    }

    .phone-notch {
        width: 42px;
        height: 14px;
        top: 7px;
    }

    .hero-mockups {
        height: 280px;
    }
}

/* ============================================
   Section Responsive Styles
   ============================================ */

/* Tablets */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    .faq-answer {
        font-size: 14px;
        padding-right: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .step-card {
        padding: 28px 20px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-icon {
        font-size: 32px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .footer-card {
        padding: 28px 0 16px;
    }

    .footer-content {
        gap: 16px;
        padding-bottom: 16px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-download .google-play-badge img {
        height: 48px;
    }

    .footer-bottom {
        padding-top: 12px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* ============================================
   Blog Post Page Styles
   ============================================ */
.blog-page-body {
    background-color: #ffffff;
}

.blog-header-section {
    background-color: var(--bg-card);
    padding: 0;
}

.blog-header-card {
    background-color: var(--bg-card);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    padding: 40px 0 60px;
    margin: 0 var(--page-padding);
}

.blog-post-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.blog-post-date {
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-post-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    /* Overriding text-primary for dark header */
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blog-content-section {
    background-color: #ffffff;
    padding: 60px 0 80px;
}

.blog-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 48px 0 20px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 36px 0 16px;
}

.blog-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-content ul,
.blog-content ol {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 10px;
}

.blog-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-content a {
    color: #059669;
    text-decoration: underline;
}

.blog-content blockquote {
    border-left: 3px solid var(--brand-green);
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: #6b7280;
}

.blog-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 32px 0;
}

.blog-cta {
    background-color: #f3f4f6;
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 60px;
    text-align: center;
}

.blog-cta h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .blog-header-card {
        padding: 30px 0 50px;
    }

    .blog-content-section {
        padding: 40px 0 60px;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Enhanced Hero Polish */
.hero-card {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}