/* =========================================
   ChefOnline – Global Styles
   ========================================= */

:root {
  --red:    #FF6B6B;
  --orange: #FF9F1C;
  --yellow: #FFD93D;
  --green:  #6BCB77;
  --blue:   #4D96FF;
  --purple: #C77DFF;
  --pink:   #FF6B9D;
  --teal:   #4ECDC4;
  --dark:   #0D0D0D;
  --dark2:  #1A1A2E;
  --card:   #1E1E30;
  --text:   #E8E8F0;
  --muted:  #888899;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  font-size: 16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark2);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Syne', sans-serif; }

a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; }
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--orange); }
.nav-links { list-style: none; display: flex; gap: 8px; margin-left: auto; align-items: center; }
.nav-links a { padding: 8px 16px; border-radius: 8px; transition: background .2s; font-size: 0.9rem; }
.nav-links a:hover { background: rgba(255,255,255,0.08); }
.btn-nav { background: linear-gradient(135deg, var(--orange), var(--red)); color: white !important; font-weight: 600; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; margin-left: auto; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: white; font-weight: 700; font-family: 'Syne', sans-serif;
  padding: 14px 28px; border-radius: 12px;
  border: none; cursor: pointer; font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,111,77,.35); }
.btn-primary.btn-large { padding: 18px 40px; font-size: 1.1rem; border-radius: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--text); padding: 14px 28px; border-radius: 12px;
  font-weight: 600; transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--orange); background: rgba(255,159,28,.08); }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; gap: 60px;
  padding: 80px 24px;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.hero-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
  animation: drift 12s ease-in-out infinite alternate;
}
.blob-1 { width: 500px; height: 500px; background: var(--red); top: 10%; left: -10%; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--blue); top: 50%; right: -5%; animation-delay: 4s; }
.blob-3 { width: 350px; height: 350px; background: var(--green); bottom: 5%; left: 30%; animation-delay: 8s; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,20px) scale(1.1); } }

.hero-content { flex: 1; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 16px; border-radius: 100px; font-size: 0.85rem;
  color: var(--muted); margin-bottom: 24px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; }
.gradient-text {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { color: var(--muted); line-height: 1.6; margin-bottom: 32px; font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-flags { display: flex; flex-wrap: wrap; gap: 8px; font-size: 1.6rem; }
.hero-flags span { cursor: default; transition: transform .15s; }
.hero-flags span:hover { transform: scale(1.3); }

.hero-visual { flex: 1; max-width: 480px; }
.dish-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.dish-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 2.2rem;
  transition: transform .2s, border-color .2s;
  border-top: 3px solid var(--c);
}
.dish-card:hover { transform: translateY(-4px); border-top-color: var(--c); }
.dish-card span { font-size: 0.75rem; color: var(--muted); text-align: center; font-family: 'Inter'; }

/* ─── STATS ─── */
.stats { padding: 48px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; font-family: 'Syne', sans-serif;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--muted); font-size: 0.9rem; }

/* ─── SECTIONS ─── */
.section-header { text-align: center; padding: 80px 24px 48px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ─── REGIONS ─── */
.regions-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.region-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: block;
  border-top: 4px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.region-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  border-radius: var(--radius) var(--radius) 0 0;
}
.region-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.region-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.region-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.region-card p { color: var(--muted); font-size: 0.9rem; }

