@charset "UTF-8";

:root {
  --aw-primary: #426df9;
  --aw-cyan: #0a9fe8;
  --aw-bg: #ffffff;
  --aw-bg-soft: #f5f8ff;
  --aw-card: #ffffff;
  --aw-card-tint: #f6f9ff;
  --aw-border: #e3eaf8;
  --aw-text: #1c2b4a;
  --aw-text-soft: #46577a;
  --aw-text-muted: #7c8aa8;
  --aw-shadow: 0 12px 40px rgba(28, 58, 137, 0.08);
  --aw-radius-lg: 28px;
  --aw-radius-md: 20px;
  --aw-radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.aw-body {
  min-width: 1300px;
  margin: 0;
  color: var(--aw-text);
  background:
    radial-gradient(circle at top left, rgba(66, 109, 249, 0.06), transparent 30%),
    radial-gradient(circle at top right, rgba(10, 159, 232, 0.05), transparent 26%),
    linear-gradient(180deg, #f3f7ff 0%, #ffffff 30%, #f8fbff 100%);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.aw-main {
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.aw-section {
  position: relative;
  padding: 104px 0;
}

.aw-section--summary,
.aw-section--soft {
  background: linear-gradient(180deg, #f5f8ff, #fbfdff);
}

.aw-section--dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(66, 109, 249, 0.07), transparent 40%),
    linear-gradient(180deg, #edf3ff, #f8fbff);
}

.aw-eyebrow,
.aw-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aw-primary);
  font-weight: 600;
}

.aw-eyebrow::before,
.aw-section__tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(66, 109, 249, 0.2), rgba(66, 109, 249, 1));
}

.aw-section__header {
  max-width: 840px;
  margin: 0 auto 56px;
  text-align: center;
}

.aw-section__header h2 {
  margin: 18px 0 16px;
  font-size: 40px;
  line-height: 1.25;
  color: var(--aw-text);
}

.aw-section__header p {
  margin: 0;
  color: var(--aw-text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.aw-grid {
  display: grid;
  gap: 24px;
}

.aw-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.aw-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.aw-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-md);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  transition: all 0.32s ease;
}

.aw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 109, 249, 0.45);
  box-shadow: 0 18px 48px rgba(28, 58, 137, 0.14);
}

.aw-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--aw-text);
}

.aw-card p {
  margin: 0;
  color: var(--aw-text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 52px;
  padding: 0 30px;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.28s ease;
}

.aw-btn--primary {
  background: linear-gradient(120deg, var(--aw-primary), #2f8fe8);
  color: #fff;
  box-shadow: 0 12px 32px rgba(66, 109, 249, 0.32);
}

.aw-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(66, 109, 249, 0.45);
}

.aw-btn--ghost {
  border-color: rgba(66, 109, 249, 0.45);
  color: var(--aw-primary);
  background: #fff;
}

.aw-btn--ghost:hover {
  border-color: var(--aw-primary);
  background: #f0f5ff;
}

/* 首屏 */
.aw-hero {
  position: relative;
  padding: 140px 0 100px;
}

.aw-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(66, 109, 249, 0.12), transparent 42%),
    radial-gradient(circle at 12% 82%, rgba(10, 159, 232, 0.08), transparent 38%);
  pointer-events: none;
}

.aw-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(66, 109, 249, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 109, 249, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 90%);
}

.aw-hero__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
}

.aw-hero__content {
  flex: 1 1 52%;
}

.aw-hero__title {
  margin: 22px 0 18px;
  font-size: 52px;
  line-height: 1.18;
  letter-spacing: -1px;
  color: var(--aw-text);
}

