/* =============================================
   HAMBURGER MENU STYLES (visible only on mobile)
   ============================================= */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-btn:active {
    transform: scale(0.92);
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger-btn.active {
    background: rgba(119, 0, 204, 0.15);
    border-color: rgba(119, 0, 204, 0.3);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MOBILE DROPDOWN MENU
   ============================================= */
.mobile-dropdown {
    display: none;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
}

/* Mobile Back Button — hidden on desktop */
.mobile-back-btn,
.mobile-back-placeholder {
    display: none;
}

/* =============================================
   MOBILE BREAKPOINT — 768px and below
   ============================================= */
@media (max-width: 768px) {

    /* ---- Global Resets ---- */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* ---- TOP SOCIAL BAR ---- */
    .top-social-inner {
        justify-content: center;
    }
    .top-social-text {
        display: none;
    }
    .top-social-icons {
        gap: 1.5rem;
    }
    .top-social-icon svg {
        width: 16px;
        height: 16px;
    }

    /* ---- Animated Background Mobile Optimization ---- */
    .hero-orb--1 { width: 250px; height: 250px; }
    .hero-orb--2 { width: 200px; height: 200px; }
    .hero-orb--3 { width: 180px; height: 180px; }
    .hero-orb--4 { width: 130px; height: 130px; }

    /* ---- NAVBAR ---- */
    .hamburger-btn {
        display: flex;
    }

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

    .mobile-back-placeholder {
        display: block;
    }

    .navbar {
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0 !important;
        gap: 0 !important;
        position: relative;
    }

    /* Center FLOVIX logo on mobile */
    .navbar-logo {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Back button (left side) */
    .mobile-back-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        z-index: 2;
        flex-shrink: 0;
    }

    .mobile-back-btn:active {
        transform: scale(0.9);
        background: rgba(119, 0, 204, 0.15);
        border-color: rgba(119, 0, 204, 0.3);
    }

    /* Placeholder to keep spacing when no back button */
    .mobile-back-placeholder {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    /* Hide desktop nav links & CTA on mobile */
    #desktop-nav-links,
    .navbar-actions {
        display: none !important;
    }

    /* ---- MOBILE DROPDOWN ---- */
    .mobile-dropdown {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        background: rgba(13, 20, 43, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(119, 0, 204, 0);
        transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    border-color 0.4s ease;
    }

    .mobile-dropdown.open {
        max-height: 500px;
        border-bottom: 1px solid rgba(119, 0, 204, 0.25);
    }

    .mobile-dropdown-inner {
        padding: 0.5rem 1.25rem 1.25rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    /* Individual mobile nav links — always visible, clearly clickable */
    .mobile-nav-link {
        display: flex;
        align-items: center;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        border-radius: 10px;
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .mobile-nav-link:active {
        background: rgba(119, 0, 204, 0.12);
        border-color: rgba(119, 0, 204, 0.2);
        color: #fff;
    }

    /* Active page link — highlighted */
    .mobile-nav-link.active {
        color: #fff;
        font-weight: 600;
        background: rgba(119, 0, 204, 0.1);
        border-color: rgba(119, 0, 204, 0.25);
    }

    .mobile-nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 55%;
        background: linear-gradient(180deg, #7700cc, #a855f7);
        border-radius: 4px;
    }

    /* CTA button in dropdown */
    .mobile-dropdown-cta {
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mobile-cta-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }

    /* Mobile Overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.35);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* ---- HEADER STICKY GLASS ---- */
    #global-header {
        background: rgba(13, 20, 43, 0.92) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }

    /* ---- HERO SECTION ---- */
    .hero-section {
        padding: var(--spacing-md) 0 var(--spacing-sm) 0 !important;
        margin-top: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-pill {
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1rem !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
        text-align: center !important;
        letter-spacing: -1px !important;
        line-height: 1.15 !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0.75rem auto 1.25rem auto !important;
        max-width: 100% !important;
        line-height: 1.55 !important;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        padding: 0 !important;
        justify-content: center !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.9rem !important;
        text-align: center;
        justify-content: center;
    }

    /* ---- HERO SPLIT (Home Page) ---- */
    .hero-split-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 1.5rem 0 2rem 0 !important;
    }

    .hero-text-block {
        text-align: center;
    }

    .hero-text-block .hero-title {
        text-align: center !important;
    }

    .hero-text-block .hero-subtitle {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-text-block .hero-actions {
        justify-content: center !important;
        align-items: center;
    }

    /* ---- HERO STAT CARDS ---- */
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .hero-stat-card {
        padding: 1.15rem 1rem !important;
        border-radius: 12px !important;
    }

    .hero-stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-stat-icon {
        margin-bottom: 0.75rem !important;
    }

    .hero-stat-value {
        font-size: 1.5rem !important;
        letter-spacing: -0.5px !important;
    }

    .hero-stat-label {
        font-size: 0.55rem !important;
        letter-spacing: 0.5px !important;
    }

    /* ---- SECTION HEADERS ---- */
    .section-header {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }

    .section-label {
        font-size: 0.7rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.25 !important;
        max-width: 100% !important;
    }

    .section-title br {
        display: none;
    }

    /* ---- SERVICE MARQUEE (Home Core Expertise) ---- */
    .service-marquee-container {
        margin: 0 -1.25rem;
        border-radius: 0 !important;
    }

    .service-marquee-track .tech-card {
        width: 260px !important;
        min-width: 260px !important;
    }

    .tech-card .card-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .tech-card .card-title {
        font-size: 0.9rem !important;
    }

    .tech-card .card-description {
        font-size: 0.6rem !important;
    }

    /* ---- FEATURED PROJECT SECTION ---- */
    .featured-project-section {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        padding: 1.5rem !important;
        gap: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }

    .featured-project-section .section-title {
        font-size: 1.5rem !important;
        margin: 0.75rem 0 !important;
    }

    .featured-project-section .hero-subtitle {
        font-size: 0.85rem !important;
        text-align: left !important;
    }

    .featured-project-image {
        border-radius: 10px !important;
        width: 100%;
    }

    .feature-check-list li {
        font-size: 0.85rem !important;
        padding-left: 28px !important;
        margin-bottom: 12px !important;
    }

    .feature-check-list li svg {
        width: 16px;
        height: 16px;
    }

    .link-arrow {
        font-size: 0.85rem !important;
    }

    /* ---- SERVICES PAGE ---- */
    .services-stacked-grid {
        gap: 3rem !important;
    }

    .service-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-row-title {
        font-size: 1.65rem !important;
        text-align: center;
    }

    .service-row-desc {
        font-size: 0.9rem !important;
        text-align: center;
        line-height: 1.6;
    }

    .service-content {
        text-align: center;
    }

    .service-content .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .service-image {
        order: -1 !important;
        border-radius: 12px !important;
        overflow: hidden;
    }

    .service-image img {
        aspect-ratio: 16 / 10 !important;
        border-radius: 12px;
        width: 100%;
        object-fit: cover;
    }

    .service-image-overlay {
        padding: 1rem 1.25rem !important;
        border-radius: 0 0 12px 12px !important;
    }

    .service-image-label {
        font-size: 0.9rem !important;
    }

    .service-subtopics li {
        font-size: 0.85rem !important;
        padding: 0.85rem 4px !important;
    }

    /* ---- SCROLL REVEAL Mobile ---- */
    .scroll-reveal {
        transform: translateY(25px);
    }

    /* ---- BRAND SECTION (Marquee) ---- */
    .brand-section {
        margin: 2rem 0 !important;
        padding: 2rem 0 !important;
    }

    .brand-section-header {
        font-size: 0.65rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 1.5rem !important;
    }

    .marquee-logo {
        width: 180px !important;
    }

    .marquee-logo svg {
        height: 28px !important;
    }

    /* ---- TESTIMONIAL SECTION (Home) ---- */
    .container > div[style*="display: flex"][style*="gap: 4rem"] {
        flex-direction: column !important;
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }

    /* Testimonial left summary stats */
    .container > div[style*="display: flex"][style*="gap: 4rem"] > div[style*="flex: 1 1 300px"] {
        max-width: 100% !important;
        padding: 2rem 1.5rem !important;
    }

    .container > div[style*="display: flex"][style*="gap: 4rem"] > div[style*="flex: 1 1 300px"] > div:first-child {
        font-size: 3.5rem !important;
    }

    /* Testimonial right content */
    .container > div[style*="display: flex"][style*="gap: 4rem"] > div[style*="flex: 2 1 500px"] {
        padding: 0.5rem 0 !important;
    }

    #ts-company {
        font-size: 1.3rem !important;
    }

    #ts-text {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.5rem !important;
    }

    #ts-author {
        font-size: 1rem !important;
    }

    #ts-title {
        font-size: 0.8rem !important;
    }

    /* Testimonial dots */
    .ts-dot {
        width: 10px !important;
        height: 10px !important;
    }

    /* ---- SERVICES PAGE ---- */
    .services-stacked-grid {
        gap: 3rem !important;
    }

    .service-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-row-title {
        font-size: 1.65rem !important;
        text-align: center;
    }

    .service-row-desc {
        font-size: 0.9rem !important;
        text-align: center;
        line-height: 1.6;
    }

    .service-content {
        text-align: center;
    }

    .service-content .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .service-image {
        order: -1 !important;
    }

    .service-image img {
        aspect-ratio: 16 / 10 !important;
        border-radius: 10px;
    }

    .service-subtopics li {
        font-size: 0.85rem !important;
        padding: 0.85rem 4px !important;
    }

    /* ---- PORTFOLIO PAGE ---- */
    .portfolio-filter-row {
        gap: 0.5rem !important;
        margin-top: 1.5rem !important;
    }

    .portfolio-filter-btn {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.9rem !important;
    }

    .portfolio-project-card .card-image {
        height: 200px !important;
    }

    /* ---- ABOUT PAGE ---- */
    .mv-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .mv-card {
        padding: 2rem 1.5rem !important;
    }

    .mv-icon-circle {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 1rem !important;
    }

    .mv-title {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
    }

    .mv-desc {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    .about-marquee-track span {
        font-size: 0.85rem !important;
        margin: 0 1.5rem !important;
    }

    .tech-dna-title {
        font-size: 1.8rem !important;
    }

    .tech-dna-subtitle {
        font-size: 0.9rem !important;
    }

    .tech-badge {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    /* ---- CONTACT PAGE ---- */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-form-container {
        padding: 1.75rem 1.25rem !important;
    }

    .contact-form-container h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }

    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .form-group {
        margin-bottom: 1.25rem !important;
    }

    .form-control {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .btn-accent {
        padding: 0.85rem !important;
        font-size: 0.9rem !important;
    }

    .contact-info-card {
        padding: 1.25rem 1.25rem !important;
        gap: 1rem !important;
    }

    .contact-info-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-info-text .label {
        font-size: 0.7rem !important;
    }

    .contact-info-text .value {
        font-size: 0.95rem !important;
    }

    .map-placeholder {
        height: 180px !important;
        min-height: 180px !important;
    }

    /* ---- PRICING PAGE ---- */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
    }

    .pricing-card {
        padding: 2rem 1.5rem !important;
    }

    .pricing-card.popular {
        transform: none !important;
        z-index: auto !important;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px) !important;
    }

    .pricing-title {
        font-size: 1.15rem !important;
    }

    .pricing-price {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .pricing-features li {
        font-size: 0.85rem !important;
        gap: 10px !important;
        margin-bottom: 0.75rem !important;
    }

    .pricing-check {
        width: 18px !important;
        height: 18px !important;
    }

    .pricing-badge {
        font-size: 0.65rem !important;
        padding: 5px 16px !important;
    }

    /* ---- BENTO GRID (Home Services) ---- */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .bento-wide,
    .bento-narrow {
        grid-column: span 1 !important;
    }

    /* ---- METHODOLOGY SECTION ---- */
    .methodology-title {
        font-size: 1.6rem !important;
    }

    .methodology-subtitle {
        font-size: 0.9rem !important;
    }

    .methodology-steps {
        gap: 1.5rem !important;
    }

    .step-title {
        font-size: 1rem !important;
    }

    .step-desc {
        font-size: 0.8rem !important;
    }

    /* ---- STATS BANNER ---- */
    .stats-banner {
        padding: 2rem 1.25rem !important;
        gap: 1.5rem !important;
        margin: 2rem 0 !important;
    }

    .stats-banner-title {
        font-size: 1.6rem !important;
    }

    .stats-banner-desc {
        font-size: 0.85rem !important;
    }

    .stat-number {
        font-size: 2.25rem !important;
    }

    .stat-label {
        font-size: 0.65rem !important;
    }

    /* ---- TECH DNA GRID (About) ---- */
    .tech-dna-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .tech-card {
        padding: 1rem !important;
    }

    .tech-card .card-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .tech-card .card-title {
        font-size: 0.85rem !important;
    }

    /* ---- TEAM SECTION ---- */
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .team-title {
        font-size: 1.6rem !important;
    }

    .team-card .card-image img {
        aspect-ratio: 4 / 3 !important;
    }

    /* ---- CTA BANNERS ---- */
    .bottom-cta-banner {
        padding: 2.5rem 1.25rem !important;
        margin: 2rem 0 !important;
    }

    .cta-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .cta-title br {
        display: none;
    }

    .cta-subtitle {
        font-size: 0.9rem !important;
        max-width: 100% !important;
    }

    /* ---- CARDS (General) ---- */
    .geometric-card {
        padding: 1.25rem !important;
    }

    .card-title {
        font-size: 1.1rem !important;
    }

    .card-description {
        font-size: 0.8rem !important;
    }

    .card-image img {
        border-radius: 8px 8px 0 0 !important;
    }

    /* ---- FOOTER ---- */
    .footer {
        padding-top: 2.5rem !important;
        margin-top: 2rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .brand-col {
        grid-column: span 1 !important;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.15rem !important;
    }

    .footer-desc {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-heading {
        font-size: 0.75rem !important;
    }

    .footer-link {
        font-size: 0.7rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: center;
        font-size: 0.6rem !important;
    }

    /* ---- GLOBAL BUTTONS ---- */
    .btn {
        font-size: 0.85rem !important;
        padding: 0.7rem 1.25rem !important;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem !important;
    }

    .btn-outline {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
    }

    /* ---- TESTIMONIAL GRID (if used) ---- */
    .testimonial-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 1rem !important;
    }

    .testimonial-card {
        padding: 1.25rem !important;
    }

    .testimonial-text {
        font-size: 0.85rem !important;
    }

    .testimonial-title {
        font-size: 1.1rem !important;
        letter-spacing: 2px !important;
    }

    /* ---- IMAGE SCALING ---- */
    img {
        max-width: 100%;
        height: auto;
    }

    /* ---- SMOOTH SCROLL ---- */
    html {
        scroll-behavior: smooth;
    }
}

/* =============================================
   EXTRA SMALL DEVICES — 480px and below
   ============================================= */
@media (max-width: 480px) {

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.55rem !important;
        letter-spacing: -0.5px !important;
    }

    .hero-subtitle {
        font-size: 0.82rem !important;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }

    .hero-stat-card {
        padding: 0.9rem 0.75rem !important;
    }

    .hero-stat-value {
        font-size: 1.3rem !important;
    }

    .hero-stat-label {
        font-size: 0.5rem !important;
    }

    .section-title {
        font-size: 1.35rem !important;
    }

    .service-marquee-track .tech-card {
        width: 230px !important;
        min-width: 230px !important;
    }

    .featured-project-section .section-title {
        font-size: 1.3rem !important;
    }

    .cta-title {
        font-size: 1.35rem !important;
    }

    .pricing-price {
        font-size: 1.75rem !important;
    }

    .stats-banner-title {
        font-size: 1.35rem !important;
    }

    .stat-number {
        font-size: 1.85rem !important;
    }

    .contact-form-container {
        padding: 1.5rem 1rem !important;
    }

    #ts-text {
        font-size: 0.85rem !important;
    }

    .mv-card {
        padding: 1.5rem 1.25rem !important;
    }

    .mv-title {
        font-size: 1.35rem !important;
    }

    .footer-grid {
        gap: 1.5rem !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    .brand-col {
        grid-column: span 3 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .brand-col .footer-socials {
        justify-content: center;
    }

    .bottom-cta-banner {
        padding: 2rem 1rem !important;
    }
}

/* =============================================
   MEDIUM DEVICES — 769px to 1024px (Tablet)
   ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-split-section {
        gap: 2rem;
    }

    .hero-stat-value {
        font-size: 1.8rem;
    }

    .service-row {
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 90%;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
