/* ============================================
   MUNCH NOW — GLOBAL STYLES
   Built by AllVia-AI | allvia-ai.com
   ============================================ */

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

:root {
  --orange: #F26522;
  --orange-dark: #d4541a;
  --orange-light: rgba(242,101,34,0.1);
  --purple: #5B2D8E;
  --purple-light: #7B4DB0;
  --cream: #FDF6EE;
  --cream-dark: #F5EDE0;
  --dark: #111111;
  --mid: #555555;
  --light: #999999;
  --white: #ffffff;
  --border: #EEEEEE;
  --fh: 'Sora', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --r: 16px;
  --rl: 24px;
  --max: 1280px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* ============ STICKY TOP ============ */
.sticky-top { position: sticky; top: 0; z-index: 1000; }

/* ============ ANNOUNCE BAR ============ */
.announce-bar {
  background: var(--orange); color: var(--white);
  text-align: center; padding: 11px 48px;
  font-family: var(--fh); font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  position: relative;
}
.announce-bar a { color: var(--white); text-decoration: underline; margin-left: 8px; }
.announce-close { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--white); cursor: pointer; font-size: 20px; line-height: 1; padding: 0 4px; }

/* ============ NAV ============ */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 70px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo { font-family: var(--fh); font-weight: 800; font-size: 22px; color: var(--orange); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo span { color: var(--dark); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--dark); text-decoration: none; white-space: nowrap; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-nav-manage { font-size: 14px; font-weight: 500; color: var(--mid); text-decoration: none; white-space: nowrap; transition: color .2s; }
.btn-nav-manage:hover { color: var(--orange); }
.btn-nav-cta { background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 14px; font-weight: 700; padding: 10px 24px; border-radius: 100px; text-decoration: none; white-space: nowrap; transition: background .2s, transform .2s; }
.btn-nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; background: var(--white); padding: 80px 32px 32px; z-index: 998; flex-direction: column; gap: 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--dark); text-decoration: none; }
.mobile-menu .btn-nav-cta { display: inline-block; text-align: center; }

