/* ===================================
   RESPONSIVE STYLES
   Mobile-First Approach
   =================================== */

/* === TABLET (768px and below) === */
@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    /* Container */
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    /* Why Section */
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image {
        order: -1;
    }

    /* Section Headers */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* === MOBILE (480px and below) === */
@media (max-width: 480px) {

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 48px 0;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 48px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    .trust-text {
        font-size: 0.85rem;
    }

    /* Services */
    .services-overview {
        padding: 60px 0;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-title {
        font-size: 1.35rem;
    }

    .service-subtitle {
        font-size: 0.85rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    /* Why Section */
    .why-section {
        padding: 60px 0;
    }

    .why-desc {
        font-size: 1rem;
    }

    .why-list li {
        font-size: 0.95rem;
    }

    .why-conclusion {
        font-size: 1rem;
    }

    .placeholder-image svg {
        height: 300px;
    }

    /* CTA Section */
    .cta-section {
        padding: 48px 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-features {
        font-size: 0.85rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        padding: 11px 24px;
        font-size: 0.9rem;
    }
}

/* === VERY SMALL MOBILE (360px and below) === */
@media (max-width: 360px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 24px 16px;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* === LARGE DESKTOP (1400px and above) === */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}