/* HERO SECTION - DARK THEME */
#pocetna {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 88vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Green accent overlay for depth */
#pocetna::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(105, 178, 84, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

#pocetna .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

#pocetna .text {
    flex: 1 1 380px;
    min-width: 300px;
    max-width: 560px;
    text-align: left;
}

#pocetna .text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

#pocetna .text p {
    font-size: 1.3rem;
    color: #f1f1f1;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

#pocetna .image-container {
    flex: 1 1 400px;
    min-width: 300px;
    max-width: 650px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#pocetna .image-container img {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#pocetna .image-container img.active {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
@media (max-width: 1200px) {
    #pocetna .content {
        padding: 0 28px;
        max-width: 1000px;
        gap: 36px;
    }

    #pocetna .text h1 {
        font-size: 2.6rem;
    }

    #pocetna .text p {
        font-size: 1.22rem;
    }

    #pocetna .image-container {
        height: 420px;
        max-width: 600px;
    }

    #pocetna .image-container img {
        max-width: 580px;
        height: auto;
    }
}

@media (max-width: 992px) {
    #pocetna {
        min-height: 75vh;
        padding: 48px 0;
    }

    #pocetna .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding: 0 24px;
    }

    #pocetna .text {
        text-align: center;
        max-width: 100%;
        order: 1;
    }

    #pocetna .image-container {
        max-width: 100%;
        order: 2;
    }

    #pocetna .text h1 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    #pocetna .text p {
        font-size: 1.18rem;
        margin-bottom: 24px;
    }

    #pocetna .image-container {
        height: 380px;
        max-width: 550px;
    }

    #pocetna .image-container img {
        max-width: 520px;
        height: auto;
        width: 95%;
    }
}
/* BENEFITS SECTION - DARK THEME */
.benefits-section {
    display: flex;
    gap: 32px;
    justify-content: center;
    background: #2d2d2d;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.benefit {
    flex: 1 1 240px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 36px 28px;
    margin: 0 10px;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover effect accent */
.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #69B254 0%, #7bc463 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit:hover::before {
    transform: scaleX(1);
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(105, 178, 84, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(105, 178, 84, 0.3);
}

.benefit h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    #pocetna {
        min-height: 65vh;
        padding: 36px 0;
    }

    #pocetna .content {
        gap: 32px;
        padding: 0 20px;
    }

    #pocetna .text h1 {
        font-size: 2.1rem;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    #pocetna .text p {
        font-size: 1.12rem;
        margin-bottom: 20px;
        line-height: 1.55;
    }

    #pocetna .image-container {
        height: 340px;
        max-width: 480px;
    }

    #pocetna .image-container img {
        max-width: 460px;
        height: auto;
        width: 92%;
        border-radius: 16px;
    }

    /* Benefits sekcija */
    .benefits-section {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 48px 0;
    }

    .benefit {
        margin: 0 auto;
        max-width: 90vw;
        width: 100%;
        padding: 32px 24px;
    }

    .benefit h3 {
        font-size: 1.28rem;
        margin-bottom: 12px;
    }

    .benefit p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}
/* FULL WIDTH SECTIONS - DARK THEME */
.full-width-section {
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    padding: 64px 0 48px 0;
    position: relative;
}

.full-width-section .content-container {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.full-width-section h2 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.full-width-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.18rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.full-width-section .learn-more-button {
    margin-top: 28px;
    font-size: 1.12rem;
    padding: 14px 32px;
    box-shadow: 0 4px 16px rgba(105, 178, 84, 0.25);
}

.full-width-section .learn-more-button:hover {
    box-shadow: 0 6px 20px rgba(105, 178, 84, 0.35);
}
@media (max-width: 600px) {
    #pocetna {
        min-height: 60vh;
        padding: 32px 0;
    }

    #pocetna .content {
        gap: 28px;
        padding: 0 16px;
    }

    #pocetna .text h1 {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 16px;
        letter-spacing: 0.3px;
    }

    #pocetna .text p {
        font-size: 1.08rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    #pocetna .image-container img {
        max-width: 300px;
        width: 82%;
        border-radius: 14px;
    }

    /* Benefits optimizacije */
    .benefits-section {
        padding: 40px 0;
        gap: 20px;
    }

    .benefit {
        max-width: 95vw;
        padding: 28px 20px;
        border-radius: 14px;
    }

    .benefit h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .benefit p {
        font-size: 1.05rem;
    }

    /* Full width sekcije */
    .full-width-section {
        padding: 44px 0 32px 0;
    }

    .full-width-section .content-container {
        padding: 0 18px;
    }

    .full-width-section h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .full-width-section p {
        font-size: 1.1rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .full-width-section .learn-more-button {
        font-size: 1.08rem;
        padding: 13px 28px;
    }
}

