/* ============================================
   AMERICAN GARAGE — Rebranded Styles
   Color Palette (Red/Black/White):
     Primary Red: #C41E3A
     Dark Red:    #8B0000
     Black:       #1A1A1A
     Dark:        #2D2D2D
     White:       #FFFFFF
     Light:       #F7F7F7
     Text:        #1A1A1A
     Muted:       #666666
     Gold Accent: #D4A843 (retained for CTAs)
   ============================================ */

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

:root {
  --primary: #C41E3A;
  --primary-dark: #8B0000;
  --primary-hover: #A01830;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --white: #FFFFFF;
  --light: #F7F7F7;
  --light-alt: #EFEFEF;
  --text: #1A1A1A;
  --text-muted: #666666;
  --text-light: #999999;
  --success: #27AE60;
  --gold: #D4A843;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.2; color: var(--black); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--black); color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius-sm);
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(196,30,58,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196,30,58,0.4); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,26,0.97); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--primary);
  padding: 0 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.15rem; color: var(--white); }
.logo-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 900; font-size: 1rem;
  border: 2px solid var(--white);
}
.nav-tagline { display: block; font-size: 0.7rem; color: var(--text-light); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #ccc; font-size: 0.95rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--primary) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); }

/* --- Hero Section --- */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 50%, var(--black) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,30,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(196,30,58,0.15); border: 1px solid rgba(196,30,58,0.3);
  color: #ff6b7a; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.08; margin-bottom: 20px; color: var(--white); }
.hero h1 .highlight { color: var(--primary); display: inline; }
.hero p { font-size: 1.2rem; color: #bbb; margin-bottom: 32px; max-width: 500px; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .number { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); }
.hero-stat .label { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }

/* --- Value Props --- */
.value-props .section-header { text-align: center; margin-bottom: 56px; }
.value-props .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.value-props .section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); text-align: center; transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--primary); }
.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* --- Before/After Section --- */
.before-after { padding: 80px 0; background: var(--black); color: var(--white); }
.before-after .section-header { text-align: center; margin-bottom: 48px; }
.before-after .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; color: var(--white); }
.before-after .section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.ba-card { text-align: center; }
.ba-image { min-height: 280px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.1); }
.ba-label { margin-top: 12px; font-weight: 600; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: var(--primary); }
.dot.green { background: var(--success); }

/* --- Buyback Highlight Section (NEW) --- */
.buyback-highlight { padding: 80px 0; background: var(--light); }
.buyback-highlight .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.buyback-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.buyback-content .amount { color: var(--primary); font-family: 'Sora', sans-serif; }
.buyback-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.buyback-content ul { margin-bottom: 24px; }
.buyback-content li { padding: 8px 0; font-size: 1rem; color: var(--text); display: flex; align-items: center; gap: 10px; }
.buyback-content li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.buyback-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* --- Social Proof --- */
.social-proof { padding: 80px 0; }
.social-proof .section-header { text-align: center; margin-bottom: 48px; }
.social-proof .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.social-proof .section-header p { font-size: 1.1rem; color: var(--text-muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); border-left: 4px solid var(--primary);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.95rem; }
.review-location { font-size: 0.85rem; color: var(--text-muted); }

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: 2.4rem; margin-bottom: 16px; color: var(--white); position: relative; }
.cta-banner p { font-size: 1.2rem; margin-bottom: 32px; opacity: 0.9; position: relative; }
.cta-banner .btn { position: relative; }

/* --- Service Area --- */
.service-area { padding: 80px 0; background: var(--light); }
.area-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.area-info h2 { font-size: 2rem; margin-bottom: 16px; }
.area-info p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.area-zips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-zip {
  background: var(--white); padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid var(--light-alt);
}

/* --- Footer --- */
.footer {
  background: var(--black); color: #ccc; padding: 64px 0 32px;
  border-top: 3px solid var(--primary);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }
.footer-tagline { color: var(--primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; font-weight: 600; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: #999; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; color: #999; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem; color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--primary); }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  border: none; font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(196,30,58,0.3);
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* --- Fade animations --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- About Page --- */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 100%);
  color: var(--white); text-align: center;
}
.about-hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 16px; }
.about-hero p { font-size: 1.2rem; color: #bbb; max-width: 600px; margin: 0 auto; }
.brand-badge-img { max-width: 320px; margin: 32px auto 0; border-radius: 50%; box-shadow: 0 8px 32px rgba(196,30,58,0.25); }

/* --- How It Works Page --- */
.steps { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.step-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); text-align: center; position: relative;
  border-top: 3px solid var(--primary);
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* --- Pricing Page --- */
.pricing-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 100%);
  color: var(--white); text-align: center;
}
.pricing-hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 12px; }
.pricing-hero p { font-size: 1.15rem; color: #bbb; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; padding: 60px 0; }
.pricing-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px;
  box-shadow: var(--shadow); text-align: center; transition: transform var(--transition);
  border: 2px solid transparent;
}
.pricing-card.featured { border-color: var(--primary); position: relative; }
.pricing-card.featured::after {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white); padding: 4px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--primary); margin: 16px 0; }
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-card ul { margin: 24px 0; text-align: left; }
.pricing-card li { padding: 8px 0; font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.pricing-card li::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* --- Contact --- */
.contact-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 100%);
  color: var(--white); text-align: center;
}
.contact-hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 12px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 60px 0; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 1rem; }
.contact-item .icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(196,30,58,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--light-alt); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: 16px; transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); outline: none; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* --- Work With Us --- */
.work-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 100%);
  color: var(--white); text-align: center;
}
.work-hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 12px; }
.work-hero p { font-size: 1.15rem; color: #bbb; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 60px 0; }
.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); text-align: center;
  border-top: 3px solid var(--primary);
}
.benefit-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.benefit-card p { font-size: 0.95rem; color: var(--text-muted); }

