/* =============================================
   YumTruck — yt.css
   Food Truck Tracker & Review Site
   ============================================= */

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

:root {
    --primary:    #FF6B35;
    --primary-dk: #E55520;
    --accent:     #FFD166;
    --dark:       #12111A;
    --dark-2:     #1E1D2B;
    --dark-3:     #2A293A;
    --text:       #2D2D3A;
    --text-muted: #6B6B80;
    --border:     #EBEBF0;
    --white:      #FFFFFF;
    --success:    #06D6A0;
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
    --shadow-md:  0 6px 24px rgba(0,0,0,.10);
    --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
    --transition: .22s cubic-bezier(.4,0,.2,1);
    --font-head:  'Poppins', sans-serif;
    --font-body:  'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .92rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,.35); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }

/* ---------- SECTION SHARED ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-tag {
    display: inline-block;
    background: rgba(255,107,53,.1);
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.section-sub {
    margin-top: 10px;
    color: var(--text-muted);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.text-accent { color: var(--primary); }

/* =============================================
   HEADER / NAV
   ============================================= */
.yt-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.yt-header.scrolled { box-shadow: var(--shadow-sm); }

.yt-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.yt-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}
.logo-accent { color: var(--primary); }

.yt-nav-links {
    display: flex;
    gap: 28px;
    margin: 0 auto;
}
.yt-nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}
.yt-nav-links a:hover { color: var(--primary); }

.yt-nav-actions { display: flex; gap: 10px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.yt-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    position: relative;
}

.hero-bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; right: -100px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--accent);
    bottom: -100px; left: -80px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,209,102,.15);
    border: 1px solid rgba(255,209,102,.4);
    color: #B8740A;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: #FFD166; border-radius: 50%; animation: pulse 1.5s ease infinite; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .7; }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-search {
    display: flex;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 180px;
    padding: 0 8px;
}
.search-icon { font-size: 1rem; }
.search-input-wrap input {
    border: none;
    outline: none;
    font-size: .95rem;
    color: var(--text);
    width: 100%;
    background: transparent;
}
.search-input-wrap input::placeholder { color: var(--text-muted); }

.search-filter-wrap select {
    border: none;
    border-left: 1.5px solid var(--border);
    outline: none;
    padding: 8px 12px;
    font-size: .88rem;
    color: var(--text);
    background: transparent;
    cursor: pointer;
}

.btn-search { border-radius: calc(var(--radius-md) - 4px); }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-item strong { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.stat-item span { font-size: .78rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-map-card {
    width: 340px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
    font-weight: 500;
}

.pulse-dot {
    width: 10px; height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
    flex-shrink: 0;
}

.map-placeholder {
    height: 220px;
    background: #f0f2f8;
    background-image:
        linear-gradient(rgba(180,190,210,.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180,190,210,.3) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,107,53,.06) 0%, transparent 70%);
}

.map-pin {
    position: absolute;
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform .2s;
}
.map-pin:hover { transform: scale(1.2) !important; }
.pin-1 { top: 30%; left: 25%; animation-delay: 0s; }
.pin-2 { top: 55%; left: 60%; animation-delay: .6s; }
.pin-3 { top: 20%; left: 65%; animation-delay: 1.2s; }
.pin-4 { top: 65%; left: 30%; animation-delay: 1.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.map-footer {
    padding: 12px 18px;
    font-size: .82rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    background: var(--white);
}

/* =============================================
   TRACKER SECTION
   ============================================= */
.yt-tracker {
    padding: 96px 0;
    background: #FAFAFA;
}

.tracker-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    justify-content: center;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 99px;
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tracker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Truck Card */
.truck-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    cursor: pointer;
}
.truck-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }

.truck-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.truck-emoji {
    width: 52px; height: 52px;
    background: rgba(255,107,53,.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.truck-info { flex: 1; min-width: 0; }
.truck-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truck-cuisine {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.truck-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .74rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
}
.status-open { background: rgba(6,214,160,.12); color: #059370; }
.status-busy { background: rgba(255,209,102,.15); color: #B8740A; }
.status-closed { background: rgba(100,100,120,.1); color: var(--text-muted); }

.truck-card-meta {
    display: flex;
    gap: 16px;
    font-size: .8rem;
    color: var(--text-muted);
}
.truck-meta-item { display: flex; align-items: center; gap: 4px; }

.truck-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}
.stars { color: #FFD166; font-size: .9rem; letter-spacing: -.5px; }
.rating-num { font-weight: 600; font-size: .85rem; color: var(--dark); }
.rating-count { font-size: .78rem; color: var(--text-muted); }

.truck-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.track-btn {
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-head);
    transition: var(--transition);
}
.track-btn:hover { color: var(--primary-dk); }

/* =============================================
   FEATURED TRUCKS
   ============================================= */
.yt-featured { padding: 96px 0; }

.cuisine-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-chip {
    padding: 8px 20px;
    border-radius: 99px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.filter-chip.active, .filter-chip:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* Featured Card */
.feat-card {
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }

.feat-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.feat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.feat-card-body {
    padding: 18px 20px;
}
.feat-card-body .truck-name { font-size: 1.05rem; margin-bottom: 4px; }
.feat-card-body .truck-cuisine { margin-bottom: 10px; }

.feat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    background: #FAFAFA;
}
.feat-price { font-size: .85rem; color: var(--text-muted); }
.feat-price strong { color: var(--dark); font-weight: 700; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.yt-how {
    padding: 96px 0;
    background: var(--dark);
}
.yt-how .section-tag { background: rgba(255,107,53,.2); }
.yt-how .section-title { color: var(--white); }

.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    transition: var(--transition);
}
.step-card:hover { background: var(--dark-3); transform: translateY(-4px); }

.step-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,107,53,.15);
    line-height: 1;
    margin-bottom: 12px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; }
.step-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.step-card p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; }

.step-connector {
    width: 48px;
    flex-shrink: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-top: 80px;
    opacity: .5;
}

/* =============================================
   REVIEWS
   ============================================= */
.yt-reviews { padding: 96px 0; background: #FAFAFA; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-sm); }

.review-header { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--dark); }
.review-truck { font-size: .78rem; color: var(--primary); font-weight: 500; }

.review-stars { color: #FFD166; font-size: 1rem; }

.review-text {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.review-date { font-size: .75rem; color: var(--text-muted); }

.review-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.review-cta p { color: var(--text-muted); font-size: .95rem; }

/* =============================================
   MODAL
   ============================================= */
.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.yt-modal.open { opacity: 1; pointer-events: all; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18,17,26,.6);
    backdrop-filter: blur(4px);
}
.modal-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform var(--transition);
}
.yt-modal.open .modal-card { transform: translateY(0); }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.modal-header h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
}
.modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text);
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { background: var(--primary); color: var(--white); }

.review-form { padding: 24px; display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .9rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

/* Star Picker */
.star-picker {
    display: flex;
    gap: 4px;
}
.star {
    font-size: 2rem;
    color: var(--border);
    cursor: pointer;
    transition: color var(--transition), transform .15s;
}
.star.active { color: #FFD166; }
.star:hover { transform: scale(1.2); }

/* =============================================
   CTA BANNER
   ============================================= */
.yt-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #E53E3E 100%);
    padding: 72px 0;
}
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,.8); font-size: .95rem; max-width: 400px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.yt-footer {
    background: var(--dark);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-brand .yt-logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: var(--dark-3);
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
    font-style: normal;
}
.social-link:hover { background: var(--primary); color: var(--white); }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }

.footer-newsletter-text {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 12px;
    line-height: 1.5;
}
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1;
    background: var(--dark-3);
    border: 1px solid var(--dark-3);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: var(--primary); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--dark-3);
    font-size: .8rem;
    color: rgba(255,255,255,.3);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* =============================================
   TOAST
   ============================================= */
.yt-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 99px;
    font-size: .88rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    z-index: 300;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
}
.yt-toast.show { transform: translateX(-50%) translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .yt-nav-links, .yt-nav-actions { display: none; }
    .hamburger { display: flex; }

    .yt-nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        gap: 16px;
        z-index: 99;
    }
    .yt-nav-links.open + .yt-nav-actions {
        display: flex;
        position: fixed;
        top: 220px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        gap: 10px;
        z-index: 99;
    }

    .yt-hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }

    .how-steps { flex-direction: column; }
    .step-connector { width: 2px; height: 40px; margin: 0 auto; }

    .cta-content { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

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

@media (max-width: 480px) {
    .hero-search { flex-direction: column; }
    .search-filter-wrap select { border-left: none; border-top: 1.5px solid var(--border); }
    .tracker-tabs { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
}