@media (max-width: 480px) {
    #pocetna {
        min-height: 55vh;
        padding: 28px 0;
    }

    #pocetna .content {
        gap: 24px;
        padding: 0 14px;
    }

    #pocetna .text h1 {
        font-size: 1.7rem;
        margin-bottom: 14px;
    }

    #pocetna .text p {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }

    #pocetna .image-container {
        height: 260px;
        max-width: 360px;
    }

    #pocetna .image-container img {
        max-width: 340px;
        height: auto;
        width: 88%;
        border-radius: 12px;
    }

    .benefits-section {
        padding: 36px 0;
    }

    .benefit {
        max-width: 96vw;
        padding: 26px 20px;
    }

    .benefit h3 {
        font-size: 1.22rem;
    }

    .benefit p {
        font-size: 1.02rem;
    }

    .full-width-section {
        padding: 36px 0 24px 0;
    }

    .full-width-section .content-container {
        padding: 0 14px;
    }

    .full-width-section h2 {
        font-size: 1.6rem;
    }

    .full-width-section p {
        font-size: 1.05rem;
    }

    .full-width-section .learn-more-button {
        font-size: 1.05rem;
        padding: 12px 24px;
    }
}

@media (max-width: 360px) {
    #pocetna .text h1 {
        font-size: 1.6rem;
    }

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

    #pocetna .image-container img {
        max-width: 240px;
        width: 75%;
    }

    .benefit {
        padding: 24px 18px;
    }

    .benefit h3 {
        font-size: 1.18rem;
    }

    .benefit p {
        font-size: 1rem;
    }

    .full-width-section h2 {
        font-size: 1.5rem;
    }

    .full-width-section p {
        font-size: 1.02rem;
    }
}

/* ===== LANDSCAPE ORIENTATION OPTIMIZATIONS ===== */

/* Mobile Landscape - Hero Section */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    #pocetna {
        min-height: auto;
        padding: 24px 0;
    }

    #pocetna .content {
        flex-direction: row;
        gap: 32px;
        padding: 0 20px;
    }

    #pocetna .text {
        text-align: left;
        flex: 1 1 50%;
        order: 1;
    }

    #pocetna .image-container {
        flex: 1 1 40%;
        order: 2;
        max-width: 300px;
    }

    #pocetna .text h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    #pocetna .text p {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    #pocetna .image-container img {
        max-width: 260px;
    }

    .benefits-section {
        padding: 32px 0;
    }

    .benefit {
        padding: 24px 20px;
    }

    .full-width-section {
        padding: 36px 0 24px;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    #pocetna {
        min-height: 70vh;
        padding: 32px 0;
    }

    #pocetna .content {
        gap: 36px;
    }

    .benefits-section {
        flex-direction: row;
        padding: 48px 20px;
    }

    .full-width-section {
        padding: 52px 0 36px;
    }
}

