/* 七炎科技 - AI在线客服页面专属样式 */

/* ===== Hero ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(145deg, #0a1628 0%, #0d2137 50%, #0a1f35 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,203,148,0.5) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(102,126,234,0.4) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,107,53,0.3) 0%, transparent 70%);
  top: 30%;
  left: 40%;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(6,203,148,0.15);
  border: 1px solid rgba(6,203,148,0.3);
  border-radius: 100px;
  color: #06CB94;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #06CB94;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #06CB94, #00e5b0, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.hero-trust strong {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px;
}

/* ===== 仪表盘模拟 ===== */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(6,203,148,0.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex: 1;
  text-align: center;
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #06CB94;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #06CB94;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.mockup-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  height: 380px;
}

.chat-list {
  border-right: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
  padding: 8px;
}

.chat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-item:hover, .chat-item.active {
  background: rgba(6,203,148,0.1);
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.chat-info {
  flex: 1;
  min-width: 0;
}

.chat-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-preview {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.chat-time {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

.chat-badge {
  background: #06CB94;
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-window {
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 12px;
  overflow-y: auto;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chat-msg.user {
  align-items: flex-end;
}

.chat-msg.bot {
  align-items: flex-start;
}

.msg-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.6;
}

.chat-msg.user .msg-bubble {
  background: linear-gradient(135deg, #06CB94, #00e5b0);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-msg.bot .msg-bubble {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
}

.bot-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #06CB94;
  margin-bottom: 2px;
}

.chat-input-bar {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.chat-input-bar input {
  flex: 1;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  outline: none;
  font-family: inherit;
}

.send-btn {
  width: 28px;
  height: 28px;
  background: #06CB94;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* 浮动统计卡 */
.float-stat {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: floatUp 3s ease-in-out infinite alternate;
}

.float-stat-1 {
  bottom: -20px;
  left: -30px;
  animation-delay: 0s;
}

.float-stat-2 {
  top: 20px;
  right: -30px;
  animation-delay: 1.5s;
}

.fs-icon {
  font-size: 24px;
}

.fs-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.fs-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

@keyframes floatUp {
  from { transform: translateY(0px); }
  to { transform: translateY(-10px); }
}

/* ===== 平台接入 ===== */
.platforms-section {
  background: var(--bg-light);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.platform-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* 真实 logo img */
.platform-icon-img {
  background: transparent !important;
  padding: 0;
}

.platform-icon-img img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.platform-item span {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
  text-align: center;
}

.platform-more .platform-icon {
  background: linear-gradient(135deg, var(--primary), #00e5b0);
}

/* ===== 功能 Tabs ===== */
.features-section {
  background: white;
}

.features-tabs {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.features-tab-nav {
  display: flex;
  background: white;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.tab-btn {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s;
}

.tab-btn.active {
  color: var(--primary);
  background: var(--primary-light);
}

.tab-btn.active::after { opacity: 1; }

.tab-btn:hover:not(.active) {
  color: var(--text-dark);
  background: var(--bg-light);
}

.tab-pane {
  display: none;
  padding: 40px;
}

.tab-pane.active { display: block; }

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-detail-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-detail-text > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}

/* 演示卡片 */
.feature-card-demo {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.demo-chat {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}

.demo-msg {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
}

.demo-reply {
  font-size: 13px;
  color: var(--text-body);
  padding: 10px 12px;
  background: var(--primary-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  line-height: 1.6;
}

.demo-reply-tag {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-stats {
  display: flex;
  gap: 12px;
}

.demo-stat-item {
  flex: 1;
  padding: 10px 12px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.demo-stat-item span {
  font-size: 11px;
  color: var(--text-muted);
}

.demo-stat-item strong {
  font-size: 16px;
  color: var(--text-dark);
}

/* ===== 产品优势 ===== */
.advantages-section {
  background: var(--bg-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.advantage-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.adv-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== 数据 ===== */
.stats-section {
  background: linear-gradient(135deg, #0d2137 0%, #0a1f35 100%);
  padding: 70px 0;
}

.stats-section .stats-grid {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.stats-section .stat-item {
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stats-section .stat-item:last-child { border-right: none; }

.stats-section .stat-number { color: #06CB94; }
.stats-section .stat-label { color: rgba(255,255,255,0.55); }

/* ===== 行业 ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.industry-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6,203,148,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-chevron {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== CTA ===== */
.cta-section {
  background: white;
}

.cta-box {
  background: linear-gradient(135deg, #0d2137, #0a1f35);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,203,148,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.cta-orb-2 {
  background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  top: auto;
  right: auto;
}

/* ===== 公域转私域 ===== */
.funnel-section {
  background: white;
}

.funnel-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 8px;
}

/* 步骤卡片 */
.funnel-step {
  flex: 1;
  min-width: 200px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.funnel-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.funnel-step-core {
  background: linear-gradient(160deg, #f0fdf8 0%, #e6faf5 100%);
  border-color: rgba(6,203,148,0.25);
  box-shadow: 0 0 0 3px rgba(6,203,148,0.08);
}

.funnel-step-private {
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: rgba(102,126,234,0.25);
}

.funnel-step-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.funnel-step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.funnel-step-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--border);
  color: var(--text-body);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

/* 平台图标列表 */
.funnel-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--c, #333);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
}

/* AI 动作列表 */
.funnel-ai-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faa-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  padding: 7px 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(6,203,148,0.15);
  font-weight: 500;
}

/* 私域池 */
.funnel-private-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fpi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(102,126,234,0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.funnel-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.funnel-step-core .funnel-step-desc {
  border-top-color: rgba(6,203,148,0.2);
}

.funnel-step-private .funnel-step-desc {
  border-top-color: rgba(102,126,234,0.2);
}

/* 箭头连接 */
.funnel-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 4px;
  flex-shrink: 0;
  min-width: 52px;
}

.fa-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(6,203,148,0.4), transparent);
  max-height: 36px;
}

.fa-label {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
  writing-mode: vertical-rl;
  letter-spacing: 1px;
  background: var(--primary-light);
  padding: 6px 4px;
  border-radius: 20px;
}

.fa-chevron {
  color: var(--primary);
  filter: drop-shadow(0 0 4px rgba(6,203,148,0.5));
}

/* 底部价值条 */
.funnel-value-bar {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d2137, #0a1f35);
  border-radius: 20px;
  padding: 32px 40px;
  gap: 0;
}

.fvb-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: white;
}

.fvb-icon {
  width: 44px;
  height: 44px;
  background: rgba(6,203,148,0.15);
  border: 1px solid rgba(6,203,148,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fvb-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.fvb-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.fvb-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  margin: 0 36px;
  flex-shrink: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .platform-grid { grid-template-columns: repeat(4, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-detail { grid-template-columns: 1fr; }
  .funnel-value-bar { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .fvb-divider { width: 100%; height: 1px; margin: 0; }
}

@media (max-width: 768px) {
  .platform-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .features-tab-nav { flex-wrap: nowrap; overflow-x: auto; }
  .tab-pane { padding: 24px; }
  .funnel-flow { flex-direction: column; }
  .funnel-arrow { flex-direction: row; min-width: auto; padding: 8px 0; }
  .fa-line { width: 40px; height: 1px; flex: none; max-height: none; }
  .fa-label { writing-mode: horizontal-tb; }
  .fa-chevron { transform: rotate(90deg); }
}

@media (max-width: 480px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section { padding: 100px 0 60px; min-height: auto; }
}