/* --- Sticker Kit --- */
.sticker-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 100%);
  color: var(--white); text-align: center;
}
.sticker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 60px 0; }
.sticker-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow); text-align: center;
}
.sticker-color { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px; }
.sticker-color.keep { background: #27AE60; }
.sticker-color.donate { background: #3498DB; }
.sticker-color.trash { background: var(--primary); }
.sticker-color.value { background: #F5A623; }

/* --- Customer/Contractor Portals --- */
.portal-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 100%);
  color: var(--white); text-align: center;
}
.portal-hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 12px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .buyback-highlight .container { grid-template-columns: 1fr; }
  .buyback-img { order: -1; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--black); padding: 24px; gap: 16px;
    border-bottom: 2px solid var(--primary);
    z-index: 1000;
  }
  .nav-links.open a { color: #ccc; font-size: 1.1rem; padding: 8px 0; }
  .nav-links.open a:hover { color: var(--white); }
  .nav-links.open .nav-cta { text-align: center; margin-top: 8px; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .value-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .area-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .sticker-grid { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 16px 32px; font-size: 1rem; }
}

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #2D2D2D 100%);
  color: var(--white); text-align: center;
}
.page-hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 1.15rem; color: #bbb; max-width: 600px; margin: 0 auto; }

/* --- Contact Section --- */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.contact-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.contact-form select {
  width: 100%; padding: 14px 18px; border: 2px solid var(--light-alt); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: 16px; background: var(--white);
  transition: border-color var(--transition);
}
.contact-form select:focus { border-color: var(--primary); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 0; }
.contact-icon { font-size: 1.5rem; min-width: 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }
.contact-item a { color: var(--primary); font-weight: 600; }
.contact-map {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--light); border-radius: var(--radius); padding: 32px; margin-top: 24px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ====== HOW IT WORKS PAGE ====== */

/* Sticker System */
.sticker-section { padding: 100px 0; }
.sticker-section .section-header { text-align: center; margin-bottom: 56px; }
.sticker-section .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.sticker-section .section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.sticker-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.sticker-card {
  padding: 36px 24px; text-align: center;
  border-radius: var(--radius);
  border: 2px solid;
  transition: all var(--transition);
}
.sticker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sticker-card.keep { border-color: #27AE60; background: rgba(39,174,96,0.04); }
.sticker-card.donate { border-color: #2980B9; background: rgba(41,128,185,0.04); }
.sticker-card.trash { border-color: #E74C3C; background: rgba(231,76,60,0.04); }
.sticker-card.review { border-color: #F39C12; background: rgba(243,156,18,0.04); }
.sticker-emoji { font-size: 3rem; margin-bottom: 16px; }
.sticker-label {
  font-size: 1.1rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
}
.sticker-card.keep .sticker-label { color: #27AE60; }
.sticker-card.donate .sticker-label { color: #2980B9; }
.sticker-card.trash .sticker-label { color: #E74C3C; }
.sticker-card.review .sticker-label { color: #F39C12; }
.sticker-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .sticker-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sticker-grid { grid-template-columns: 1fr; }
}

/* Timeline */
.timeline-section { background: var(--light); padding: 100px 0; }
.timeline-section .section-header { text-align: center; margin-bottom: 56px; }
.timeline-section .section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.timeline-section .section-header p { font-size: 1.1rem; color: var(--text-muted); }
.timeline {
  display: flex; gap: 0; position: relative;
  max-width: 1000px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; top: 48px; left: 0; right: 0;
  height: 3px; background: linear-gradient(to right, var(--primary), var(--black));
}
.timeline-step {
  flex: 1; text-align: center; position: relative; padding: 0 16px;
}
.timeline-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 900; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative; z-index: 2;
  box-shadow: 0 4px 12px rgba(196,30,58,0.3);
}
.timeline-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.timeline-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .timeline { flex-direction: column; gap: 40px; padding-left: 64px; }
  .timeline::before {
    top: 0; bottom: 0; left: 28px; right: auto;
    width: 3px; height: auto;
  }
  .timeline-step { text-align: left; padding: 0; }
  .timeline-num {
    position: absolute; left: -64px; margin: 0;
    width: 44px; height: 44px; font-size: 1.1rem;
  }
}

/* Buyback Section */
.buyback-section { padding: 100px 0; }
.buyback-content {
  display: flex; gap: 60px; align-items: center;
  max-width: 1000px; margin: 0 auto;
}
.buyback-text { flex: 1; }
.buyback-text h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.buyback-text > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.buyback-steps { margin: 28px 0; }
.buyback-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
}
.buyback-step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: var(--white);
}
.buyback-step-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.buyback-step-text p { font-size: 0.93rem; color: var(--text-muted); margin: 0; }
.buyback-visual {
  flex: 1;
  background: linear-gradient(135deg, rgba(196,30,58,0.08), rgba(26,26,26,0.04));
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.buyback-highlight-text {
  font-family: 'Sora', sans-serif;
  font-size: 3rem; font-weight: 900; color: var(--primary);
  margin-bottom: 8px;
}
.buyback-highlight-sub { color: var(--text-muted); font-size: 1rem; }

@media (max-width: 768px) {
  .buyback-content { flex-direction: column; gap: 40px; }
}

/* --- Responsive Image Swap (desktop vs mobile) --- */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}