.aw-hero__title span {
  background: linear-gradient(100deg, #2b59f5, #0a9fe8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aw-hero__subtitle {
  margin: 0 0 12px;
  font-size: 20px;
  color: #2c4a8f;
}

.aw-hero__desc {
  margin: 0;
  max-width: 34em;
  color: var(--aw-text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.aw-hero__highlights {
  display: flex;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.aw-hero__highlights li {
  min-width: 128px;
  padding: 14px 18px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  background: #fff;
  box-shadow: var(--aw-shadow);
}

.aw-hero__highlights strong {
  display: block;
  font-size: 22px;
  color: var(--aw-primary);
}

.aw-hero__highlights span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--aw-text-muted);
}

.aw-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.aw-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.aw-hero__tags li {
  padding: 7px 16px;
  border: 1px solid #d5e3ff;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: var(--aw-text-soft);
}

.aw-hero__visual {
  flex: 1 1 48%;
}

.aw-console {
  position: relative;
}

.aw-console__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 60% 40%, rgba(66, 109, 249, 0.14), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.aw-console__window {
  position: relative;
  padding: 24px;
  border: 1px solid #d5e3ff;
  border-radius: var(--aw-radius-md);
  background: #fff;
  box-shadow: 0 30px 70px rgba(28, 58, 137, 0.14);
}

.aw-console__top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9effb;
  font-size: 14px;
  color: var(--aw-text);
}

.aw-console__top > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e3e8f0;
}

.aw-console__top > span:first-child {
  background: #ff5f57;
}

.aw-console__top strong {
  margin-left: 8px;
  font-weight: 600;
}

.aw-console__top em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
  color: #0a9c66;
}

.aw-console__top em i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16b877;
  box-shadow: 0 0 10px rgba(22, 184, 119, 0.6);
  animation: aw-pulse 1.6s ease-in-out infinite;
}

.aw-console__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.aw-console__summary div {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--aw-card-tint);
  border: 1px solid #e9effb;
}

.aw-console__summary small {
  display: block;
  font-size: 12px;
  color: var(--aw-text-muted);
}

.aw-console__summary strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--aw-text);
}

.aw-chat {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.aw-chat__bubble {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--aw-text);
}

.aw-chat__bubble--bot {
  justify-self: start;
  background: #eef4ff;
  border: 1px solid #d5e3ff;
}

.aw-chat__bubble--user {
  justify-self: end;
  background: #f4f6fa;
  border: 1px solid #e3e8f0;
}

.aw-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 36px;
  margin-top: 16px;
}

.aw-wave span {
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--aw-primary), #38b6ff);
  animation: aw-wave 1.1s ease-in-out infinite;
}

.aw-wave span:nth-child(odd) { height: 40%; animation-delay: 0.1s; }
.aw-wave span:nth-child(3n) { height: 75%; animation-delay: 0.25s; }
.aw-wave span:nth-child(4n) { height: 95%; animation-delay: 0.4s; }
.aw-wave span:nth-child(5n) { height: 55%; animation-delay: 0.55s; }

.aw-console__result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #c4e9d4;
  border-radius: 12px;
  background: #edf9f2;
}

.aw-grade {
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #0a9c66, #16b877);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.aw-console__result strong {
  display: block;
  font-size: 14px;
  color: #0a7a52;
}

.aw-console__result p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--aw-text-soft);
}

/* 双模式 */
.aw-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.aw-mode {
  padding: 34px 30px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  transition: all 0.32s ease;
}

.aw-mode:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 109, 249, 0.45);
}

.aw-mode--alt {
  background: linear-gradient(160deg, #eef4ff, #ffffff 70%);
}

.aw-mode__badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: #eaf1ff;
  border: 1px solid #c9dbff;
  color: #2f6bff;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.aw-mode__head h3 {
  margin: 16px 0 8px;
  font-size: 26px;
  color: var(--aw-text);
}

.aw-mode__head p {
  margin: 0;
  color: var(--aw-text-muted);
  font-size: 14px;
}

.aw-mode__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.aw-mode__list li {
  position: relative;
  padding-left: 24px;
  color: var(--aw-text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.aw-mode__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aw-primary), #38b6ff);
}

.aw-mode-table {
  margin-top: 28px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-md);
  overflow: hidden;
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
}

.aw-mode-table table,
.aw-compare table,
.aw-calc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.aw-mode-table th,
.aw-mode-table td,
.aw-compare th,
.aw-compare td,
.aw-calc th,
.aw-calc td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid #e8eefb;
  line-height: 1.55;
  color: var(--aw-text-soft);
}