/* ─── FEATURES ─── */
.features { padding-bottom: 80px; }
.features-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: transform .2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ─── DEMO CHAT ─── */
.demo-section { padding: 80px 24px; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.demo-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; align-items: center; }
.demo-text { flex: 1; }
.demo-text h2 { font-size: clamp(1.8rem,3.5vw,2.4rem); margin-bottom: 16px; }
.demo-text p { color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.demo-chat { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.chat-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--red)); display: flex; align-items:center; justify-content:center; font-size: 1.3rem; }
.chat-messages { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.msg { padding: 12px 16px; border-radius: 12px; font-size: 0.9rem; line-height: 1.5; max-width: 85%; }
.msg.user { background: linear-gradient(135deg,var(--orange),var(--red)); margin-left: auto; border-radius: 12px 12px 4px 12px; }
.msg.bot { background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 12px 12px 12px 4px; color: var(--text); }
.msg-more { color: var(--orange); font-size: 0.8rem; margin-top: 6px; cursor: pointer; }

/* ─── CTA ─── */
.cta-section { padding: 100px 24px; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 12px; }
.cta-inner p { color: var(--muted); margin-bottom: 32px; font-size: 1.1rem; }

/* ─── FOOTER ─── */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer p { color: var(--muted); font-size: 0.9rem; }
.footer-flags { font-size: 1.4rem; letter-spacing: 4px; }

/* =========================================
   APP PAGE
   ========================================= */
.app-page { background: #0D0D0D; }
.nav-app { background: rgba(13,13,13,0.95); }

.app-layout {
  display: flex;
  height: calc(100vh - 64px);
  overflow: hidden;
}

/* ─── SIDEBAR ─── */
.sidebar {
  width: 220px; min-width: 220px;
  background: var(--card);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  padding: 20px 0;
  scrollbar-width: thin;
}
.sidebar-section { padding: 0 16px 20px; }
.sidebar-section h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.region-list, .category-list { display: flex; flex-direction: column; gap: 4px; }
.region-btn, .cat-btn {
  text-align: left; background: none; border: none; color: var(--text);
  padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.88rem; transition: background .15s; font-family: 'Inter';
}
.region-btn:hover, .cat-btn:hover, .region-btn.active, .cat-btn.active {
  background: rgba(255,159,28,.15); color: var(--orange);
}
.diet-list { display: flex; flex-direction: column; gap: 8px; }
.diet-list label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; cursor: pointer; color: var(--muted); }
.diet-list input { accent-color: var(--orange); }

/* ─── APP MAIN ─── */
.app-main {
  flex: 1; overflow-y: auto;
  padding: 24px;
  display: flex; flex-direction: column; gap: 20px;
  scrollbar-width: thin;
}

.search-bar-wrap { display: flex; gap: 10px; }
.search-bar {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 18px; color: var(--text);
  font-family: 'Inter'; font-size: 0.95rem; transition: border-color .2s;
}
.search-bar:focus { outline: none; border-color: var(--orange); }
.btn-search {
  background: linear-gradient(135deg,var(--orange),var(--red));
  color: white; border: none; border-radius: var(--radius-sm);
  padding: 12px 24px; cursor: pointer; font-weight: 600; font-family: 'Inter';
  transition: transform .15s;
}
.btn-search:hover { transform: scale(1.03); }

/* ─── TABS ─── */
.app-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 4px; border: 1px solid var(--border); }
.tab-btn {
  flex: 1; padding: 10px; background: none; border: none; color: var(--muted);
  border-radius: 8px; cursor: pointer; font-family: 'Inter'; font-size: 0.9rem;
  transition: background .2s, color .2s;
}
.tab-btn.active { background: var(--card); color: var(--text); font-weight: 600; }

/* ─── TAB CONTENT ─── */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── RECIPES ─── */
.recipes-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.recipes-header h2 { font-size: 1.3rem; }
.count-badge { background: rgba(255,159,28,.15); color: var(--orange); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }

.recipes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.recipe-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.recipe-emoji { font-size: 3rem; padding: 24px; text-align: center; background: rgba(255,255,255,0.03); }
.recipe-info { padding: 14px; flex: 1; }
.recipe-flag { font-size: 1.2rem; margin-bottom: 4px; }
.recipe-name { font-family: 'Syne'; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.recipe-country { color: var(--muted); font-size: 0.8rem; }
.recipe-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.tag { padding: 2px 8px; border-radius: 100px; font-size: 0.72rem; background: rgba(255,255,255,0.06); color: var(--muted); }
.tag.veg { background: rgba(107,203,119,.15); color: var(--green); }
.tag.sp { background: rgba(255,107,107,.15); color: var(--red); }

/* ─── RECIPE PHOTO CARDS ─── */
.recipe-photo {
  position: relative; height: 160px;
  background-size: cover; background-position: center;
  background-color: rgba(255,255,255,0.03);
}
.recipe-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; font-family: 'Syne';
  backdrop-filter: blur(8px);
}
.tipico-badge { background: rgba(255,159,28,.85); color: #fff; }
.postre-badge { background: rgba(199,125,255,.85); color: #fff; }
.recipe-highlight { color: var(--muted); font-size: 0.78rem; margin-top: 2px; margin-bottom: 4px; font-style: italic; }
.tag.tipico { background: rgba(255,159,28,.15); color: var(--orange); }
.tag.pos { background: rgba(199,125,255,.15); color: var(--purple); }

/* ─── MODAL PHOTO ─── */
.modal-recipe-photo {
  width: 100%; height: 220px;
  background-size: cover; background-position: center;
  border-radius: 12px; margin-bottom: 20px;
}
.modal-recipe-highlight { color: var(--orange); font-size: 0.88rem; font-style: italic; margin-bottom: 6px; }

/* ─── CHEF IA ─── */
.chef-ia-wrap { display: flex; flex-direction: column; gap: 20px; height: calc(100vh - 240px); }
.chef-ia-header { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.chef-avatar-big { width: 60px; height: 60px; background: linear-gradient(135deg,var(--orange),var(--red)); border-radius: 50%; display: flex; align-items:center; justify-content:center; font-size:2rem; }
.chef-ia-header h2 { font-size: 1.4rem; }
.chef-ia-header p { color: var(--muted); font-size: 0.85rem; }

/* API Config */
.api-config { background: rgba(255,159,28,.06); border: 1px solid rgba(255,159,28,.2); border-radius: var(--radius); padding: 28px; }
.api-config.hidden { display: none; }
.api-config-inner h3 { margin-bottom: 8px; }
.api-config-inner p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.api-input-row { display: flex; gap: 10px; margin-bottom: 8px; }
.api-input { flex: 1; background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text); font-family: monospace; font-size: 0.9rem; }
.api-input:focus { outline: none; border-color: var(--orange); }
.api-config small a { color: var(--orange); }

/* Chat */
.chat-container { flex: 1; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.chat-container.hidden { display: none; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; scrollbar-width: thin; }
.chat-welcome { text-align: center; padding: 40px 20px; }
.welcome-icon { font-size: 3rem; margin-bottom: 12px; }
.chat-welcome h3 { margin-bottom: 8px; font-size: 1.3rem; }
.chat-welcome p { color: var(--muted); margin-bottom: 24px; }
.quick-questions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.quick-questions button {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text); padding: 8px 14px; border-radius: 8px; cursor: pointer;
  font-size: 0.85rem; font-family: 'Inter'; transition: background .15s, border-color .15s;
}
.quick-questions button:hover { background: rgba(255,159,28,.12); border-color: var(--orange); }

.chat-msg { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-bubble {
  max-width: 75%; padding: 12px 16px; border-radius: 16px; font-size: 0.92rem; line-height: 1.5;
}
.chat-msg.bot .chat-bubble { background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 16px 16px 16px 4px; }
.chat-msg.user .chat-bubble { background: linear-gradient(135deg,var(--orange),var(--red)); border-radius: 16px 16px 4px 16px; }
.chat-msg-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--red)); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.chat-msg.user .chat-msg-avatar { background: rgba(255,255,255,0.1); }

.chat-typing { display: flex; gap: 4px; padding: 4px 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); animation: bounce 1.2s infinite; }
.dot:nth-child(2) { animation-delay: .2s; }
.dot:nth-child(3) { animation-delay: .4s; }
@keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

