/* WiFeed Landing Page */

/* ========== VARIABLES ========== */
:root {
    --deep-teal: #0D1B1E;
    --vibrant-green: #148a3f;
    --soft-gold: #D4A853;
    --warm-white: #F8F6F1;
    --pure-white: #FFFFFF;
    --text-primary: #0D1B1E;
    --text-secondary: #5A6B6E;
    --text-light: #8A9A9D;
    --green-glow: rgba(29, 185, 84, 0.3);
    --shadow-sm: 0 10px 40px rgba(13, 27, 30, 0.06);
    --shadow-md: 0 20px 40px rgba(13, 27, 30, 0.1);
    --shadow-lg: 0 40px 80px rgba(13, 27, 30, 0.15);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 100px;
    --transition: 0.3s ease;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--warm-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========== LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== COMPONENTS ========== */
.badge {
    display: inline-block;
    background: var(--vibrant-green);
    color: var(--pure-white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.badge-light {
    background: rgba(29, 185, 84, 0.1);
    color: var(--vibrant-green);
}

.badge-gold {
    background: var(--soft-gold);
    color: var(--deep-teal);
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--vibrant-green);
    color: var(--pure-white);
    padding: 16px 32px;
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    margin-top: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    color: var(--deep-teal);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 27, 30, 0.05);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-cta {
    background: var(--deep-teal);
    color: var(--pure-white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--vibrant-green);
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--pure-white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--deep-teal);
}

.hero h1 .highlight {
    color: var(--vibrant-green);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.shipping-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-badges {
    display: flex;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--vibrant-green);
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ========== PROBLEMS ========== */
.problems {
    padding: 100px 0;
    background: var(--pure-white);
}

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

.problem-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    transition: transform var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-icon .lucide-icon {
    width: 48px;
    height: 48px;
    color: var(--vibrant-green);
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--deep-teal);
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== SOLUTION ========== */
.solution {
    padding: 100px 0;
    background: var(--deep-teal);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.solution-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.solution-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--pure-white);
}

/* ========== FEATURES ========== */
.features {
    padding: 100px 0;
    background: var(--pure-white);
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--deep-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--pure-white);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--deep-teal);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: var(--warm-white);
}

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

.testimonial-card {
    background: var(--pure-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--soft-gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--vibrant-green);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--deep-teal);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== TRUSTED BY ========== */
.trusted-by {
    padding: 80px 0;
    background: var(--deep-teal);
}

.trusted-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--vibrant-green);
    margin-bottom: 8px;
}

.trusted-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    background: var(--pure-white);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-height: 50px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 100px 0;
    background: var(--pure-white);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--vibrant-green);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--deep-teal);
}

.step p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-light);
    padding-top: 20px;
}

/* ========== PREORDER ========== */
.preorder {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-teal) 0%, #142628 100%);
}

.preorder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.preorder-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.preorder-text > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--pure-white);
    letter-spacing: -2px;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--vibrant-green);
    margin-top: 4px;
}

.guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.preorder-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    padding: 60px 0 40px;
    background: var(--deep-teal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo .logo-text {
    height: 28px;
    filter: brightness(0) invert(1);
}

.footer-brand .logo .logo-icon {
    height: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--vibrant-green);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--vibrant-green);
    color: var(--pure-white);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 30, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 20px;
}

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

.modal {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    max-width: 440px;
    width: 100%;
    padding: 40px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--warm-white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: var(--deep-teal);
    color: var(--pure-white);
}

.modal-content h3,
.modal-success h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--deep-teal);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-content > p,
.modal-success > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(13, 27, 30, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--warm-white);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--vibrant-green);
    background: var(--pure-white);
}

.form-group input::placeholder {
    color: var(--text-light);
}

/* Modal Success State */
.modal-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--vibrant-green);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

.modal-success h3 {
    margin-bottom: 12px;
}

.modal-success .btn {
    margin-top: 24px;
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

    .solution-grid,
    .preorder-content {
        gap: 50px;
    }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 26px;
    }

    .nav-cta {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero {
        padding: 100px 0 50px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        border-radius: var(--radius-md);
        box-shadow: 0 20px 40px rgba(13, 27, 30, 0.12);
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .problems,
    .features,
    .testimonials,
    .how-it-works {
        padding: 60px 0;
    }

    .solution,
    .preorder {
        padding: 60px 0;
    }

    /* Problems */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card {
        padding: 28px 24px;
        border-radius: var(--radius-md);
    }

    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

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

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

    /* Solution */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solution-image {
        order: -1;
    }

    .solution-image img {
        border-radius: var(--radius-md);
    }

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

    .solution-content h2 {
        font-size: 1.75rem;
    }

    .solution-content > p {
        font-size: 1rem;
    }

    .solution-list {
        text-align: left;
        max-width: 320px;
        margin: 0 auto;
    }

    .solution-list li {
        font-size: 0.95rem;
        gap: 12px;
    }

    .solution-list li svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-sm);
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
        border-radius: var(--radius-md);
    }

    .testimonial-card > p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Trusted By */
    .trusted-by {
        padding: 50px 0;
    }

    .trusted-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .trusted-logos {
        gap: 20px;
    }

    .logo-item {
        padding: 12px 16px;
        border-radius: 10px;
    }

    .logo-item img {
        max-height: 40px;
        max-width: 120px;
    }

    /* How It Works */
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step {
        max-width: 100%;
        padding: 0 20px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .step h3 {
        font-size: 1.15rem;
    }

    .step p {
        font-size: 0.95rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        padding: 8px 0;
    }

    /* Preorder */
    .preorder-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .preorder-image {
        order: -1;
    }

    .preorder-image img {
        border-radius: var(--radius-md);
    }

    .preorder-text {
        text-align: center;
    }

    .preorder-text h2 {
        font-size: 1.75rem;
    }

    .preorder-text > p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .price-box {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .price {
        text-align: center;
    }

    .price-amount {
        font-size: 3rem;
    }

    .btn-large {
        width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .guarantees {
        justify-content: center;
        gap: 16px;
    }

    .guarantee {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 32px;
    }

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand .logo .logo-icon {
        height: 40px;
    }

    .footer-brand .logo .logo-text {
        height: 24px;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a svg {
        width: 20px;
        height: 20px;
    }

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

    .footer-bottom p {
        font-size: 0.85rem;
    }

    /* Modal */
    .modal {
        padding: 32px 24px;
        border-radius: var(--radius-lg);
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content h3,
    .modal-success h3 {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* ========== RESPONSIVE: SMALL MOBILE ========== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

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

    .trusted-title {
        font-size: 1.3rem;
    }

    .trusted-logos {
        gap: 16px;
    }

    .logo-item {
        padding: 10px 14px;
    }

    .logo-item img {
        max-height: 32px;
        max-width: 100px;
    }

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

    .feature-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }

    .feature-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .feature-card h3 {
        margin-bottom: 4px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .guarantees {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .solution-content h2,
    .preorder-text h2 {
        font-size: 1.5rem;
    }
}

/* ========== TOUCH DEVICES ========== */
@media (hover: none) and (pointer: coarse) {
    .problem-card:hover,
    .feature-card:hover,
    .btn-primary:hover,
    .nav-cta:hover {
        transform: none;
    }

    .btn-primary:active {
        transform: scale(0.98);
    }

    .nav-cta:active {
        background: var(--vibrant-green);
    }
}