.aw-mode-table thead th,
.aw-compare thead th,
.aw-calc thead th {
  background: #eef4ff;
  color: var(--aw-text);
  font-size: 15px;
  font-weight: 700;
}

.aw-mode-table tbody td:first-child,
.aw-compare tbody td:first-child,
.aw-calc tbody td:first-child {
  color: var(--aw-text);
  font-weight: 600;
  white-space: nowrap;
}

.aw-mode-table tbody tr:last-child td,
.aw-compare tbody tr:last-child td,
.aw-calc tbody tr:last-child td {
  border-bottom: none;
}

.aw-compare tbody td:nth-child(3) {
  color: #0a9c66;
  font-weight: 600;
}

/* 行业大模型 / 分栏 */
.aw-split {
  display: flex;
  align-items: center;
  gap: 56px;
}

.aw-split__content {
  flex: 1 1 54%;
}

.aw-split__visual {
  flex: 1 1 46%;
}

.aw-split__content h2 {
  margin: 18px 0;
  font-size: 34px;
  line-height: 1.3;
  color: var(--aw-text);
}

.aw-split__content p {
  margin: 0 0 16px;
  color: var(--aw-text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.aw-split__content p strong,
.aw-split__content p strong {
  color: var(--aw-primary);
}

.aw-split__actions {
  margin-top: 24px;
}

.aw-feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.aw-feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--aw-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.aw-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aw-primary), #38b6ff);
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.aw-knowledge,
.aw-sync {
  padding: 26px;
  border: 1px solid #d5e3ff;
  border-radius: var(--aw-radius-md);
  background: #fff;
  box-shadow: 0 30px 70px rgba(28, 58, 137, 0.12);
}

.aw-knowledge__head,
.aw-sync__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e9effb;
  font-size: 15px;
  font-weight: 600;
  color: var(--aw-text);
}

.aw-knowledge__head em,
.aw-sync__head em {
  font-style: normal;
  font-size: 12px;
  color: #0a9c66;
}

.aw-knowledge__item,
.aw-sync__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--aw-card-tint);
  border: 1px solid #e9effb;
  margin-bottom: 10px;
}

.aw-knowledge__item:last-child,
.aw-sync__row:last-child {
  margin-bottom: 0;
}

.aw-knowledge__item small,
.aw-sync__row small {
  flex: 0 0 72px;
  color: var(--aw-text-muted);
  font-size: 13px;
}

.aw-knowledge__item strong,
.aw-sync__row strong {
  font-size: 14px;
  color: var(--aw-text);
  line-height: 1.55;
}

.aw-knowledge__item--ok {
  border: 1px solid #c4e9d4;
  background: #edf9f2;
}

.aw-sync__grade {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, #0a9c66, #16b877);
  color: #fff;
  font-weight: 700;
}

/* 拟人化对话示例 */
.aw-dialog {
  max-width: 880px;
  margin: 44px auto 0;
  padding: 30px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-md);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  display: grid;
  gap: 14px;
}

.aw-dialog__line {
  max-width: 84%;
  padding: 13px 18px;
  border-radius: 14px;
  background: #f4f6fa;
  border: 1px solid #e3e8f0;
  color: var(--aw-text);
  font-size: 15px;
  line-height: 1.65;
  justify-self: end;
}

.aw-dialog__line--bot {
  justify-self: start;
  background: #eef4ff;
  border-color: #d5e3ff;
}

.aw-dialog__who {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #e8edf6;
  font-size: 12px;
  color: var(--aw-text-soft);
}

/* 降本漏斗 */
.aw-funnel {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 28px;
}

.aw-funnel__step {
  flex: 1;
  padding: 22px 18px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  text-align: center;
}

.aw-funnel__step--hot {
  border-color: #bfe8d2;
  background: #edf9f2;
}

.aw-funnel__step strong {
  display: block;
  font-size: 17px;
  color: var(--aw-text);
}

.aw-funnel__step span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--aw-text-muted);
}

.aw-funnel__arrow {
  align-self: center;
  color: var(--aw-primary);
  font-size: 22px;
}

/* 产能测算 */
.aw-calc {
  margin-top: 28px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-md);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  overflow: hidden;
}

