:root {
  --corp-blue: #003D69;
  --corp-orange: #F36F21;
  --corp-teal: #0E8388;
  --bg-light: #F4F7FA;
  --card-bg: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --border-color: #CBD5E1;
  --soft-orange: #FFF4EC;
  --soft-blue: #EAF2F8;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-sm: 0 4px 14px rgba(0, 61, 105, 0.06);
  --shadow-md: 0 12px 30px rgba(0, 61, 105, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Calibri, "Microsoft JhengHei", "微軟正黑體", -apple-system, sans-serif; background-color: var(--bg-light); color: var(--text-primary); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { color: var(--corp-blue); font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(30px, 4.5vw, 44px); }
h2 { font-size: clamp(24px, 3.5vw, 32px); }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 19px; }
p { margin-bottom: 10px; }

/* Navigation & Base */
.internal-banner { background: #C53030; color: white; text-align: center; padding: 8px 16px; font-size: 14px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; z-index: 101; position: relative; }
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(12px); border-bottom: 4px solid var(--corp-orange); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { max-width: 1240px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.nav-menu { display: flex; gap: 8px; list-style: none; }
.nav-menu a { text-decoration: none; color: var(--text-secondary); font-size: 15px; font-weight: 700; padding: 10px 16px; border-radius: 999px; transition: all 0.2s ease; cursor: pointer; white-space: nowrap; }
.nav-menu a:hover, .nav-menu a.active { color: #FFFFFF; background: var(--corp-blue); }

/* Navigation Dropdown Menu */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  padding: 8px 0;
  list-style: none;
  min-width: 220px;
  z-index: 200;
  border: 1px solid var(--border-color);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--text-primary);
  font-size: 14px;
  border-radius: 0;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: var(--soft-orange);
  color: var(--corp-orange);
}

.lang-toggle { display: flex; background: #E2E8F0; border-radius: 999px; padding: 4px; }
.lang-toggle button { border: none; background: transparent; padding: 8px 18px; font-size: 14px; font-weight: 700; border-radius: 999px; cursor: pointer; color: var(--text-secondary); transition: all 0.2s ease; }
.lang-toggle button.active { background: var(--corp-orange); color: #FFFFFF; box-shadow: 0 2px 6px rgba(243, 111, 33, 0.3); }
.mobile-nav-toggle { display: none; background: transparent; border: none; font-size: 28px; cursor: pointer; color: var(--corp-blue); padding: 4px 8px; line-height: 1; }

/* SPA Control */
.page-section { display: none; animation: fadeIn 0.3s ease-in-out; }
.page-section.active-page { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Layout & Sections */
.container { max-width: 1240px; margin: 0 auto; padding: 36px 24px 90px; }
.section-title { font-size: 28px; color: var(--corp-blue); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-desc { font-size: 16px; color: var(--text-secondary); margin-bottom: 24px; }

/* --- Lazy Pack Components --- */
.hero-card { background: linear-gradient(135deg, var(--corp-blue) 0%, #00223E 100%); color: #FFFFFF; border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-md); margin-bottom: 36px; border-left: 8px solid var(--corp-orange); }
.hero-card h1 { color: #FFFFFF; margin-bottom: 16px; }
.hero-card p.lead { font-size: 18px; opacity: 0.95; max-width: 950px; line-height: 1.8; }
.sales-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--corp-orange); color: #FFFFFF; font-size: 15px; font-weight: 700; padding: 8px 18px; border-radius: 999px; margin-bottom: 20px; }
.hero-positioning { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-md); padding: 20px 24px; margin: 24px 0; backdrop-filter: blur(8px); }
.hero-quote { margin-top: 12px; padding-top: 12px; border-top: 1px dashed rgba(255, 255, 255, 0.3); color: #FFE2D1; font-weight: 700; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 28px; }
.stat-card { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius-md); padding: 22px; text-align: center; font-size: 16px; }
.stat-card strong { display: block; font-size: 26px; color: var(--corp-orange); margin-bottom: 6px; }
.roi-bar { margin-top: 24px; background: rgba(0, 0, 0, 0.25); padding: 12px 20px; border-radius: 10px; font-size: 15px; color: #F8FAFC; text-align: center; }

.agent-selector-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 24px; }
.agent-tab-btn { background: var(--card-bg); border: 2px solid var(--border-color); border-radius: var(--radius-md); padding: 14px 10px; text-align: center; cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.agent-tab-btn .agent-icon { font-size: 26px; }
.agent-tab-btn .agent-name { font-weight: 700; font-size: 15px; color: var(--corp-blue); }
.agent-tab-btn .agent-tag { font-size: 12px; color: var(--text-secondary); }
.agent-tab-btn:hover { border-color: var(--corp-blue); transform: translateY(-2px); }
.agent-tab-btn.active { border-color: var(--corp-orange); background: var(--soft-orange); box-shadow: var(--shadow-sm); }
.agent-showcase-panel { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.agent-panel-content { display: none; animation: fadeIn 0.25s ease-in-out forwards; }
.agent-panel-content.active { display: block; }
.agent-header-bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; margin-bottom: 20px; border-bottom: 2px solid var(--bg-light); }
.agent-badge { background: var(--soft-blue); color: var(--corp-blue); padding: 4px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.position-box { margin-bottom: 20px; background: var(--bg-light); padding: 16px 20px; border-radius: var(--radius-md); border-left: 4px solid var(--corp-blue); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; text-align: center; }
.value-card { background: var(--soft-blue); padding: 12px; border-radius: 8px; font-weight: 700; color: var(--corp-blue); font-size: 14px; }
.two-col-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 20px; margin-bottom: 24px; }
.tasks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
.task-item { background: var(--bg-light); padding: 10px 14px; border-radius: 8px; border-left: 3px solid var(--corp-teal); font-size: 14px; line-height: 1.5; }
.pain-points-box { background: #FFF5F5; padding: 16px; border-radius: var(--radius-md); border: 1px solid #FED7D7; }
.pain-points-box ul { margin-top: 8px; padding-left: 18px; font-size: 14px; color: #742A2A; line-height: 1.8; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { background: #EAF2F8; color: var(--corp-blue); border: 1px solid #B3D1E6; padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.quick-pitch-box { background: var(--soft-orange); border: 1px solid #FFD8BE; border-left: 5px solid var(--corp-orange); padding: 16px 20px; border-radius: 8px; margin-top: 20px; }
.quick-pitch-title { font-size: 14px; font-weight: 800; color: var(--corp-orange); margin-bottom: 6px; }
.quick-pitch-text { font-size: 15px; color: var(--corp-blue); font-weight: 600; line-height: 1.6; }

/* General Agents Section Styling */
.general-agents-card { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); margin-top: 40px; text-align: left; }
.general-agents-card h3 { font-size: 24px; color: var(--corp-blue); margin-bottom: 12px; text-align: center; }
.general-agents-card p.intro { font-size: 16px; color: var(--text-secondary); max-width: 700px; margin: 0 auto 24px auto; text-align: center; }
.ga-plan-box { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; }
.ga-plan-header { font-size: 20px; font-weight: 800; color: var(--corp-orange); margin-bottom: 12px; border-bottom: 2px solid var(--border-color); padding-bottom: 6px; }
.ga-subtitle { font-size: 16px; font-weight: 700; color: var(--corp-blue); margin: 12px 0 8px 0; }
.ga-list { list-style: none; padding-left: 0; }
.ga-list li { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: 8px; padding: 10px 14px; margin-bottom: 8px; font-size: 15px; }
.ga-list li strong { color: var(--corp-blue); }

/* --- Use Cases Components --- */
.use-case-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
details.use-case-card { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; transition: all 0.2s ease; margin-top: 0; }
details.use-case-card:hover { border-color: #CBD5E1; box-shadow: var(--shadow-md); }
details.use-case-card[open] { border-left: 5px solid var(--corp-orange); }
summary.use-case-header { font-size: 17px; font-weight: 700; color: var(--corp-blue); padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; list-style: none; }
summary.use-case-header::-webkit-details-marker { display: none; }
summary.use-case-header::after { content: "＋"; font-size: 18px; font-weight: 800; color: var(--corp-orange); background: var(--soft-orange); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
details.use-case-card[open] summary.use-case-header::after { content: "－"; background: var(--corp-orange); color: #FFFFFF; }

.mapping-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; }
.mapping-card { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--corp-blue); display: flex; flex-direction: column; transition: all 0.25s ease; }
.mapping-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--corp-orange); }
.mapping-header { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border-color); }
.industry-icon { font-size: 28px; background: var(--soft-blue); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.industry-sub { font-size: 13px; color: var(--text-secondary); }
.mapping-body { padding-top: 16px; }
.mapping-label { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; letter-spacing: 0.5px; }
.agent-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pill { padding: 5px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.pill-orange { background: #FFF4EC; color: #D95300; border: 1px solid #FFC299; }
.pill-blue { background: #EAF2F8; color: #003D69; border: 1px solid #B3D1E6; }
.pill-navy { background: #F1F5F9; color: #334155; border: 1px solid #CBD5E1; }
.pilot-flow { background: var(--soft-orange); border: 1px dashed #FFB888; color: var(--corp-blue); padding: 12px 14px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.flow-item { background: #FFFFFF; padding: 3px 8px; border-radius: 6px; border: 1px solid #FFD8BE; }
.flow-arrow-icon { color: var(--corp-orange); font-size: 12px; }

/* --- Sales Enablement Components --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; }
.badge { display: inline-block; padding: 6px 14px; border-radius: 8px; font-size: 14px; font-weight: 700; background: var(--soft-blue); color: var(--corp-blue); margin-bottom: 12px; }
.process-flow { display: flex; gap: 10px; margin: 18px 0; overflow-x: auto; padding-bottom: 10px; }
.enablement-flow { background: #FFFFFF; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.flow-step { flex: 1; min-width: 140px; background: #FFFFFF; border: 1px solid var(--border-color); border-radius: 10px; padding: 16px 12px; text-align: center; font-size: 17px; font-weight: 800; box-shadow: 0 2px 6px rgba(0,0,0,0.03); }
.step-num { font-size: 20px; font-weight: 900; color: var(--corp-orange); background: rgba(243, 111, 33, 0.12); display: inline-block; padding: 2px 10px; border-radius: 999px; margin-bottom: 8px; border: 1px solid rgba(243, 111, 33, 0.3); }
.flow-arrow { display: flex; align-items: center; color: var(--corp-orange); font-weight: 900; font-size: 24px; }
.enablement-flow small { font-size: 14px; font-weight: 600; color: var(--text-secondary); display: block; margin-top: 4px; }
.highlight-step { border-color: var(--corp-blue) !important; background: var(--soft-blue) !important; }
.highlight-step-orange { border-color: var(--corp-orange) !important; background: var(--soft-orange) !important; }

.concept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 20px; }
.concept-card { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; font-size: 16px; }
.highlight-card { grid-column: 1 / -1; border-left: 6px solid var(--corp-orange); background: linear-gradient(135deg, #FFFFFF 0%, #FFF4EC 100%); }
.concept-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.concept-icon { font-size: 28px; }
.concept-sub { font-size: 13px; color: var(--text-secondary); }
.analogy-box { background: #FFFFFF; border: 1px solid #FFC299; padding: 16px; border-radius: 10px; font-size: 15px; line-height: 1.7; }
.concept-example { margin-top: 10px; font-size: 14px; color: var(--text-secondary); background: var(--bg-light); padding: 8px 12px; border-radius: 8px; }

.table-wrapper { overflow-x: auto; margin-top: 20px; margin-bottom: 28px; border-radius: var(--radius-md); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.concept-table { width: 100%; border-collapse: collapse; background: #FFFFFF; font-size: 15px; text-align: left; }
.concept-table th, .concept-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-color); border-right: 1px solid #E2E8F0; }
.concept-table th { background: var(--corp-blue); color: #FFFFFF; font-weight: 700; white-space: nowrap; }
.concept-table tr:nth-child(even) { background-color: var(--bg-light); }
.concept-table tr:hover { background-color: var(--soft-blue); }

/* --- Modernized FAQ Section UI --- */
.faq-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.faq-search-box {
  position: relative;
  width: 100%;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  font-size: 15px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-search-input:focus {
  border-color: var(--corp-orange);
  box-shadow: 0 0 0 4px rgba(243, 111, 33, 0.15);
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-secondary);
  pointer-events: none;
}

.faq-filter-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.faq-filter-btn {
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-filter-btn:hover, .faq-filter-btn.active {
  background: var(--corp-blue);
  color: #FFFFFF;
  border-color: var(--corp-blue);
  box-shadow: 0 2px 8px rgba(0, 61, 105, 0.15);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

details.objection-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
}

details.objection-card:hover {
  border-color: #B3D1E6;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

details.objection-card[open] {
  border-left: 5px solid var(--corp-orange);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
}

summary.objection-header {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--corp-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 16px;
  list-style: none;
}

summary.objection-header::-webkit-details-marker {
  display: none;
}

.faq-toggle-badge {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft-orange);
  color: var(--corp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  transition: all 0.2s ease;
}

details.objection-card[open] .faq-toggle-badge {
  background: var(--corp-orange);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.objection-content {
  margin-top: 0;
  padding: 0 22px 20px 22px;
  border-top: none;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
}

.faq-answer-box {
  background: var(--soft-blue);
  border-left: 4px solid var(--corp-blue);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 6px;
}

.faq-answer-box strong {
  color: var(--corp-blue);
}

/* --- Pricing Components --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 36px; margin-bottom: 48px; }
.plan-card { background: #FFFFFF; border: 2px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; text-align: center; }
.plan-card.highlight { border-color: var(--corp-orange); box-shadow: 0 12px 30px rgba(243, 111, 33, 0.15); transform: translateY(-4px); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--corp-orange); color: white; padding: 4px 16px; border-radius: 999px; font-size: 13px; font-weight: bold; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }
.plan-title { font-size: 16px; font-weight: 800; color: var(--corp-blue); text-transform: uppercase; margin-bottom: 8px; }
.plan-price { font-size: 42px; font-weight: 900; color: var(--corp-blue); line-height: 1; }
.plan-price span { font-size: 16px; font-weight: 600; color: var(--text-secondary); }
.plan-tokens { margin-top: 12px; padding-bottom: 24px; border-bottom: 1px solid var(--border-color); font-size: 15px; color: var(--corp-orange); font-weight: bold; }
.plan-features { list-style: none; margin-top: 24px; text-align: left; flex-grow: 1; }
.plan-features li { font-size: 15px; margin-bottom: 12px; padding-left: 24px; position: relative; color: var(--text-primary); }
.plan-features li::before { content: "✓"; color: var(--corp-teal); position: absolute; left: 0; font-weight: bold; }
.top-up-box { margin-top: 20px; background: var(--bg-light); padding: 12px; border-radius: 8px; font-size: 13px; color: var(--text-secondary); }
.llm-table th { background: var(--text-primary); }

/* --- Report / Download PDF Table Components --- */
.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--corp-orange);
  color: #FFFFFF !important;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pdf-btn:hover {
  background: #D95300;
  box-shadow: 0 4px 10px rgba(243, 111, 33, 0.3);
  transform: translateY(-1px);
}
.tag-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  background: var(--soft-blue);
  color: var(--corp-blue);
}

/* Specific Multilingual Formatting for List Items */
.plan-features li .lang-zh {
  display: block !important;
}
body.en .plan-features li .lang-zh {
  display: none !important;
}
body.en .plan-features li .lang-en {
  display: block !important;
}

/* General Lang Rules */
.lang-zh { display: inline; }
.lang-en { display: none; }
body.en .lang-zh { display: none !important; }
body.en .lang-en { display: inline !important; }

footer { text-align: center; padding: 28px; color: var(--text-secondary); font-size: 15px; border-top: 1px solid var(--border-color); background: #FFFFFF; }

/* Mobile */
@media (max-width: 900px) { .agent-selector-grid { grid-template-columns: repeat(3, 1fr); } .two-col-grid { grid-template-columns: 1fr; } .value-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .mobile-nav-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255, 255, 255, 0.98); flex-direction: column; padding: 16px 20px; gap: 12px; border-bottom: 4px solid var(--corp-orange); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
  .nav-menu.mobile-open { display: flex !important; }
  .nav-menu a { width: 100%; text-align: center; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .process-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); margin: 4px auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-card { padding: 28px 20px; }
}
@media (max-width: 600px) { .agent-selector-grid { grid-template-columns: repeat(2, 1fr); } .tasks-grid { grid-template-columns: 1fr; } }


/* --- LLM Comparison Cards Component --- */
.llm-compare-container {
  margin-top: 28px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.llm-compare-header {
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.llm-compare-header h3 {
  font-size: 18px;
  color: var(--corp-blue);
  line-height: 1.4;
}

.llm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.llm-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.llm-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: #B3D1E6;
}

.llm-card.highlight-border {
  background: var(--soft-orange);
  border-color: #FFC299;
}

.llm-card-icon {
  font-size: 28px;
  line-height: 1;
  background: #FFFFFF;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.llm-card-content {
  flex: 1;
}

.llm-card-content h4 {
  font-size: 16px;
  color: var(--corp-blue);
  margin-bottom: 6px;
}

.llm-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.llm-card-content p strong {
  color: var(--corp-orange);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .llm-grid {
    grid-template-columns: 1fr;
  }
  .mobile-only {
    display: block;
  }
}
/* --- General Agents Modernized Component --- */
.ga-plan-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.ga-plan-box.highlight-ga-box {
  background: #FFFFFF;
  border: 2px solid var(--corp-orange);
  box-shadow: var(--shadow-sm);
}

.ga-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--corp-blue);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.ga-plan-tag {
  font-size: 13px;
  font-weight: 700;
  background: var(--soft-blue);
  color: var(--corp-blue);
  padding: 4px 12px;
  border-radius: 999px;
}

.ga-plan-tag.highlight {
  background: var(--corp-orange);
  color: #FFFFFF;
}

.ga-subtitle {
  font-size: 15px;
  font-weight: 800;
  color: var(--corp-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.ga-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ga-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ga-plan-box:not(.highlight-ga-box) .ga-card {
  background: var(--card-bg);
}

.ga-card:hover {
  transform: translateY(-2px);
  border-color: var(--corp-blue);
}

.ga-card-icon {
  font-size: 22px;
  background: var(--soft-blue);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.ga-card-text {
  font-size: 14px;
  line-height: 1.3;
}

.ga-card-text strong {
  color: var(--corp-blue);
  display: block;
}

.ga-card-text small {
  color: var(--text-secondary);
  font-weight: normal;
  font-size: 12px;
}

@media (max-width: 768px) {
  .ga-grid {
    grid-template-columns: 1fr;
  }
  .ga-plan-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