/* Very Small Phone Landscape - Ultra Compact */
@media (max-width: 740px) and (max-height: 420px) and (orientation: landscape) {
    #pocetna {
        min-height: auto;
        padding: 20px 0;
    }

    #pocetna .text h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    #pocetna .text p {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    #pocetna .image-container {
        max-width: 240px;
    }

    #pocetna .image-container img {
        max-width: 220px;
    }

    .benefits-section {
        padding: 28px 0;
        gap: 16px;
    }

    .benefit {
        padding: 20px 16px;
    }

    .benefit h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .benefit p {
        font-size: 0.98rem;
    }

    .full-width-section {
        padding: 28px 0 20px;
    }

    .full-width-section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .full-width-section p {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-features-simple {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   TOOLS SECTION - New Web Tools Showcase
   ============================================ */
.tools-section {
    /* Dark FitVibes theme - NO white! */
    background: linear-gradient(
        135deg,
        rgba(18, 20, 22, 0.95) 0%,
        rgba(26, 28, 30, 0.9) 100%
    );
    padding: 80px 20px;
    position: relative;
}

.tools-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    /* Dark FitVibes theme card */
    background: linear-gradient(
        135deg,
        rgba(30, 32, 34, 0.95) 0%,
        rgba(40, 42, 44, 0.9) 100%
    );
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(105, 178, 84, 0.2);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(105, 178, 84, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(105, 178, 84, 0.4);
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1;
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.tool-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tool-cta {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #69b254 0%, #5a9b47 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tool-cta:hover {
    background: linear-gradient(135deg, #5a9b47 0%, #4a8a3a 100%);
    transform: scale(1.05);
    color: #fff;
}

/* ============================================
   BLOG PREVIEW SECTION - Latest Articles
   ============================================ */
.blog-preview-section {
    /* Dark FitVibes theme */
    background: linear-gradient(
        135deg,
        rgba(14, 16, 18, 0.95) 0%,
        rgba(22, 24, 26, 0.9) 100%
    );
    padding: 80px 20px;
    position: relative;
}

.blog-preview-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.blog-preview-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.blog-preview-card {
    /* Dark FitVibes theme - NO white backgrounds! */
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(35, 35, 35, 0.9) 100%
    );
    border: 1px solid rgba(105, 178, 84, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay on hover */
.blog-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(105, 178, 84, 0.08) 0%,
        rgba(105, 178, 84, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-preview-card:hover::before {
    opacity: 1;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(105, 178, 84, 0.4);
    box-shadow:
        0 12px 40px rgba(105, 178, 84, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-preview-content {
    position: relative;
    z-index: 1;
}

.blog-preview-date {
    font-size: 0.875rem;
    color: #69b254;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-preview-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-preview-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-preview-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #7bc463;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-preview-card:hover .blog-preview-read-more {
    color: #8dd470;
    transform: translateX(4px);
}

/* ============================================
   APP SECTION - Simplified Version
   ============================================ */
.app-features-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
}

.app-feature-simple {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-feature-simple .app-feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
}

.app-feature-simple h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.app-feature-simple p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE DESIGN - ALL SCREEN SIZES
   Tested: 480px → 4K (3840px)
   ============================================ */

/* 4K & Ultra-Wide Screens (2560px+) */
@media (min-width: 2560px) {
    .tools-section,
    .blog-preview-section {
        padding: 120px 40px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    .tools-grid,
    .blog-preview-grid {
        max-width: 1800px;
        gap: 50px;
    }

    .tool-card,
    .blog-preview-card {
        padding: 50px 40px;
    }
}

/* Large Desktop (1400px-2560px) - Standard Layout */
@media (min-width: 1400px) and (max-width: 2559px) {
    .tools-section,
    .blog-preview-section {
        padding: 100px 30px;
    }
}

/* Medium Desktop (1200px-1400px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Small Desktop & Tablet Landscape (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .tools-section .section-title,
    .blog-preview-section .section-title {
        font-size: 2.2rem;
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .tool-card {
        padding: 32px 24px;
    }

    .tool-icon {
        font-size: 3.5rem;
    }

    .blog-preview-image {
        height: 180px;
    }
}

/* Tablet Landscape (900px-1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
    .tools-section,
    .blog-preview-section {
        padding: 70px 20px;
    }

    .tools-section .section-title,
    .blog-preview-section .section-title {
        font-size: 2rem;
    }

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

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tool-card h3 {
        font-size: 1.3rem;
    }

    .tool-card p {
        font-size: 0.95rem;
    }
}

/* Tablet Portrait (768px-899px) */
@media (min-width: 768px) and (max-width: 899px) {
    .tools-section,
    .blog-preview-section {
        padding: 60px 20px;
    }

    .tools-section .section-title,
    .blog-preview-section .section-title {
        font-size: 1.9rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .tool-card {
        padding: 28px 20px;
    }

    .blog-preview-card {
        padding: 26px 22px;
    }

    .blog-preview-card h3 {
        font-size: 1.2rem;
    }

    .app-features-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Landscape & Large Mobile (600px-767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .tools-section,
    .blog-preview-section {
        padding: 50px 16px;
    }

    .tools-section .section-title,
    .blog-preview-section .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .tools-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tool-card {
        padding: 26px 20px;
    }

    .tool-icon {
        font-size: 3.2rem;
    }

    .tool-card h3 {
        font-size: 1.25rem;
    }

    .blog-preview-card {
        padding: 24px 20px;
    }

    .blog-preview-card h3 {
        font-size: 1.2rem;
    }

    .blog-preview-excerpt {
        font-size: 0.9rem;
    }

    .app-features-simple {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Standard Mobile (480px-599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .tools-section,
    .blog-preview-section {
        padding: 40px 16px;
    }

    .tools-section .section-title,
    .blog-preview-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 35px;
    }

    .tools-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tool-card {
        padding: 24px 18px;
    }

    .tool-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }

    .tool-card p {
        font-size: 0.9rem;
    }

    .tool-cta {
        padding: 10px 28px;
        font-size: 0.9rem;
    }

    .blog-preview-card {
        padding: 22px 18px;
    }

    .blog-preview-card h3 {
        font-size: 1.15rem;
    }

    .blog-preview-excerpt {
        font-size: 0.9rem;
    }

    .blog-preview-date {
        font-size: 0.8rem;
    }

    .app-features-simple {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .app-feature-simple {
        padding: 24px;
    }

    .app-feature-simple .app-feature-icon {
        font-size: 2.5rem;
    }

    .app-feature-simple h3 {
        font-size: 1.2rem;
    }

    .app-feature-simple p {
        font-size: 0.9rem;
    }
}

/* Small Mobile (360px-479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .tools-section,
    .blog-preview-section {
        padding: 35px 14px;
    }

    .tools-section .section-title,
    .blog-preview-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .tools-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tool-card {
        padding: 22px 16px;
    }

    .tool-icon {
        font-size: 2.8rem;
        margin-bottom: 14px;
    }

    .tool-card h3 {
        font-size: 1.15rem;
    }

    .tool-card p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .tool-cta {
        padding: 9px 24px;
        font-size: 0.85rem;
    }

    .blog-preview-image {
        height: 160px;
    }

    .blog-preview-content {
        padding: 18px;
    }

    .blog-preview-date {
        font-size: 0.8rem;
    }

    .blog-preview-card h3 {
        font-size: 1.1rem;
    }

    .blog-preview-excerpt {
        font-size: 0.85rem;
    }

    .blog-preview-read-more {
        font-size: 0.85rem;
    }

    .app-features-simple {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .app-feature-simple {
        padding: 20px;
    }

    .app-feature-simple .app-feature-icon {
        font-size: 2.3rem;
    }

    .app-feature-simple h3 {
        font-size: 1.15rem;
    }

    .app-feature-simple p {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile (up to 359px) */
@media (max-width: 359px) {
    .tools-section,
    .blog-preview-section {
        padding: 30px 12px;
    }

    .tools-section .section-title,
    .blog-preview-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 25px;
    }

    .tools-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tool-card {
        padding: 20px 14px;
    }

    .tool-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .tool-card h3 {
        font-size: 1.1rem;
    }

    .tool-card p {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }

    .tool-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .blog-preview-image {
        height: 140px;
    }

    .blog-preview-content {
        padding: 16px;
    }

    .blog-preview-date {
        font-size: 0.75rem;
    }

    .blog-preview-card h3 {
        font-size: 1.05rem;
    }

    .blog-preview-excerpt {
        font-size: 0.8rem;
    }

    .blog-preview-read-more {
        font-size: 0.8rem;
    }

    .app-features-simple {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .app-feature-simple {
        padding: 18px;
    }

    .app-feature-simple .app-feature-icon {
        font-size: 2rem;
    }

    .app-feature-simple h3 {
        font-size: 1.1rem;
    }

    .app-feature-simple p {
        font-size: 0.8rem;
    }
}