.aw-calc__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #e8eefb;
  background: #eef4ff;
}

.aw-calc__head span {
  font-size: 16px;
  font-weight: 700;
  color: var(--aw-text);
}

.aw-calc__head em {
  font-style: normal;
  font-size: 13px;
  color: var(--aw-text-muted);
}

.aw-calc__note {
  margin: 0;
  padding: 14px 22px;
  font-size: 13px;
  color: var(--aw-text-muted);
  line-height: 1.6;
}

/* 客户案例 */
.aw-case {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-md);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  transition: all 0.32s ease;
}

.aw-case:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 109, 249, 0.45);
}

.aw-case__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed #dbe5f7;
}

.aw-case__head strong {
  font-size: 19px;
  color: var(--aw-text);
}

.aw-case__head span {
  font-size: 13px;
  color: var(--aw-primary);
  font-weight: 600;
}

.aw-case ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
}

.aw-case ul li {
  position: relative;
  padding-left: 20px;
  color: var(--aw-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.aw-case ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aw-primary), #38b6ff);
}

.aw-case em {
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: #0a9c66;
}

.aw-cases__note {
  margin: 22px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--aw-text-muted);
}

/* 使用流程 */
.aw-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw-steps li {
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  transition: all 0.32s ease;
}

.aw-steps li:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 109, 249, 0.45);
}

.aw-steps__num {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--aw-primary);
  letter-spacing: 0.1em;
}

.aw-steps h3 {
  margin: 12px 0 8px;
  font-size: 17px;
  color: var(--aw-text);
}

.aw-steps p {
  margin: 0;
  color: var(--aw-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* FAQ */
.aw-faq {
  max-width: 880px;
}

.aw-faq__item {
  margin-bottom: 14px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  background: var(--aw-card);
  box-shadow: var(--aw-shadow);
  overflow: hidden;
}

.aw-faq__item[open] {
  border-color: rgba(66, 109, 249, 0.5);
}

.aw-faq__item summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--aw-text);
}

.aw-faq__item summary::-webkit-details-marker {
  display: none;
}

.aw-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aw-primary);
  font-size: 24px;
  font-weight: 400;
}

.aw-faq__item[open] summary::after {
  content: "−";
}

.aw-faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--aw-text-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* CTA */
.aw-cta-section {
  padding-bottom: 120px;
}

.aw-cta {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 56px;
  border-radius: var(--aw-radius-lg);
  background: linear-gradient(135deg, #426df9 0%, #2f8fe8 100%);
  box-shadow: 0 30px 70px rgba(66, 109, 249, 0.35);
  color: #fff;
}

.aw-cta__content {
  flex: 1 1 55%;
}

.aw-cta .aw-section__tag {
  color: rgba(255, 255, 255, 0.85);
}

.aw-cta .aw-section__tag::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 1));
}

.aw-cta__content h2 {
  margin: 16px 0 14px;
  font-size: 34px;
  line-height: 1.3;
  color: #fff;
}

.aw-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.75;
}

.aw-cta__links {
  display: flex;
  gap: 22px;
  margin-top: 22px;
}

.aw-cta__links a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
}

.aw-cta__links a:hover {
  color: #ffe9c2;
  border-color: #ffe9c2;
}

.aw-cta__form {
  flex: 1 1 45%;
  display: grid;
  gap: 16px;
}

.aw-cta__form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.aw-cta__form input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--aw-text);
  font-size: 15px;
  outline: none;
}

.aw-cta__form input:focus {
  border-color: #ffe9c2;
}

.aw-cta .aw-btn--primary {
  background: #fff;
  color: #2f6bff;
  box-shadow: 0 12px 30px rgba(10, 40, 120, 0.25);
}

.aw-cta .aw-btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.aw-cta .aw-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* 入场动画 */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(36px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes aw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes aw-wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* footer 价格表单适配 */
.aw-body .getPrice {
  height: auto;
  min-height: 420px;
  padding: 96px 0 112px;
}

.aw-body .getPrice .btn {
  margin: 46px auto 56px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .aw-wave span,
  .aw-console__top em i {
    animation: none;
  }
}
