/* ============================================
   FoodShop Landing Page - Clean & Bold
   https://foodshop.biz
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #E85D04;
    --color-primary-light: #FFF4ED;
    --color-success: #059669;
    --color-success-light: #D1FAE5;
    --color-warning: #D97706;
    --color-warning-light: #FEF3C7;
    --color-purple: #7C3AED;
    --color-purple-light: #EDE9FE;

    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-text-muted: #9CA3AF;

    --color-bg: #FAFAFA;
    --color-white: #FFFFFF;
    --color-border: #E5E7EB;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

    --container-max: 900px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    padding: 1rem 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
}

.header-tagline {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
    display: none;
}

@media (min-width: 600px) {
    .header-tagline {
        display: block;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 2.5rem 0 3rem;
    background: var(--color-white);
    flex: 1;
}

/* Audience Tags - At Top */
.audience-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
}

/* Hero Content */
.hero-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
    position: relative;
    padding-left: 1.2rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ============================================
   Teaser Cards
   ============================================ */
.teasers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.teaser-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.teaser-profit {
    border-color: #FDBA74;
    background: #FFF7ED;
}

.teaser-down {
    border-color: #86EFAC;
    background: #F0FDF4;
}

.teaser-ai {
    border-color: #C4B5FD;
    background: #F5F3FF;
}

.teaser-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.teaser-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.teaser-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.teaser-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    transition: opacity 0.3s ease;
    line-height: 1.3;
}

/* Mobile: Stack teasers */
@media (max-width: 700px) {
    .teasers {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA / Form Section
   ============================================ */
.cta-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.form-wrapper {
    background: var(--color-white);
    border: 2px solid var(--color-text);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 100%;
    text-align: center;
    box-shadow: 4px 4px 0 var(--color-text);
}

.form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.form-wrapper > p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.social-proof {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.social-proof span {
    color: var(--color-primary);
    font-weight: 700;
}

.trust-line {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
}

/* HubSpot Form Override */
.hs-form-frame {
    width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 2rem 0;
    background: var(--color-text);
    color: var(--color-white);
    text-align: center;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer .logo-text {
    color: var(--color-white);
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 600px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

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

    .form-wrapper {
        padding: 1.5rem;
    }

    .teasers {
        margin-bottom: 2rem;
    }

    .audience-tags {
        gap: 0.4rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

/* ============================================
   Animations
   ============================================ */
.audience-tags {
    animation: fadeInUp 0.5s ease-out;
}

.hero-content {
    animation: fadeInUp 0.5s ease-out 0.05s both;
}

.teasers {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.cta-section {
    animation: fadeInUp 0.5s ease-out 0.15s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
