/* ============================================================
   TechGiveaway - Responsive Breakpoints
   Tablet: 768px+ | Desktop: 1024px+ | Large: 1280px+
   ============================================================ */

/* ============================================================
   TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {

    /* Header: horizontal nav */
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 4px;
        background: transparent;
    }

    .nav-menu a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero {
        padding: 64px 24px 56px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .countdown {
        gap: 16px;
    }

    .countdown__box {
        padding: 16px 20px;
        min-width: 80px;
    }

    .countdown__number {
        font-size: 2.5rem;
    }

    .countdown__label {
        font-size: 0.75rem;
    }

    /* Phone Grid: 2 columns */
    .phone-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Content sections */
    .content-section {
        padding: 36px 32px;
    }

    .content-section table {
        display: table;
    }

    /* Subscribe */
    .subscribe-form {
        flex-direction: row;
        max-width: 600px;
    }

    .subscribe-form input {
        flex: 1;
    }

    .subscribe-form button {
        white-space: nowrap;
    }

    /* Footer */
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        max-width: 300px;
    }

    .footer-links {
        flex-direction: row;
        gap: 40px;
    }

    /* Cookie banner: horizontal */
    .cookie-banner__inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .cookie-banner__buttons {
        flex-wrap: nowrap;
    }

    /* Page content */
    .page-content {
        padding: 40px 24px;
    }

    .page-content h1 {
        font-size: 2rem;
    }
}

/* ============================================================
   DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    /* Hero */
    .hero {
        padding: 80px 32px 72px;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .hero__subtitle {
        font-size: 1.15rem;
        max-width: 600px;
    }

    .countdown__box {
        padding: 18px 24px;
        min-width: 90px;
    }

    .countdown__number {
        font-size: 3rem;
    }

    /* Phone Grid: 3 columns */
    .phone-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Content: comfortable reading width */
    .content-section {
        padding: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer: 4 link columns */
    .footer-links {
        gap: 48px;
    }
}

/* ============================================================
   LARGE DESKTOP (1280px+)
   ============================================================ */
@media (min-width: 1280px) {

    /* Hero */
    .hero__title {
        font-size: 3.2rem;
    }

    .countdown__number {
        font-size: 3.5rem;
    }

    .countdown__box {
        min-width: 100px;
    }

    /* Phone Grid: 4 columns */
    .phone-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================================
   EXTRA SMALL (below 360px safety)
   ============================================================ */
@media (max-width: 359px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .countdown {
        gap: 6px;
    }

    .countdown__box {
        padding: 8px 10px;
        min-width: 55px;
    }

    .countdown__number {
        font-size: 1.6rem;
    }

    .trust-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}