
/* 全新高转化营销 Hero 设计 */
.whitelist-hero-new {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #0f172a;
  padding: 6rem 0 8rem;
  overflow: hidden;
}

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

.hero-new-glow-left {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, rgba(0,0,0,0) 60%);
  filter: blur(60px);
}

.hero-new-glow-right {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(0,0,0,0) 60%);
  filter: blur(60px);
}

.hero-new-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-new-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* 左侧内容区 */
.hero-new-tag {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 100px;
  padding: 4px 16px 4px 4px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tag-icon {
  background: #10b981;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 0.8rem;
}

.tag-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.hero-new-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-new-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 3rem;
  max-width: 90%;
}

.hero-new-desc strong {
  color: #0f172a;
  font-weight: 600;
}

/* 按钮组 */
.hero-new-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.btn-new-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
}

.btn-new-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.5);
}

.btn-new-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-new-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

/* 信任背书 */
.hero-new-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  border: 2px solid #ffffff;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.trust-text span {
  font-size: 0.9rem;
  color: #64748b;
}

.trust-text strong {
  color: #0f172a;
}

/* 右侧视觉卡片 */
.hero-new-visual {
  position: relative;
}

.visual-card-main {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.visual-card-main:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0f172a;
}

.vc-header i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.vc-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.vc-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.vc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.bg-blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.bg-orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.bg-purple { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }

.vc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-text strong {
  font-size: 1.1rem;
  color: #0f172a;
}

.vc-text span {
  font-size: 0.9rem;
  color: #64748b;
}

.visual-card-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  color: #0f172a;
  animation: float 6s ease-in-out infinite;
}

.visual-card-float i {
  font-size: 2.5rem;
  color: #10b981;
}

.visual-card-float span {
  font-weight: 700;
  line-height: 1.2;
}

