*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-light: #eff6ff;
  --text-1: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --bg-page: #ffffff;
  --bg-soft: #f9fafb;
  --bg-slate: #f3f4f6;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --shadow-1: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-2: 0 1px 3px rgba(0,0,0,0.08);
  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;
  --container: 1200px;
  --t: 0.2s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 0; }
.section + .section { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.35;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.75;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head .section-sub { margin: 0 auto; }

.i {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.i-lg { width: 22px; height: 22px; }
.i-xl { width: 32px; height: 32px; }
.i-sm { width: 14px; height: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-ghost { background: #fff; color: var(--text-1); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14px; color: var(--text-2); font-weight: 400; }
.nav-link:hover { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-wechat {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: all var(--t);
  background: #fff;
  position: relative;
}
.nav-wechat:hover { color: var(--primary); border-color: var(--primary); }
.nav-wechat strong { color: var(--text-1); font-weight: 600; }
.nav-wechat:hover strong { color: var(--primary); }
.nav-wechat .i:last-child { transition: transform var(--t); }
.nav-wechat.open .i:last-child { transform: rotate(180deg); }

.nav-wechat-popup {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--t);
  z-index: 1001;
  text-align: center;
}
.nav-wechat-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-wechat-qr {
  width: 160px;
  height: 160px;
  margin: 0 auto 12px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.nav-wechat-qr img { width: 100%; height: 100%; object-fit: cover; }
.nav-wechat-id {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
}
.nav-wechat-id strong { color: var(--text-1); }
.nav-wechat-copy {
  width: 100%;
  padding: 7px 14px;
  font-size: 12px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--r-sm);
  transition: all var(--t);
  font-weight: 500;
}
.nav-wechat-copy:hover { background: var(--primary); color: #fff; }
.nav-wechat-copy.copied { background: #10b981; border-color: #10b981; color: #fff; }

.menu-toggle { display: none; }

.hero {
  padding: 120px 0 72px;
  background: var(--text-1);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: normal; color: #93c5fd; }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 520px;
}
.hero-meta-item strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-meta-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.hero-visual {
  position: relative;
}
.hero-cards {
  position: relative;
  width: 100%;
  height: 340px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: #0f172a;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card.active {
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 10;
  opacity: 1;
}
.hero-card.prev {
  transform: translateX(-150px) scale(0.72) rotateY(14deg);
  z-index: 5;
  opacity: 0.65;
  filter: brightness(0.7);
}
.hero-card.next {
  transform: translateX(150px) scale(0.72) rotateY(-14deg);
  z-index: 5;
  opacity: 0.65;
  filter: brightness(0.7);
}
.hero-card.far-prev {
  transform: translateX(-260px) scale(0.5) rotateY(20deg);
  z-index: 1;
  opacity: 0;
}
.hero-card.far-next {
  transform: translateX(260px) scale(0.5) rotateY(-20deg);
  z-index: 1;
  opacity: 0;
}
.hero-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.hero-card-arrow:hover {
  background: rgba(255,255,255,0.3);
}
.hero-card-prev { left: 0; }
.hero-card-next { right: 0; }
.hero-card-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-card-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

.stats {
  background: var(--bg-soft);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
}
.stat-num span { font-size: 16px; color: var(--primary); font-weight: 600; }
.stat-label {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-right: none;
}
.service {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  transition: background var(--t);
}
.service:hover { background: var(--bg-soft); }
.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 20px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
}
.service { text-align: center; }
.service h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}
.service p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.templates { background: var(--bg-soft); }

.template-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.template-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #fff;
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tpl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.tpl-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}

.tpl-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-slate);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.tpl-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tpl-card:hover .tpl-thumb img { transform: scale(1.03); }

.tpl-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-weight: 500;
}

.tpl-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tpl-link { display: block; height: 100%; }
.tpl-link:hover .tpl-title { color: var(--primary); }

.tpl-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
  transition: color var(--t);
}
.tpl-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.tpl-cat {
  font-size: 12px;
  color: var(--text-3);
}
.tpl-view {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
  transition: opacity var(--t);
}

.tpl-thumb-placeholder {
  background: var(--bg-slate);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tpl-placeholder-text {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
  padding: 0 12px;
  text-align: center;
}

.template-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-bottom: none;
  border-right: none;
}
.adv {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  transition: background var(--t);
}
.adv:hover { background: var(--bg-soft); }

