/* ===== 3. Section Components ===== */

/* --- GEO Value Cards --- */
.geo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.geo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.geo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: 0;
  transition: var(--transition);
}

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

.geo-card:hover::before {
  opacity: 1;
}

.geo-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(96,165,250,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.geo-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--blue);
}

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

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

/* --- Why GEO Grid --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-item .num-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.why-item .why-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.why-item .why-text p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* --- SEO vs GEO Compare --- */
.vs-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.vs-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
}

.vs-panel.seo {
  opacity: .7;
}

.vs-panel.geo {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  position: relative;
}

.vs-panel.geo::before {
  content: '推荐';
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

.vs-panel h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.vs-panel .vs-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.vs-panel ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

.vs-panel ul li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.vs-panel.seo ul li svg { fill: var(--text-muted); }
.vs-panel.geo ul li svg { fill: var(--blue); }

.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.vs-divider .vs-label {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-card .svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(96,165,250,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card .svc-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--blue);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

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

/* --- Pricing Grid --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-card .popular-tag {
  position: absolute;
  top: 0;
  right: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
}

.pricing-card .plan-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pricing-card .plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card .plan-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.pricing-card .plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card .plan-price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card .plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
}

.pricing-card .plan-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--blue);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Compare Table --- */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}

.compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
}

.compare-table thead th.geo-col {
  color: var(--blue-bright);
}

.compare-table tbody td {
  padding: 14px 20px;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.compare-table tbody td:first-child {
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.compare-table tbody td.geo-col {
  color: var(--blue-bright);
  font-weight: 600;
}

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

.compare-table .check-icon {
  width: 18px;
  height: 18px;
  fill: var(--green);
}

.compare-table .cross-icon {
  width: 18px;
  height: 18px;
  fill: var(--red);
  opacity: .5;
}

/* --- Data Strip --- */
.data-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.data-item {
  text-align: center;
}

.data-item .data-num {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-bright), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 6px;
}

.data-item .data-label {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

/* --- Process Flow --- */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.process-step .step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 2;
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: .3;
  z-index: 1;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* --- About Layout --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(37,99,235,.06);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.3px;
}

.about-text .about-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.about-stat .stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 4px;
}

.about-stat .stat-num .plus {
  font-size: 20px;
  color: var(--blue-bright);
}

.about-stat .stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- News Grid --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.news-card .news-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-card .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .news-img .img-placeholder {
  font-size: 14px;
  color: rgba(255,255,255,.3);
}

.news-card .news-body {
  padding: 22px 24px;
}

.news-card .news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(37,99,235,.06);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .news-summary {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-section .cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-col .footer-brand .logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col .footer-brand .logo-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-col .footer-brand .brand-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.footer-col .footer-brand .brand-name span {
  color: var(--blue-bright);
}

.footer-col .footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-col .footer-social {
  display: flex;
  gap: 12px;
}

.footer-col .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-col .footer-social a:hover {
  background: var(--blue);
}

.footer-col .footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,.5);
}

.footer-col .footer-social a:hover svg {
  fill: #fff;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .3px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* Footer contact list */
.footer-col .footer-contact-list {
  list-style: none;
  margin-bottom: 16px;
}

.footer-col .footer-contact-list li {
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.footer-col .footer-contact-list li a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col .footer-contact-list li a:hover {
  color: var(--blue-bright);
}

/* Footer QR code */
.footer-col .footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.footer-col .footer-qr img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.footer-col .footer-qr span {
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

.footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  transition: var(--transition);
}

.footer-bottom .footer-links a:hover {
  color: var(--blue-bright);
}

/* ===== Consultation Floating Button & Modal ===== */
.consult-float {
  position: fixed;
  right: 20px;
  bottom: 36px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.consult-float-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
  transition: var(--transition);
}

.consult-float-btn:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,99,235,.45);
}

.consult-float-btn .consult-icon {
  width: 18px;
  height: 18px;
}

/* Back to top */
.consult-back-top {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
}

.consult-back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.consult-back-top:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.consult-back-top:hover svg {
  stroke: #fff;
}

.consult-back-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-sub);
  transition: var(--transition);
}

/* --- Consultation Modal --- */
.consult-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.consult-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.consult-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}

.consult-modal-box {
  position: relative;
  width: 440px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 60px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.consult-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: none;
  font-size: 20px;
  line-height: 1;
  color: var(--text-sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}

.consult-modal-close:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.consult-modal-header {
  text-align: center;
  padding: 28px 24px 0;
}

.consult-modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.consult-modal-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

/* Tabs */
.consult-tabs {
  display: flex;
  margin: 18px 24px 0;
  background: var(--surface);
  border-radius: 10px;
  padding: 3px;
}

.consult-tab {
  flex: 1;
  padding: 9px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.consult-tab.active {
  background: var(--white);
  color: var(--blue);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.consult-tab-content {
  display: none;
  padding: 20px 24px 28px;
  overflow-y: auto;
}

.consult-tab-content.active {
  display: block;
}

/* Phone row */
.consult-phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 12px 16px;
  background: var(--blue-pale);
  border-radius: 10px;
  margin-bottom: 18px;
}

.consult-phone-row svg {
  stroke: var(--blue);
}

.consult-phone-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.consult-phone-link:hover {
  text-decoration: underline;
}

.consult-phone-name {
  font-size: 12px;
  color: var(--text-muted);
}

/* Form */
.consult-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.form-group .required {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 72px;
}

.consult-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.consult-submit-btn:hover {
  background: var(--blue-deep);
}

/* Success state */
.consult-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 0;
  text-align: center;
}

.consult-form-success.active {
  display: flex;
}

.consult-form-success h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.consult-form-success p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* WeChat tab */
.consult-wechat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-align: center;
}

.consult-wechat-qr {
  width: 180px;
  height: 180px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-wechat-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

.consult-wechat-box h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.consult-wechat-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.consult-wechat-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 20px;
}

/* --- Footer QR --- */
.footer-col .footer-qr {
  margin-top: 16px;
  text-align: center;
}

.footer-col .footer-qr img {
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.1);
  display: block;
  margin: 0 auto 6px;
}

.footer-col .footer-qr span {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* --- CTA Contact Info --- */
.cta-contact-info {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-contact-info span {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

.cta-contact-info a {
  color: var(--blue-bright);
  font-weight: 600;
}

.cta-contact-info a:hover {
  text-decoration: underline;
}