.chat-input-wrap { display: flex; gap: 8px; padding: 16px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; color: var(--text); font-family: 'Inter'; font-size: 0.92rem; resize: none; }
.chat-input:focus { outline: none; border-color: var(--orange); }
.btn-send { background: linear-gradient(135deg,var(--orange),var(--red)); color: white; border: none; border-radius: 10px; padding: 12px 20px; cursor: pointer; font-weight: 700; font-family: 'Syne'; transition: transform .15s; display: flex; align-items: center; gap: 6px; }
.btn-send:hover { transform: scale(1.04); }
.btn-send:disabled { opacity: 0.5; cursor: default; transform: none; }

/* ─── Q&A ─── */
.qna-wrap { max-width: 800px; }
.qna-subtitle { color: var(--muted); margin-bottom: 28px; }
.qna-list { display: flex; flex-direction: column; gap: 12px; }
.qna-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qna-question { padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; transition: background .15s; }
.qna-question:hover { background: rgba(255,255,255,0.03); }
.qna-toggle { color: var(--orange); font-size: 1.2rem; transition: transform .2s; }
.qna-item.open .qna-toggle { transform: rotate(45deg); }
.qna-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; color: var(--muted); line-height: 1.6; font-size: 0.92rem; }
.qna-item.open .qna-answer { max-height: 400px; padding: 0 20px 18px; }

/* ─── MODAL ─── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; padding: 32px; scrollbar-width: thin; }
.modal-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.08); border: none; color: var(--text); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; }
.modal-recipe-emoji { font-size: 4rem; text-align: center; margin-bottom: 16px; }
.modal-recipe-title { font-family: 'Syne'; font-size: 1.6rem; margin-bottom: 6px; }
.modal-recipe-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.modal-section { margin-bottom: 20px; }
.modal-section h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: .05em; color: var(--orange); margin-bottom: 10px; }
.modal-section ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.modal-section ul li { padding: 8px 12px; background: rgba(255,255,255,0.04); border-radius: 8px; font-size: 0.9rem; }
.modal-section ol { list-style: decimal; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.modal-section ol li { font-size: 0.9rem; line-height: 1.5; padding-left: 4px; }
.modal-story { background: rgba(255,159,28,.07); border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; padding: 12px 14px; font-size: 0.88rem; line-height: 1.6; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.modal-tip { background: rgba(107,203,119,.08); border-left: 3px solid var(--green); border-radius: 0 8px 8px 0; padding: 12px 14px; font-size: 0.87rem; line-height: 1.6; display: flex; gap: 10px; align-items: flex-start; }
.modal-wine { background: rgba(199,125,255,.08); border-left: 3px solid #C77DFF; border-radius: 0 8px 8px 0; padding: 12px 14px; font-size: 0.87rem; display: flex; gap: 10px; align-items: flex-start; }
.modal-section-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.modal-ask-btn { display: block; width: 100%; background: linear-gradient(135deg,var(--orange),var(--red)); color: white; border: none; border-radius: 12px; padding: 14px; font-weight: 700; font-family: 'Syne'; font-size: 1rem; cursor: pointer; margin-top: 20px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { flex-direction: column; gap: 40px; padding: 60px 20px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-flags { justify-content: center; }
  .hero-visual { width: 100%; }
  .demo-inner { flex-direction: column; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .sidebar { display: none; }
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); border-bottom: 1px solid var(--border); padding: 16px; }
  .nav-links.open { display: flex; }
}
@media (max-width: 600px) {
  .dish-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .chat-bubble { max-width: 90%; }
}