.adv-num {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: var(--r-sm);
}
.adv-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.adv-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.process { background: var(--text-1); color: #fff; }
.process .eyebrow { color: #93c5fd; }
.process .section-title { color: #fff; }
.process .section-sub { color: rgba(255,255,255,0.6); }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.proc-step {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.proc-step:last-child { border-right: none; }
.proc-step-num {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.proc-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.proc-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.servers { background: var(--bg-soft); }
.srv-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 20px;
  overflow: hidden;
}
.srv-block-head {
  padding: 20px 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.srv-block-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
}
.srv-block-sub {
  font-size: 13px;
  color: var(--text-2);
}
.srv-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.srv-item:last-child { border-bottom: none; }
.srv-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.srv-item-info {
  flex: 1;
  min-width: 0;
}
.srv-item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.srv-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 4px;
  color: #fff;
  line-height: 1.6;
}
.srv-badge-tx {
  background: #0052D9;
}
.srv-badge-ali {
  background: #FF6A00;
}
.srv-item-price {
  display: flex;
  align-items: baseline;
  color: var(--primary);
  line-height: 1;
}
.price-num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.price-unit {
  font-size: 13px;
  color: var(--text-2);
  margin-left: 6px;
}
.srv-item-body {
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  padding: 14px 18px;
}
.srv-advice-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.srv-advice-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.9;
}
.srv-inline-link {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  transition: opacity var(--t);
}
.srv-inline-link:hover {
  opacity: 0.75;
}
.srv-footer {
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.srv-footer svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--primary);
}
.srv-footer p {
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.7;
}
.srv-footer strong {
  color: var(--primary);
  font-weight: 600;
}

.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-bottom: none;
  background: #fff;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item.active { border-color: var(--primary); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q:hover { color: var(--primary); }
.faq-q:focus { outline: none; }
.faq-q:focus-visible { box-shadow: inset 0 0 0 2px var(--primary); }

.faq-toggle {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text-3);
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 12px; height: 1px; }
.faq-toggle::after { width: 1px; height: 12px; transition: transform var(--t); }
.faq-item.active .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
}

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tst {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
}
.tst-stars {
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.tst-text {
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tst-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tst-ava {
  width: 36px; height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  border-radius: var(--r-sm);
}
.tst-name strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.tst-name span {
  font-size: 12px;
  color: var(--text-3);
}

.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.8;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.contact-row:hover {
  border-color: var(--primary);
}
.contact-row-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--r-sm);
}
.contact-row-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.contact-row-label {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 2px;
}
.contact-row-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.copy-btn {
  font-size: 12px;
  color: var(--primary);
  padding: 4px 10px;
  border: 1px solid var(--primary);
  border-radius: var(--r-sm);
  transition: all var(--t);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.copy-btn:hover {
  background: var(--primary);
  color: #fff;
}
.copy-btn.copied {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.contact-hours {
  font-size: 13px;
  color: var(--text-2);
  padding-left: 2px;
}
.contact-hours strong { color: var(--text-1); font-weight: 500; }

.qr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 28px;
  text-align: center;
}
.qr-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  padding: 8px;
  border-radius: var(--r-sm);
}
.qr-img img { width: 100%; height: 100%; object-fit: cover; }
.qr-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.qr-card p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
}
.qr-code-id {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.02em;
}

.cta-bar {
  background: var(--primary);
  padding: 36px 0;
  color: #fff;
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cta-text p {
  font-size: 13px;
  opacity: 0.8;
}
.cta-actions { display: flex; gap: 10px; }
.cta-bar .btn-ghost {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.cta-bar .btn-ghost:hover {
  background: transparent;
  color: #fff;
}

.footer {
  background: #111827;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 0;
}
.foot-simple-center {
  display: flex;
  justify-content: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand .logo { color: #fff; }

.foot-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--text-1);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 2000;
  box-shadow: var(--shadow-2);
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast-icon {
  color: #10b981;
  margin-right: 6px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service { border-bottom: 1px solid var(--line); }
  .services-grid { border-bottom: none; }
  .template-grid { grid-template-columns: repeat(3, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-step { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .tst-grid { grid-template-columns: 1fr; }
  .foot-simple-center { padding-bottom: 20px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .menu-toggle { display: flex; color: var(--text-1); }
  .hero { padding: 96px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 28px; }
  .hero-meta { flex-wrap: wrap; gap: 20px 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--line); }
  .template-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr; }
  .adv { border-right: none; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-simple-center { padding-bottom: 16px; }
  .cta-row { flex-direction: column; text-align: center; }
  .hero-ctas .btn { flex: 1; }
  .section { padding: 56px 0; }
  .section-title { font-size: 22px; }
  .qr-img { width: 160px; height: 160px; }
  .srv-block-head { padding: 16px 20px; flex-direction: column; gap: 4px; }
  .srv-item { padding: 20px; }
  .srv-item-head { flex-direction: column; align-items: stretch; }
  .srv-item-head .btn { align-self: flex-start; }
  .srv-item-body { padding: 12px 14px; }
  .srv-footer { padding: 16px 20px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .template-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; }
  .template-cats { width: 100%; }
  .cat-btn { flex: 1; text-align: center; font-size: 12px; padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