/* ============ BUTTONS ============ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 16px; font-weight: 700; padding: 16px 32px; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: var(--white); font-family: var(--fh); font-size: 16px; font-weight: 700; padding: 16px 32px; border-radius: 100px; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; transition: background .2s, transform .2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--orange); font-family: var(--fh); font-size: 16px; font-weight: 700; padding: 16px 36px; border-radius: 100px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: var(--fh); font-size: 16px; font-weight: 700; padding: 16px 36px; border-radius: 100px; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); transition: border-color .2s, transform .2s; }
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-manage { display: inline-flex; align-items: center; gap: 8px; background: var(--purple); color: var(--white); font-family: var(--fh); font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 100px; text-decoration: none; transition: background .2s, transform .2s; white-space: nowrap; }
.btn-manage:hover { background: var(--purple-light); transform: translateY(-2px); }

/* ============ SHARED TYPOGRAPHY ============ */
.section-label { font-family: var(--fh); font-size: 12px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; display: block; background: rgba(91,45,142,0.08); border: 1px solid rgba(91,45,142,0.15); padding: 4px 12px; border-radius: 100px; width: fit-content; }
.section-title { font-family: var(--fh); font-size: clamp(32px,4vw,52px); font-weight: 800; color: var(--dark); line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--mid); line-height: 1.65; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { background: var(--dark); padding: 80px 80px 100px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: var(--orange); opacity: 0.06; border-radius: 50%; }
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.page-hero-label { display: inline-block; background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.page-hero h1 { font-family: var(--fh); font-size: clamp(36px,5vw,72px); font-weight: 800; color: var(--white); line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 560px; }

/* ============ CTA SECTION ============ */
.cta-section { background: var(--orange); padding: 120px 80px; text-align: center; }
.cta-section h2 { font-family: var(--fh); font-size: clamp(36px,4vw,64px); font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1.1; margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ MANAGE SECTION ============ */
.manage-section { background: var(--cream-dark); padding: 72px 80px; }
.manage-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; background: var(--white); border-radius: var(--rl); padding: 48px 56px; box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
.manage-text h3 { font-family: var(--fh); font-size: 24px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 8px; }
.manage-text p { font-size: 15px; color: var(--mid); }

/* ============ FOOTER ============ */
footer { background: #0A0A0A; padding: 80px 80px 40px; }
.footer-grid { max-width: var(--max); margin: 0 auto 64px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-logo { font-family: var(--fh); font-size: 24px; font-weight: 800; color: var(--orange); text-decoration: none; }
.footer-app-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--dark); padding: 10px 18px; border-radius: 10px; text-decoration: none; margin-top: 20px; transition: opacity .2s; }
.footer-app-btn:hover { opacity: 0.85; }
.footer-app-btn svg { width: 20px; height: 20px; fill: var(--dark); flex-shrink: 0; }
.footer-app-text { display: flex; flex-direction: column; }
.footer-app-sub { font-size: 10px; color: var(--mid); line-height: 1; }
.footer-app-main { font-family: var(--fh); font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.footer-col h4 { font-family: var(--fh); font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 15px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ============ POPUP ============ */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .4s; pointer-events: none; }
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup { background: var(--white); border-radius: var(--rl); overflow: hidden; max-width: 740px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 40px 120px rgba(0,0,0,0.3); transform: translateY(20px); transition: transform .4s; }
.popup-overlay.show .popup { transform: translateY(0); }
.popup-img { background-image: url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=600&q=80'); background-size: cover; background-position: center; min-height: 380px; }
.popup-content { padding: 44px 36px; position: relative; }
.popup-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; color: var(--light); cursor: pointer; line-height: 1; }
.popup-content h3 { font-family: var(--fh); font-size: 30px; font-weight: 800; color: var(--dark); letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px; }
.popup-content h3 em { font-style: normal; color: var(--orange); }
.popup-content p { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 24px; }
.popup-form { display: flex; flex-direction: column; gap: 10px; }
.popup-input { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 12px; font-family: var(--fb); font-size: 15px; color: var(--dark); outline: none; transition: border-color .2s; }
.popup-input:focus { border-color: var(--orange); }
.popup-btn { background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 15px; font-weight: 700; padding: 14px; border-radius: 100px; border: none; cursor: pointer; transition: background .2s; }
.popup-btn:hover { background: var(--orange-dark); }
.popup-social { margin-top: 14px; font-size: 12px; color: var(--light); text-align: center; line-height: 1.5; }
.popup-social strong { color: var(--orange); }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============ PLAN CARDS ============ */
.plan-card { background: var(--white); border-radius: var(--rl); padding: 40px 36px; border: 2px solid transparent; transition: all .25s; position: relative; }
.plan-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(242,101,34,0.12); }
.plan-card.featured { border-color: var(--purple); box-shadow: 0 24px 60px rgba(91,45,142,0.2); background: var(--purple); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 11px; font-weight: 700; padding: 5px 18px; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.plan-label { font-family: var(--fh); font-size: 11px; font-weight: 700; color: var(--light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.plan-meals { font-family: var(--fh); font-size: 36px; font-weight: 800; color: var(--dark); letter-spacing: -1px; }
.plan-per-meal { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 4px; }
.plan-price { font-family: var(--fh); font-size: 52px; font-weight: 800; color: var(--orange); letter-spacing: -2px; line-height: 1; margin: 12px 0 4px; }
.plan-price-sub { font-size: 13px; color: var(--light); margin-bottom: 32px; }
.plan-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--mid); }
.plan-features li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--orange); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 11px; background-repeat: no-repeat; background-position: center; }
.plan-btn { display: block; width: 100%; text-align: center; background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 15px; font-weight: 700; padding: 16px; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .2s; }
.plan-btn:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ============ MEAL CARDS ============ */
.meal-card { background: var(--white); border-radius: var(--rl); overflow: hidden; transition: transform .3s, box-shadow .3s; cursor: pointer; }
.meal-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.meal-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.meal-info { padding: 20px 24px 24px; }
.meal-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.meal-tag { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--fh); }
.tag-cut { background: rgba(242,101,34,0.1); color: var(--orange); }
.tag-bulk { background: rgba(91,45,142,0.1); color: var(--purple); }
.tag-maintain { background: rgba(22,163,74,0.1); color: #16a34a; }
.tag-popular { background: rgba(251,191,36,0.15); color: #b45309; }
.meal-name { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.35; letter-spacing: -0.2px; }
.meal-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 14px; }
.meal-kcal-protein { font-size: 13px; color: var(--mid); }
.meal-kcal-protein span { font-weight: 600; color: var(--dark); }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; text-align: left; }
.faq-question span { font-family: var(--fh); font-size: 17px; font-weight: 600; color: var(--dark); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: 16px; transition: transform .3s; font-size: 18px; color: var(--orange); font-weight: 700; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { font-size: 15px; color: var(--mid); line-height: 1.7; padding-bottom: 24px; }

/* ============ BASKET ICON ============ */
.basket-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--orange-light); border: none; cursor: pointer; text-decoration: none; transition: background .2s; flex-shrink: 0; }
.basket-btn:hover { background: var(--orange); }
.basket-btn svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.basket-btn:hover svg { stroke: var(--white); }
.basket-count { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--white); }
.basket-btn.hidden { display: none; }
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links, .btn-nav-manage { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 60px 32px 80px; }
  .cta-section, .manage-section { padding: 72px 32px; }
  footer { padding: 64px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .announce-bar { padding: 11px 48px 11px 16px; }
  .manage-inner { padding: 36px; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .page-hero { padding: 48px 20px 64px; }
  .page-hero h1 { letter-spacing: -1px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .popup { grid-template-columns: 1fr; }
  .popup-img { display: none; }
  .manage-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  footer { padding: 48px 20px 28px; }
}

/* ============ SVG ICON SYSTEM ============ */
.icon-wrap { width: 56px; height: 56px; border-radius: 16px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; }
.icon-wrap svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-wrap.dark { background: rgba(242,101,34,0.15); }
.icon-wrap.circle { border-radius: 50%; }
.icon-wrap.lg { width: 64px; height: 64px; border-radius: 18px; }
.icon-wrap.lg svg { width: 30px; height: 30px; }

/* ── GLOBAL IMAGE ALIGNMENT FIX ── */
.meal-img, .menu-card-img, .meal-card-img, .goal-meal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* ── PURPLE ACCENT SYSTEM ── */
.section-label { color: var(--purple); background: rgba(91,45,142,0.1); border: 1px solid rgba(91,45,142,0.2); }
.section-label.orange { color: var(--orange); background: var(--orange-light); border: 1px solid rgba(242,101,34,0.2); }

/* Purple headings on cream backgrounds */
.goals-section .section-title,
.plans-section .section-title,
.reviews-section .section-title { color: var(--dark); }

/* Purple card borders on hover */
.plan-card:hover { border-color: var(--purple); box-shadow: 0 20px 60px rgba(91,45,142,0.15); }
.plan-card.featured { border-color: var(--purple); background: var(--purple); }
.plan-card.featured .plan-meals { color: var(--white); }
.plan-card.featured .plan-price { color: var(--white); }
.plan-card.featured .plan-price-sub { color: rgba(255,255,255,0.7); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-card.featured .plan-features li::before { color: var(--orange); }
.plan-card.featured .plan-label { background: var(--orange); color: var(--white); }

/* Purple section backgrounds */
.purple-section { background: var(--purple); }
.purple-section .section-label { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.purple-section h2, .purple-section p { color: var(--white); }

/* Purple badges and tags */
.badge-purple { background: rgba(91,45,142,0.1); color: var(--purple); font-family: var(--fh); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; display: inline-block; }

/* Purple goal card accents */
.goal-card.maintain { border: 2px solid var(--purple); }
.goal-card.maintain .goal-label { background: var(--purple); }

/* Purple nav active state */
nav a.active { color: var(--purple); }

/* Purple footer */
footer { background: var(--dark); }
.footer-logo { color: var(--orange) !important; }

/* Purple announcement bar */
.announce-bar { background: var(--purple); }

/* Purple review stars */
.tp-stars { color: var(--purple); }

/* Purple stat numbers on dark */
.hero .stat-number { color: var(--orange); }

/* ── NEWSLETTER SECTION ── */
.newsletter-section { background: var(--purple); padding: 80px 80px; }
.newsletter-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.newsletter-text .section-label { color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.newsletter-text h2 { font-family: var(--fh); font-size: clamp(28px,3vw,42px); font-weight: 800; color: var(--white); letter-spacing: -1px; line-height: 1.1; margin: 16px 0 16px; }
.newsletter-text p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.newsletter-input-row { display: flex; gap: 10px; margin-bottom: 12px; }
.newsletter-input { flex: 1; padding: 14px 18px; border: 2px solid rgba(255,255,255,0.2); border-radius: 100px; background: rgba(255,255,255,0.1); color: var(--white); font-family: var(--fb); font-size: 15px; outline: none; transition: border-color .2s; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--orange); }
.newsletter-btn { background: var(--orange); color: var(--white); font-family: var(--fh); font-size: 14px; font-weight: 700; padding: 14px 24px; border-radius: 100px; border: none; cursor: pointer; white-space: nowrap; transition: background .2s; }
.newsletter-btn:hover { background: var(--orange-dark); }
.newsletter-result { font-size: 13px; font-weight: 600; min-height: 20px; }
.newsletter-result.success { color: #86efac; }
.newsletter-result.error { color: #fca5a5; }
.newsletter-footnote { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 8px; }
@media (max-width: 768px) { .newsletter-section { padding: 64px 24px; } .newsletter-inner { grid-template-columns: 1fr; gap: 32px; } }