.visual-card-float small {
  color: #64748b;
  font-weight: 500;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* 覆盖旧样式，清理无用媒体查询准备合并 */

/* 第四屏：现代化升学时间线 */
.section-timeline {
  background: #ffffff;
}

.section-timeline .section-title {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-modern {
  max-width: 900px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tl-item {
  display: flex;
  gap: 2rem;
  position: relative;
}

.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.tl-dot {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #3b82f6;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 0 0 4px #ffffff;
}

.tl-item:hover .tl-dot {
  background: #3b82f6;
  color: #ffffff;
}

.tl-line {
  width: 2px;
  background: #e2e8f0;
  flex-grow: 1;
  margin-top: 8px;
}

.tl-item:last-child .tl-line {
  display: none;
}

.tl-content {
  flex-grow: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tl-period {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3b82f6;
}

.tl-status {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.tl-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tl-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.5rem;
}

.tl-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
}

.tl-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

.tl-benefits li i {
  color: #10b981;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.timeline-cta {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px dashed #e2e8f0;
}

/* 第二屏：定义区重构 */
.section-define {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-define::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.sub-badge {
  display: inline-block;
  color: #10b981;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.define-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: stretch;
}

.quote-card {
  background: #f8fafc;
  border-left: 4px solid #10b981;
  padding: 2rem;
  border-radius: 0 16px 16px 0;
  margin-bottom: 2.5rem;
  position: relative;
}

.quote-card i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: #e2e8f0;
  opacity: 0.5;
}

.quote-card p {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

.quote-card p strong {
  color: #0f172a;
  background: linear-gradient(120deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 100%);
  padding: 0 4px;
}

.define-content {
  display: flex;
  flex-direction: column;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: space-between;
  height: 100%;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.fc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bg-blue-light { background: #eff6ff; color: #3b82f6; }
.bg-orange-light { background: #fff7ed; color: #f59e0b; }
.bg-green-light { background: #ecfdf5; color: #10b981; }

.fc-text h4 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.fc-text p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.define-visuals {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.doc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.doc-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.doc-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-seal {
  color: #ef4444;
  font-size: 2rem;
}

.doc-title-group h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #0f172a;
}

.doc-title-group span {
  font-size: 0.8rem;
  color: #94a3b8;
}

.btn-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3b82f6;
  background: #eff6ff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-doc-link:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-1px);
}

.doc-body {
  padding: 1.5rem;
  background: #f8fafc;
}

.doc-placeholder {
  background: #ffffff;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  color: #64748b;
}

.doc-placeholder i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.doc-placeholder p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.chart-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.section-whitelist {
  padding: 5rem 0;
}

.doc-screenshot {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-left: 4px solid #fbbf24;
  align-self: flex-start;
}

/* 第三屏：深度对比区 */
.section-compare {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.compare-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.compare-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: #94a3b8;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 4px solid #f8fafc;
}

.compare-card {
  flex: 1;
  max-width: 500px;
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.compare-bad {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.compare-good {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
  z-index: 2;
}

.good-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.compare-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.compare-bad .compare-header i {
  font-size: 3.5rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.compare-good .compare-header i {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.compare-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: inherit;
}

.compare-tag {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.bad-tag {
  background: #fef2f2;
  color: #ef4444;
}

.good-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.compare-list i {
  margin-top: 4px;
  font-size: 1.2rem;
}

.compare-bad .compare-list i {
  color: #ef4444;
}

.compare-good .compare-list i {
  color: #10b981;
}

.compare-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.compare-bad .compare-list strong {
  color: #0f172a;
}

.compare-good .compare-list strong {
  color: #f8fafc;
}

.compare-list p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.compare-bad .compare-list p {
  color: #64748b;
}

.compare-good .compare-list p {
  color: #94a3b8;
}

.compare-action {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.value-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  padding: 3rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.metric-item {
  text-align: center;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #e2e8f0;
}

.metric-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.metric-num small {
  font-size: 1.5rem;
  font-weight: 700;
}

.metric-label {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
}

/* 底部超大引导按钮 */
.compare-footer-action {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.btn-mega-outline {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 100px;
  padding: 10px 24px 10px 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  max-width: 100%;
}

.mega-icon {
  width: 54px;
  height: 54px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.mega-text {
  display: flex;
  flex-direction: column;
  margin: 0 2rem 0 1rem;
}

.mega-text strong {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.mega-text small {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.mega-arrow {
  color: #cbd5e1;
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

.btn-mega-outline:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.btn-mega-outline:hover .mega-icon {
  background: #3b82f6;
  color: #ffffff;
}

.btn-mega-outline:hover .mega-arrow {
  color: #3b82f6;
  transform: translateX(5px);
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-item.active .faq-question .ph-caret-down {
  transform: rotate(180deg);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-img {
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.case-content {
  padding: 1.5rem;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem 0;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: white;
  border: 4px solid #fbbf24;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-section {
  background: var(--bg-alt);
  padding: 5rem 0;
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.sms-group {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .section-timeline .section-title {
    white-space: normal;
    font-size: clamp(1.35rem, 5.4vw, 1.85rem);
    line-height: 1.35;
    padding: 0 0.25rem;
  }

  .tl-item {
    gap: 1rem;
  }
  .tl-content {
    padding: 1.5rem;
  }
  .tl-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .btn-mega-outline {
    border-radius: 20px;
    padding: 12px;
  }
  .mega-text {
    margin: 0 1rem 0 10px;
  }
  .mega-text strong {
    font-size: 1.05rem;
  }
  .mega-text small {
    font-size: 0.75rem;
  }
  .compare-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .compare-vs {
    display: none;
  }
  .compare-good {
    transform: none;
  }
  .value-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .metric-item:nth-child(2)::after {
    display: none;
  }
  .metric-item:not(:last-child)::after {
    right: -1rem;
  }
  .hero-new-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-new-title {
    font-size: 2.5rem;
  }
  .hero-new-desc {
    font-size: 1.1rem;
    max-width: 100%;
  }
  .hero-new-actions {
    flex-direction: column;
  }
  .visual-card-float {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 90%;
    justify-content: center;
    animation: none;
  }

  .define-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .timeline-container::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .timeline-right {
    left: 0%;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .doc-screenshot {
    margin-top: 1rem;
  }

  .whitelist-hero h1 {
    font-size: 2.5rem;
  }
}
