/* ===== fonts-local.css ===== */
@font-face {
  font-family: 'Playfair Local';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/playfair-display-latin-v40.woff2') format('woff2');
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

/* ===== styles.css ===== */
:root {
  --ink: #0d0d0f;
  --ink-light: #1a1a1f;
  --ink-mid: #2a2a32;
  --charcoal: #3d3d47;
  --slate: #6b6b7b;
  --silver: #9e9eaf;
  --mist: #c8c8d4;
  --cloud: #e8e8ef;
  --snow: #f4f4f8;
  --white: #fefeff;
  --amber: #d4a04a;
  --amber-light: #e8bf6a;
  --amber-glow: #d4a04a33;
  --amber-deep: #b8862e;
  --red-dot: #e85d5d;
  --yellow-dot: #f0c940;
  --green-dot: #4cd964;
  --font-display: 'Playfair Local', Georgia, 'Times New Roman', serif;
  --font-heading: 'Playfair Local', Georgia, 'Times New Roman', serif;
  --font-body: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans CJK SC', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--mist);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}


.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}


.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reduced-motion .reveal,
.reduced-motion .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .js .reveal,
  .js .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(13, 13, 15, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(212, 160, 74, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 15, 0.92);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 138px;
  height: 50px;
  display: block;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  border-radius: 10px;
  letter-spacing: -0.02em;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--amber-glow);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav-lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  min-width: 112px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 74, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(212, 160, 74, 0.13), rgba(212, 160, 74, 0.05)),
    rgba(9, 10, 13, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.nav-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 50px;
  height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  color: rgba(236, 231, 221, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.nav-lang-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-lang-link.active {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(236, 193, 110, 1), rgba(212, 160, 74, 1));
  box-shadow:
    0 12px 26px rgba(212, 160, 74, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-inner {
    position: relative;
    gap: 12px;
    padding: 0 20px;
    min-width: 0;
  }

  .nav-logo {
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-text {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    z-index: 20;
    flex-direction: column;
    gap: 0;
    padding: 14px 18px;
    border: 1px solid rgba(212, 160, 74, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(212, 160, 74, 0.08), rgba(212, 160, 74, 0.03)),
      rgba(13, 13, 15, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 2px;
  }

  .nav-links a::after {
    bottom: 6px;
  }

  .nav-actions {
    min-width: 0;
    margin-left: auto;
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 100px;
    border: 1px solid rgba(212, 160, 74, 0.32);
    background: rgba(212, 160, 74, 0.08);
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(212, 160, 74, 0.08);
  }
}


.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 160, 74, 0.38);
  background: rgba(212, 160, 74, 0.08);
  border-radius: 100px;
  color: var(--amber);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(212, 160, 74, 0.08);
}

.nav-search-btn:hover {
  color: var(--white);
  border-color: rgba(212, 160, 74, 0.35);
  background: rgba(212, 160, 74, 0.1);
}

.nav-search-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}


.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(32px) saturate(1.2);
  -webkit-backdrop-filter: blur(32px) saturate(1.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 32px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease-out-expo);
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0) scale(1);
}

.search-overlay-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-mid);
  border-radius: 14px;
  background: var(--ink-light);
  color: var(--silver);
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
}

.search-overlay-close:hover {
  border-color: var(--amber);
  color: var(--white);
  background: rgba(212, 160, 74, 0.1);
}

.search-overlay-form {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  padding: 12px 16px 12px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-overlay-form:focus-within {
  border-color: rgba(212, 160, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(212, 160, 74, 0.06), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-overlay-form .search-icon {
  flex-shrink: 0;
  color: var(--amber);
  opacity: 0.7;
}

.search-overlay-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--white);
  font-family: var(--font-body);
  padding: 8px 0;
}

.search-overlay-input::placeholder {
  color: var(--slate);
}

.search-overlay-submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  border: none;
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.search-overlay-submit:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px var(--amber-glow);
}

.search-overlay-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate);
}

.search-overlay-hint kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--silver);
  background: var(--ink);
  border: 1px solid var(--ink-mid);
  border-radius: 6px;
}

.search-overlay-tags {
  margin-top: 32px;
}

.search-overlay-tags-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin-bottom: 14px;
}

.search-overlay-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  padding: 8px 18px;
  border: 1px solid var(--ink-mid);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.search-tag:hover {
  border-color: rgba(212, 160, 74, 0.4);
  color: var(--amber);
  background: rgba(212, 160, 74, 0.06);
}

body.search-open {
  overflow: hidden;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--ink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--amber-glow);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--mist);
  border: 1.5px solid var(--ink-mid);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 22px;
}

.btn-lg {
  font-size: 16px;
  padding: 18px 38px;
}


.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 20px;
  position: relative;
  padding: 0 24px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--amber);
  opacity: 0.4;
}

.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 16px;
  color: var(--silver);
  margin-top: 20px;
  line-height: 1.8;
}


.hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 45px) 40px 45px;
  overflow: hidden;
}

.hero-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(212, 160, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 74, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  background: rgba(212, 160, 74, 0.08);
  border: 1px solid rgba(212, 160, 74, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--silver);
  margin-top: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-mid);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--amber);
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--slate);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--ink-mid);
}


.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-mockup {
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.6s var(--ease-out-expo);
}

.hero-mockup:hover {
  transform: translateY(-4px) rotateX(1deg);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-mid);
}

.mockup-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: var(--red-dot); }
.dot.yellow { background: var(--yellow-dot); }
.dot.green { background: var(--green-dot); }

.mockup-url {
  font-size: 11px;
  color: var(--slate);
  background: var(--ink-light);
  padding: 4px 16px;
  border-radius: 6px;
  margin-left: 12px;
  flex: 1;
  text-align: center;
}

.mockup-screen {
  padding: 24px;
  min-height: 320px;
}

.mockup-nav-bar {
  height: 8px;
  background: var(--ink-mid);
  border-radius: 4px;
  margin-bottom: 24px;
  width: 60%;
}

.mockup-hero-block {
  margin-bottom: 24px;
}

.mockup-line {
  height: 10px;
  background: linear-gradient(90deg, var(--ink-mid), var(--charcoal));
  border-radius: 5px;
  margin-bottom: 10px;
}

.mockup-line.w80 { width: 80%; }
.mockup-line.w60 { width: 60%; }

.mockup-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mockup-btn {
  width: 80px;
  height: 28px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  border-radius: 14px;
}

.mockup-btn.ghost {
  background: transparent;
  border: 1.5px solid var(--ink-mid);
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-card {
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.mockup-card-img {
  height: 60px;
  background: linear-gradient(135deg, var(--ink-mid), var(--charcoal));
}

.mockup-card-text {
  padding: 10px;
}

.mockup-card-text::before {
  content: '';
  display: block;
  height: 6px;
  width: 80%;
  background: var(--ink-mid);
  border-radius: 3px;
  margin-bottom: 6px;
}

.mockup-card-text::after {
  content: '';
  display: block;
  height: 6px;
  width: 50%;
  background: var(--ink-mid);
  border-radius: 3px;
}


.floating-tag {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(18, 18, 24, 0.9);
  border: 1px solid rgba(212, 160, 74, 0.18);
  color: var(--amber);
  backdrop-filter: blur(10px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  animation: float 6s ease-in-out infinite;
}

.tag-1 { top: -10px; right: -10px; animation-delay: 0s; }
.tag-2 { bottom: 60px; left: -20px; animation-delay: 2s; }
.tag-3 { bottom: -10px; right: 40px; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


.services {
  padding: 120px 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  padding: 40px 28px;
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--ink-mid);
  line-height: 1;
  opacity: 0.5;
  transition: color 0.4s ease;
}

.service-card:hover {
  border-color: var(--amber);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 160, 74, 0.08);
}

.service-card:hover::before {
  color: var(--amber);
  opacity: 0.2;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--amber);
  margin-bottom: 28px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.service-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 20px;
  color: var(--amber);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease-out-expo);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
  }

  .nav-lang-switch {
    min-width: 94px;
    padding: 3px;
    gap: 2px;
    border-radius: 12px;
  }

  .nav-lang-link {
    min-width: 42px;
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 11px;
  }

  .nav-search-btn,
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    gap: 10px;
    padding: 0 14px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
  }

  .nav-lang-switch {
    min-width: 94px;
    padding: 3px;
    gap: 2px;
    border-radius: 12px;
  }

  .nav-lang-link {
    min-width: 42px;
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 11px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 11px;
  }
}

/* ===== styles-sections.css ===== */
.templates {
  padding: 120px 0;
  background: var(--ink-light);
  position: relative;
}

.templates::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 160, 74, 0.03), transparent 60%);
  pointer-events: none;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.template-card {
  position: relative;
  display: block;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
}

.template-card-preview-link,
.template-card-title-link {
  color: inherit;
  text-decoration: none;
}

.template-card-preview-link {
  display: block;
}

.template-card-title-link {
  display: block;
  flex: 1;
  min-width: 0;
}

.template-card-preview-link:focus-visible,
.template-card-title-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.template-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.template-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ink-mid);
  background: var(--ink-light);
}

.template-preview img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.template-card:hover .template-preview img {
  transform: scale(1.03);
}

.template-browser {
  background: var(--ink);
  border: 1px solid var(--ink-mid);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}

.template-card:hover .template-browser {
  transform: translateY(-6px) scale(1.01);
}

.tb-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-mid);
}

.tb-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-mid);
}

.tb-content {
  padding: 16px;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
}

.tb-block {
  border-radius: 8px;
  flex: 0 0 auto;
  height: 60px;
}

.tb-block.tall {
  flex: 1 1 auto;
  height: auto;
  margin-bottom: 12px;
}

.tb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 0 0 auto;
}

.template-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 15, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.template-card:hover .template-overlay {
  opacity: 1;
}

.template-card-preview-link:focus-visible .template-overlay,
.template-card-title-link:focus-visible + .template-type {
  opacity: 1;
}

.template-card-preview-link:focus-visible .template-overlay {
  opacity: 1;
}

.template-card-preview-link:focus-visible .template-preview img {
  transform: scale(1.03);
}

.template-overlay .btn {
  pointer-events: none;
}

.template-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 16px 4px 14px;
  min-height: 78px;
}

.template-info h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  flex: 1;
}

.template-type {
  font-size: 12px;
  color: var(--slate);
  background: var(--ink);
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease,
    box-shadow 0.3s ease, transform 0.3s ease;
}

a.template-type:hover,
a.template-type:focus-visible {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 10px 24px rgba(212, 160, 74, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.templates-cta {
  text-align: center;
  margin-top: 56px;
}


.pricing {
  padding: 80px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 74, 0.2);
}

.pricing-card.featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(212, 160, 74, 0.06) 0%, var(--ink-light) 100%);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  padding: 6px 22px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.pricing-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 12px 0 8px;
}

.currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.price {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 16px;
  color: var(--silver);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mist);
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 42, 50, 0.5);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}


.plugin-card {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(212, 160, 74, 0.1), var(--ink-light));
  border: 1px solid rgba(212, 160, 74, 0.3);
  border-radius: 20px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 32px;
}

.plugin-card-main {
  min-width: 0;
}

.plugin-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.plugin-card-desc {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.plugin-card-cta {
  display: inline-flex;
}

.plugin-card-features {
  min-width: 0;
}

.plugin-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  columns: 2;
  column-gap: 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.plugin-card-list li {
  position: relative;
  padding-left: 18px;
  break-inside: avoid;
  margin-bottom: 6px;
}

.plugin-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4a04a;
}

.plugin-card-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--silver);
}

@media (max-width: 860px) {
  .plugin-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .plugin-card-list {
    columns: 1;
  }

  .plugin-card-cta,
  .plugin-card-cta .btn {
    width: 100%;
    justify-content: center;
  }
}


.testimonials {
  padding: 80px 0;
  background: var(--ink-light);
  position: relative;
}

.testimonials-slider {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 16px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--ink);
  border: 1px solid var(--ink-mid);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  min-width: 380px;
  max-width: 420px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.testimonial-card:hover {
  border-color: rgba(212, 160, 74, 0.2);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 24px;
  right: 32px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.author-info strong {
  display: block;
  font-size: 15px;
  color: var(--white);
}

.author-info span {
  font-size: 13px;
  color: var(--slate);
}

.testimonial-stars {
  margin-top: 20px;
  font-size: 16px;
  color: var(--amber);
  letter-spacing: 4px;
}


.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink-mid);
  background: var(--ink);
  color: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(212, 160, 74, 0.1);
}


.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 74, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 160, 74, 0.05), transparent 50%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-contacts {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-item {
  text-align: center;
}

.contact-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--mist);
}


.blog {
  padding: 120px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  position: relative;
  display: block;
  background: var(--ink);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 74, 0.15);
}

.blog-card-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.blog-card-main-link,
.blog-card-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-media-link {
  height: 100%;
}

.blog-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(13, 13, 15, 0.6);
  backdrop-filter: blur(8px);
  color: var(--amber);
  z-index: 1;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease, transform 0.3s ease;
}

a.blog-category:hover,
a.blog-category:focus-visible {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 12px 28px rgba(212, 160, 74, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.blog-body {
  padding: 28px;
}

.blog-body time {
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 12px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

.blog-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  transition: gap 0.3s ease;
}

.blog-link:hover {
  color: var(--amber-light);
}

.blog-card:hover .blog-link,
.blog-card-link:focus-visible .blog-link {
  color: var(--amber-light);
}


.footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-mid);
  padding: 88px 0 64px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-mid);
}

.footer-brand p {
  font-size: 14px;
  color: var(--silver);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--silver);
  padding: 5px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: var(--amber);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--slate);
}

.icp-link {
  color: inherit;
  text-decoration: none;
}

.icp-link:hover {
  color: var(--amber);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--slate);
}

.footer-bottom-links a:hover {
  color: var(--amber);
}


@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 44px);
    padding-bottom: 42px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    gap: 44px;
    padding: calc(var(--nav-height) + 56px) clamp(44px, 6vw, 72px) 56px;
    align-items: start;
  }

  .hero-content {
    width: min(100%, 760px);
    max-width: 760px;
  }

  .hero-badge {
    margin-bottom: 24px;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(46px, 6vw, 64px);
    line-height: 1.14;
  }

  .hero-desc {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.85;
  }

  .hero-actions {
    margin-top: 32px;
    gap: 18px;
  }

  .hero-stats {
    gap: 40px;
    margin-top: 40px;
    padding-top: 28px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 13, 15, 0.98);
    padding: 24px 40px;
    gap: 16px;
    border-bottom: 1px solid var(--ink-mid);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-search-btn {
    width: 34px;
    height: 34px;
  }

  .nav-search-btn svg {
    width: 18px;
    height: 18px;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    padding: 2px;
  }

  .search-overlay {
    padding-top: 12vh;
  }

  .search-overlay-inner {
    padding: 0 20px;
  }

  .search-overlay-form {
    width: 100%;
    gap: 10px;
    padding: 10px 12px 10px 14px;
    overflow: hidden;
  }

  .search-overlay-input {
    font-size: 16px;
    min-width: 0;
  }

  .search-overlay-submit {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex: 0 0 42px;
  }

  .search-overlay-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .search-overlay-hint {
    display: none;
  }

  .section-container {
    padding: 0 24px;
  }

  .hero {
    padding: calc(var(--nav-height) + 22px) 24px 34px;
    gap: 26px;
  }

  .hero-visual {
    display: none;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.18;
    letter-spacing: -0.03em;
  }

  .hero-desc {
    margin-top: 14px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-stats {
    margin-top: 24px;
    padding-top: 18px;
    gap: 14px;
  }

  .stat-num {
    font-size: 24px;
  }

  .mockup-screen {
    min-height: 250px;
    padding: 18px;
  }

  .floating-tag {
    display: none;
  }

  .services-grid,
  .templates-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-contacts {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding: 72px 0 56px;
  }

  .footer-top {
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    text-align: center;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .footer-inner {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 64px 0 48px;
  }

  .footer-top {
    padding-bottom: 32px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .nav-inner {
    padding: 0 12px;
  }

  .nav-logo {
    gap: 10px;
    min-width: 0;
  }

  .logo-mark {
    width: 127px;
    height: 46px;
  }

  .logo-text {
    font-size: 18px;
    line-height: 1;
  }

  .nav-search-btn {
    width: 32px;
    height: 32px;
  }

  .nav-search-btn svg {
    width: 16px;
    height: 16px;
  }

  .nav-toggle {
    gap: 4px;
    padding: 1px;
  }

  .nav-toggle span {
    width: 22px;
  }

  .search-overlay-inner {
    padding: 0 14px;
  }

  .search-overlay-form {
    gap: 8px;
    padding: 10px 10px 10px 12px;
  }

  .search-overlay-submit {
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex: 0 0 40px;
  }

  .hero {
    padding: calc(var(--nav-height) + 18px) 20px 30px;
    gap: 20px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero-stats {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px 12px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-stats .stat {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 88px;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat-plus {
    font-size: 18px;
  }

  .stat-label {
    margin-top: 4px;
  }

  .mockup-screen {
    min-height: 214px;
    padding: 14px;
  }

  .mockup-nav-bar {
    margin-bottom: 16px;
  }

  .mockup-hero-block {
    margin-bottom: 16px;
  }
}

/* ===== pages.css ===== */
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  width: 100%;
}


.page-hero {
  padding: calc(var(--nav-height) + 56px) 0 40px;
  text-align: center;
  position: relative;
}

.page-hero .section-container {
  max-width: 720px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.8;
}


.template-filter {
  padding: 20px 0 56px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--ink-mid);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.filter-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border-color: transparent;
  color: var(--ink);
}


.templates-gallery {
  padding: 20px 0 120px;
  background: var(--ink-light);
}

.templates-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.templates-full-grid .template-card .template-info {
  padding: 16px 4px 8px;
}

.template-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
  padding: 0 4px;
}


.custom-template-cta {
  padding: 100px 0 120px;
  position: relative;
}

.custom-template-cta .cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 40px;
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 24px;
}

.custom-template-cta .cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.custom-template-cta .cta-subtitle {
  font-size: 16px;
  color: var(--silver);
  margin-bottom: 28px;
  line-height: 1.6;
}


.about-story {
  padding: 80px 0 120px;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.3;
}

.about-story-text {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-text:last-child {
  margin-bottom: 0;
}


.about-story-visual {
  position: relative;
}

.story-timeline {
  position: relative;
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  padding: 48px 40px;
  min-height: 360px;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--ink-mid));
  border-radius: 2px;
  opacity: 0.6;
}

.timeline-milestone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-left: 56px;
}

.timeline-milestone:last-child {
  margin-bottom: 0;
}

.milestone-dot {
  position: absolute;
  left: 32px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 16px var(--amber-glow);
}

.milestone-year {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  min-width: 56px;
}

.milestone-label {
  font-size: 15px;
  color: var(--mist);
}


.about-stats {
  padding: 60px 0 100px;
  background: var(--ink-light);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-stat-card {
  background: var(--ink);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.about-stat-card:hover {
  border-color: rgba(212, 160, 74, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-suffix {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  margin-left: 2px;
}

.about-stat-label {
  display: block;
  font-size: 14px;
  color: var(--slate);
  margin-top: 12px;
}


.about-values {
  padding: 120px 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.value-card {
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out-expo);
}

.value-card:hover {
  border-color: var(--amber);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 160, 74, 0.08);
}

.value-icon {
  width: 56px;
  height: 56px;
  color: var(--amber);
  margin-bottom: 24px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
}


.about-why {
  padding: 120px 0;
  background: var(--ink-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-item {
  background: var(--ink);
  border: 1px solid var(--ink-mid);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out-expo);
}

.why-item:hover {
  border-color: rgba(212, 160, 74, 0.25);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--amber);
  margin-bottom: 20px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}


@media (max-width: 1024px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}


.blog-filter {
  padding: 0 0 48px;
}

.blog-featured {
  padding: 0 0 32px;
}

.blog-mobile-featured-card {
  display: none;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(26, 26, 31, 0.98) 0%, rgba(13, 13, 15, 0.98) 100%);
  border: 1px solid rgba(212, 160, 74, 0.14);
  border-radius: 24px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  transition: all 0.4s var(--ease-out-expo);
}

.blog-featured-card-image-link,
.blog-featured-card-body-link {
  color: inherit;
  text-decoration: none;
}

.blog-featured-card-image-link {
  display: block;
  height: 100%;
}

.blog-featured-card-body-link {
  display: block;
}

.blog-featured-card:hover {
  border-color: rgba(212, 160, 74, 0.28);
  background: linear-gradient(135deg, rgba(34, 34, 42, 0.98) 0%, rgba(18, 18, 23, 0.98) 100%);
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.38);
}

.blog-featured-card-body-link:focus-visible,
.blog-featured-card-image-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.blog-featured-card:hover .blog-link,
.blog-featured-card-body-link:focus-visible .blog-link {
  color: var(--amber-light);
}

.blog-featured-card:hover .blog-featured-excerpt,
.blog-featured-card-body-link:focus-visible .blog-featured-excerpt {
  color: var(--cloud);
}

.blog-featured-img {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.blog-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 15, 0.08) 0%,
    rgba(13, 13, 15, 0.16) 34%,
    rgba(13, 13, 15, 0.58) 72%,
    rgba(13, 13, 15, 0.94) 100%
  );
  z-index: 1;
}

.featured-img-content {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.featured-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: var(--ink);
}

.blog-featured-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(31, 31, 37, 0.92) 0%, rgba(18, 18, 23, 0.98) 100%);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.03);
}

.blog-featured-body .blog-category {
  position: static;
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
}

.blog-featured-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-featured-body time {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 16px;
}

.blog-featured-excerpt {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-mobile-featured-card {
  background: linear-gradient(180deg, rgba(28, 28, 34, 0.98) 0%, rgba(15, 15, 19, 0.98) 100%);
  border-color: rgba(212, 160, 74, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.blog-mobile-featured-card:hover {
  border-color: rgba(212, 160, 74, 0.24);
  background: linear-gradient(180deg, rgba(35, 35, 42, 0.98) 0%, rgba(18, 18, 23, 0.98) 100%);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.blog-mobile-featured-card .blog-img::after {
  background: linear-gradient(to top, rgba(13, 13, 15, 0.96) 0%, rgba(13, 13, 15, 0.18) 68%);
}

.blog-mobile-featured-card .blog-body {
  background: linear-gradient(180deg, rgba(29, 29, 35, 0.94) 0%, rgba(17, 17, 21, 0.98) 100%);
}

.blog-mobile-featured-card:hover .blog-body {
  background: linear-gradient(180deg, rgba(35, 35, 42, 0.96) 0%, rgba(20, 20, 24, 0.99) 100%);
}

.blog-grid-full {
  padding-bottom: 0;
}

.blog:has(.blog-grid-full) {
  padding-top: 40px;
  padding-bottom: 24px;
}


.contact-content {
  padding: 0 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 74, 0.1);
  border: 1px solid rgba(212, 160, 74, 0.2);
  border-radius: 12px;
  color: var(--amber);
}

.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 15px;
  color: var(--silver);
}

.contact-info-item a:hover {
  color: var(--amber);
}

.contact-hours {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-mid);
}

.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-hours p {
  font-size: 15px;
  color: var(--silver);
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-hours p:last-child {
  margin-bottom: 0;
}

.contact-form-wrap {
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 24px;
  padding: 48px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form .form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--mist);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--ink-mid);
  background: var(--ink);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239e9eaf' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  grid-column: 1 / -1;
}


.faq-section {
  padding: 120px 0;
  background: #f7f7f8;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1f;
  border: 1px solid var(--ink-mid);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: rgba(212, 160, 74, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fefeff;
  padding: 24px 28px;
  cursor: pointer;
  position: relative;
}

.faq-question:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
  border-radius: 12px;
}

.faq-question::after {
  content: '−';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--amber);
  font-weight: 400;
}

.faq-item:not(.open) .faq-question::after {
  content: '+';
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  color: #9e9eaf;
  line-height: 1.7;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.faq-item:not(.open) .faq-answer {
  max-height: 0;
  padding: 0 28px;
  opacity: 0;
}

.faq-item.open .faq-answer {
  padding-top: 0;
  padding-bottom: 24px;
}


@media (max-width: 1024px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    min-height: 240px;
  }

  .blog-featured-img::after {
    background: linear-gradient(
      to top,
      rgba(13, 13, 15, 0.95) 0%,
      rgba(13, 13, 15, 0.42) 38%,
      rgba(13, 13, 15, 0.06) 72%
    );
  }

  .blog-featured-body {
    padding: 36px 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    position: static;
  }

  .templates-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-height) + 34px) 0 32px;
  }

  .blog-featured {
    display: none;
  }

  .blog-mobile-featured-card {
    display: block;
  }

  .blog-featured {
    width: 100%;
  }

  .blog-featured-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 20px;
  }

  .blog-featured-img {
    height: 200px;
    min-height: 200px;
  }

  .blog-grid {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .blog-grid .blog-card {
    width: 100%;
  }

  .blog-featured-body {
    padding: 28px;
  }

  .blog-featured-body .blog-category {
    margin-bottom: 10px;
  }

  .blog-featured-title {
    font-size: 18px;
    margin: 10px 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.4em * 2);
  }

  .blog-featured-body time {
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  }

  .blog-featured-excerpt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.6em * 3);
  }

  .blog-grid .blog-img {
    height: 200px;
  }

  .blog-grid .blog-body h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.4em * 2);
  }

  .blog-grid .blog-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.6em * 3);
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    font-size: 13px;
    padding: 8px 18px;
  }

  .templates-full-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
    margin: 0 auto;
  }

  .custom-template-cta .cta-inner {
    padding: 40px 24px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .contact-form .form-group-full {
    grid-column: auto;
  }

  .form-submit {
    grid-column: auto;
  }

  .faq-question {
    padding-right: 48px;
  }
}

/* ===== shell.css ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(13, 13, 15, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(212, 160, 74, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 15, 0.92);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 138px;
  height: 50px;
  display: block;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--amber-glow);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav-lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  min-width: 112px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 74, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(212, 160, 74, 0.13), rgba(212, 160, 74, 0.05)),
    rgba(9, 10, 13, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.nav-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 50px;
  height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  color: rgba(236, 231, 221, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.nav-lang-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-lang-link.active {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(236, 193, 110, 1), rgba(212, 160, 74, 1));
  box-shadow:
    0 12px 26px rgba(212, 160, 74, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 160, 74, 0.38);
  background: rgba(212, 160, 74, 0.08);
  border-radius: 100px;
  color: var(--amber);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(212, 160, 74, 0.08);
}

.nav-search-btn:hover {
  color: var(--white);
  border-color: rgba(212, 160, 74, 0.35);
  background: rgba(212, 160, 74, 0.1);
}

.nav-search-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(32px) saturate(1.2);
  -webkit-backdrop-filter: blur(32px) saturate(1.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 32px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease-out-expo);
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0) scale(1);
}

.search-overlay-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-mid);
  border-radius: 14px;
  background: var(--ink-light);
  color: var(--silver);
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
}

.search-overlay-close:hover {
  border-color: var(--amber);
  color: var(--white);
  background: rgba(212, 160, 74, 0.1);
}

.search-overlay-form {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  padding: 12px 16px 12px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-overlay-form:focus-within {
  border-color: rgba(212, 160, 74, 0.45);
  box-shadow: 0 0 0 4px rgba(212, 160, 74, 0.06), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-overlay-form .search-icon {
  flex-shrink: 0;
  color: var(--amber);
  opacity: 0.7;
}

.search-overlay-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--white);
  font-family: var(--font-body);
  padding: 8px 0;
}

.search-overlay-input::placeholder {
  color: var(--slate);
}

.search-overlay-submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  border: none;
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.search-overlay-submit:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px var(--amber-glow);
}

.search-overlay-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate);
}

.search-overlay-hint kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--silver);
  background: var(--ink);
  border: 1px solid var(--ink-mid);
  border-radius: 6px;
}

.search-overlay-tags {
  margin-top: 32px;
}

.search-overlay-tags-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin-bottom: 14px;
}

.search-overlay-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  padding: 8px 18px;
  border: 1px solid var(--ink-mid);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.search-tag:hover {
  border-color: rgba(212, 160, 74, 0.4);
  color: var(--amber);
  background: rgba(212, 160, 74, 0.06);
}

.footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-mid);
  padding: 88px 0 64px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-mid);
}

.footer-brand p {
  font-size: 14px;
  color: var(--silver);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--silver);
  padding: 5px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: var(--amber);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--slate);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--slate);
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

@media (max-width: 1024px) {
  .nav-inner {
    position: relative;
    gap: 12px;
    padding: 0 20px;
    min-width: 0;
  }

  .nav-logo {
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-text {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    z-index: 20;
    flex-direction: column;
    gap: 0;
    padding: 14px 18px;
    border: 1px solid rgba(212, 160, 74, 0.18);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(212, 160, 74, 0.08), rgba(212, 160, 74, 0.03)),
      rgba(13, 13, 15, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 2px;
  }

  .nav-links a::after {
    bottom: 6px;
  }

  .nav-actions {
    min-width: 0;
    margin-left: auto;
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 100px;
    border: 1px solid rgba(212, 160, 74, 0.32);
    background: rgba(212, 160, 74, 0.08);
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(212, 160, 74, 0.08);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    top: var(--nav-height);
    border-bottom: 1px solid var(--ink-mid);
    border-radius: 0;
    background: rgba(13, 13, 15, 0.98);
    padding: 24px 40px;
    gap: 16px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-lang-switch {
    min-width: 94px;
    padding: 3px;
    gap: 2px;
    border-radius: 12px;
  }

  .nav-lang-link {
    min-width: 42px;
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 11px;
  }

  .nav-cta {
    display: none;
  }

  .nav-search-btn,
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-search-btn svg {
    width: 18px;
    height: 18px;
  }

  .search-overlay {
    padding-top: 12vh;
  }

  .search-overlay-inner {
    padding: 0 20px;
  }

  .search-overlay-form {
    width: 100%;
    gap: 10px;
    padding: 10px 12px 10px 14px;
    overflow: hidden;
  }

  .search-overlay-input {
    font-size: 16px;
    min-width: 0;
  }

  .search-overlay-submit {
    width: 42px;
    height: 42px;
    min-width: 42px;
    flex: 0 0 42px;
  }

  .search-overlay-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .search-overlay-hint {
    display: none;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding: 72px 0 56px;
  }

  .footer-top {
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    text-align: center;
  }

  .footer-inner {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    gap: 10px;
    padding: 0 14px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
  }

  .nav-logo {
    gap: 10px;
    min-width: 0;
  }

  .logo-mark {
    width: 127px;
    height: 46px;
  }

  .nav-search-btn {
    width: 32px;
    height: 32px;
  }

  .nav-search-btn svg {
    width: 16px;
    height: 16px;
  }

  .nav-toggle {
    gap: 4px;
    padding: 1px;
  }

  .nav-toggle span {
    width: 22px;
  }

  .search-overlay-inner {
    padding: 0 14px;
  }

  .search-overlay-form {
    gap: 8px;
    padding: 10px 10px 10px 12px;
  }

  .search-overlay-submit {
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex: 0 0 40px;
  }

  .footer {
    padding: 64px 0 48px;
  }

  .footer-top {
    padding-bottom: 32px;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

/* ===== zaoyefang.css ===== */
:root {
  --bg:           #ffffff;
  --bg-alt:       #f5f5f5;    
  --bg-soft:      #fafafa;
  --surface:      #ffffff;
  --ink:          #1a1a1a;
  --ink-2:        #4b4b4b;
  --muted:        #737373;
  --line:         rgba(0,0,0,.1);
  --line-2:       rgba(0,0,0,.05);

  
  --accent:       #f97316;
  --accent-soft:  #fb923c;
  --accent-deep:  #ea580c;
  --accent-ink:   #7c2d12;

  --serif: "Playfair Display", "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;

  --r: 14px;
  --r-sm: 10px;
  --maxw: 1200px;

  --sh-1: 0 10px 28px rgba(0,0,0,.08);
  --sh-2: 0 20px 50px rgba(0,0,0,.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }


.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 14.5px; cursor: pointer; transition: .2s; border: 1px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-dark { background: #333; color: #fff; }
.btn-dark:hover { background: var(--accent); color: #fff; }

.hero-actions .btn { font-family: var(--sans); font-size: 15px; font-weight: 600; }
.hero-actions .btn-outline:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }


.btn-round { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.12); transition: .2s; }
.btn-round:hover { background: var(--accent); color: #fff; }


.btn-cart { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; transition: .2s; }
.btn-cart:hover { background: var(--accent-deep); }




.nav { background: #fff; border-bottom: 1px solid var(--line-2); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; justify-content: space-between; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 22px; font-weight: 700; }
.brand-logo { height: 48px; width: auto; display: block; }
.brand-logo { height: 46px; width: auto; }
.seal { width: 34px; height: 34px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 18px; font-weight: 700; }
.nav-links { display: flex; gap: 0; align-items: stretch; flex: 1; justify-content: center; }
.nav-links a { flex: 0 0 14%; min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--ink-2); padding: 0; border-radius: 0; transition: .2s; }
.nav-links a .nav-cn { font-size: 15px; font-weight: 600; line-height: 1.2; text-align: center; }
.nav-links a .nav-en { font-size: 10px; letter-spacing: 1.5px; opacity: .65; line-height: 1.2; text-align: center; }
.nav-links a:hover { background: var(--accent); color: #fff; }
.nav-links a:hover .nav-en { opacity: .9; }
.nav-links a.active { background: #333333; color: #fff; }
.nav-links a:active { background: #222222; color: #fff; }
.nav-icons { display: flex; align-items: center; gap: 16px; }
.brand { align-self: center; }
.nav-icons a { color: var(--ink-2); transition: .2s; }
.nav-icons a:hover { color: var(--accent); }
.nav-icons a.nav-cta { margin-left: 6px; background: #333333; color: #fff; border-color: transparent; }
.nav-icons a.nav-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }


.section { padding: 80px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.section-head .eyebrow { display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.section-head h2 { font-family: var(--serif); font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; color: var(--ink); line-height: 1.15; }
.section-head p { color: var(--muted); font-size: 15px; margin-top: 10px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.section-head-row h2 { font-family: var(--serif); font-size: clamp(26px, 3.6vw, 36px); font-weight: 700; }
.section-head-row .link-more { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.section-head-row .link-more:hover { background: var(--accent-deep); }


.hero { padding: 50px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 5; }
.hero-tag { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 14px; }
.hero h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 58px); line-height: 1.2; font-weight: 900; color: var(--ink); text-shadow: 0 2px 14px rgba(255,255,255,.75); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-desc { color: var(--ink-2); font-size: 16px; line-height: 1.7; max-width: 420px; margin: 18px 0 28px; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }


.hero-gallery { position: relative; min-height: 520px; overflow: visible; }
.hero-shot { position: absolute; border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--line-2); box-shadow: 0 18px 40px rgba(0,0,0,.16); transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s; cursor: pointer; }
.hero-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-shot.s1 { width: 56%;  top: -12px; left: 36px;   height: 300px; transform: rotate(-9deg); z-index: 3; }
.hero-shot.s2 { width: 54%;  top: 170px; right: -26px; height: 270px; transform: rotate(7deg);  z-index: 2; }
.hero-shot.s3 { width: 52%;  top: 60px;  left: -150px; height: 320px; transform: rotate(-4deg); z-index: 1; }

.hero-shot.s1:hover { transform: rotate(-9deg) translateX(-30px); z-index: 10; box-shadow: 0 26px 60px rgba(0,0,0,.22); }
.hero-shot.s2:hover { transform: rotate(7deg) translateX(30px); z-index: 10; box-shadow: 0 26px 60px rgba(0,0,0,.22); }
.hero-shot.s3:hover { transform: rotate(-4deg) translateX(-30px); box-shadow: 0 26px 60px rgba(0,0,0,.22); }

@media (max-width: 768px) {
  .hero-gallery { position: static; min-height: 0; display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
  .hero-shot { position: relative; width: 100% !important; height: 220px !important; top: auto !important; left: auto !important; right: auto !important; transform: none !important; }
}


.cover { position: relative; aspect-ratio: 3 / 4; border-radius: 6px; overflow: hidden; background: linear-gradient(135deg,#475569,#1e293b); box-shadow: 0 10px 22px rgba(0,0,0,.18); display: flex; flex-direction: column; justify-content: space-between; padding: 18px 16px; color: #fff; }
.cover::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 10px; background: rgba(0,0,0,.22); }
.cover .csh { position: absolute; left: 11px; top: 12px; bottom: 12px; width: 1px; background: rgba(255,255,255,.3); }
.cover .cdec { position: absolute; right: -35px; bottom: -35px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,.16); }
.cover .cdec2 { position: absolute; left: -30px; top: -30px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.1); }
.cover .ct { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.18; position: relative; z-index: 2; padding-left: 4px; }
.cover .cm { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .85; position: relative; z-index: 2; padding-left: 4px; }
.cover .illu { position: absolute; inset: 0; z-index: 1; opacity: .35; }
.cover .illu::after { content: ""; position: absolute; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.35); right: 20px; top: 30px; }

.cover.c1 { background: linear-gradient(135deg,#f59e0b,#b45309); }
.cover.c2 { background: linear-gradient(135deg,#0ea5e9,#0369a1); }
.cover.c3 { background: linear-gradient(135deg,#84cc16,#4d7c0f); }
.cover.c4 { background: linear-gradient(135deg,#ef4444,#991b1b); }
.cover.c5 { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.cover.c6 { background: linear-gradient(135deg,#10b981,#047857); }
.cover.c7 { background: linear-gradient(135deg,#06b6d4,#0e7490); }
.cover.c8 { background: linear-gradient(135deg,#ec4899,#be185d); }
.cover.c9 { background: linear-gradient(135deg,#64748b,#334155); }


.grid-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.work { background: var(--surface); border-radius: var(--r); transition: .25s; position: relative; }
.work:hover { transform: translateY(-5px); }
.work-thumb { position: relative; padding: 18px 18px 0; }
.work .cover { box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.work-badge { position: absolute; top: 28px; left: 28px; z-index: 3; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.work-badge.sale { background: #dc2626; }
.work-cart { position: absolute; right: 26px; bottom: -19px; z-index: 4; }
.work-body { padding: 22px 18px 18px; }
.work-title { font-family: var(--serif); font-size: 17px; font-weight: 700; line-height: 1.25; color: var(--ink); margin-bottom: 4px; }
.work-author { color: var(--muted); font-size: 13.5px; margin-bottom: 10px; }
.work-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.work-price { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--accent); }
.work-price small { font-size: 12px; color: var(--muted); font-family: var(--sans); font-weight: 400; text-decoration: line-through; margin-left: 4px; }
.work-rating { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }


.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lead-copy { max-width: 440px; }
.lead-copy .eyebrow { margin-bottom: 12px; }
.lead-copy h2 { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; line-height: 1.12; margin-bottom: 14px; }
.lead-copy p { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.lead-quote { font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 18px; }
.lead-quote .mark { color: var(--accent); }
.lead-name { font-weight: 700; font-size: 15px; }
.lead-role { color: var(--muted); font-size: 13.5px; margin-bottom: 22px; }
.lead-portrait { display: flex; align-items: center; justify-content: center; gap: 30px; }
.portrait { width: 220px; height: 220px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg,#fde68a,#fbbf24); position: relative; box-shadow: var(--sh-2); }
.portrait svg { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 180px; height: 180px; fill: var(--ink); opacity: .8; }
.lead-dots { display: flex; gap: 8px; }
.lead-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.lead-dots span.active { background: var(--accent); }


.grid-rated { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.rated { display: flex; gap: 12px; align-items: flex-start; }
.rated .cover { width: 70px; flex: none; border-radius: 4px; }
.rated-info h4 { font-family: var(--serif); font-size: 15px; font-weight: 700; line-height: 1.25; margin-bottom: 4px; }
.rated-info .cat { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.rated-info .pr { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--accent); }
.rated-info .stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; margin-top: 4px; }


.grid-blog { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; }
.blog-main { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3.6; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.blog-main .ph { position: absolute; inset: 0; z-index: 0; }
.blog-main .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%); }
.blog-main .content { position: relative; z-index: 2; }
.blog-main .cat { display: inline-block; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; }
.blog-main h3 { font-family: var(--serif); font-size: 24px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.blog-main p { font-size: 14px; opacity: .9; }
.blog-side { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.blog-mini { display: flex; gap: 12px; align-items: flex-start; }
.blog-mini .thumb { width: 80px; height: 80px; border-radius: var(--r-sm); flex: none; overflow: hidden; }
.blog-mini h4 { font-family: var(--serif); font-size: 15px; font-weight: 700; line-height: 1.25; margin-bottom: 6px; }
.blog-mini .date { font-size: 12px; color: var(--muted); }


.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
.step { text-align: center; }
.step-no { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 18px; background: var(--bg-alt); color: var(--accent); font-weight: 700; }
.step h4 { font-size: 15px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted); }

.grid-tpl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.tpl { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 14px; transition: .25s; }
.tpl:hover { box-shadow: var(--sh-1); transform: translateY(-5px); }
.tpl .cover { width: 100%; }
.tpl-info { margin-top: 12px; }
.tpl-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.tpl-cat { font-size: 12px; color: var(--muted); }

.grid-price { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.plan { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 30px 26px; display: flex; flex-direction: column; transition: .25s; }
.plan:hover { box-shadow: var(--sh-1); }
.plan.featured { border-color: var(--accent); }
.plan-badge { display: inline-block; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; width: fit-content; }
.plan-mode { font-family: var(--serif); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.plan-amt { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.plan-amt .cny { font-size: 20px; color: var(--accent); font-family: var(--serif); }
.plan-amt .num { font-family: var(--serif); font-size: 42px; font-weight: 700; }
.plan-amt .note { font-size: 13px; color: var(--muted); }
.plan ul { flex: 1; margin-bottom: 20px; }
.plan li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; margin-bottom: 10px; color: var(--ink-2); }
.plan li svg { flex: none; color: var(--accent); margin-top: 2px; }


.footer { background: var(--ink); color: #d4d4d4; padding: 60px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; border-bottom: 1px solid #333; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: #a3a3a3; font-size: 14px; margin-top: 14px; line-height: 1.65; max-width: 280px; }
.footer-col { text-align: right; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: #a3a3a3; font-size: 13.5px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-icons { display: flex; gap: 12px; margin-top: 18px; }
.footer-icons a { width: 38px; height: 38px; border-radius: 50%; background: #333; color: #fff; display: grid; place-items: center; transition: .2s; }
.footer-icons a:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #737373; flex-wrap: wrap; gap: 12px; }


.page-head { padding: 50px 0 24px; text-align: center; }
.page-head .eyebrow { color: var(--muted); }
.page-head h1 { font-family: var(--serif); font-size: clamp(32px, 5vw, 52px); font-weight: 700; margin-top: 8px; }
.page-head p { color: var(--muted); margin-top: 10px; }
.filterbar { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.filter { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; color: var(--ink-2); font-size: 14px; cursor: pointer; }
.filter.active, .filter:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.result-count { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--ink-2); font-size: 14px; }
.pagination a.active, .pagination a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.crumbs { padding: 18px 0 0; font-size: 13.5px; color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 24px; }
.detail-info h1 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; line-height: 1.15; margin: 8px 0 14px; }
.detail-info .work-author { font-size: 14px; }
.detail-price { font-family: var(--serif); font-size: 32px; color: var(--accent); font-weight: 700; margin: 18px 0; }
.detail-price small { font-size: 14px; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.detail-desc { color: var(--ink-2); line-height: 1.8; margin-bottom: 20px; }
.detail-specs { display: grid; gap: 10px; margin-bottom: 24px; }
.detail-specs li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.detail-specs li svg { flex: none; color: var(--accent); margin-top: 2px; }
.detail-gallery .cover { width: 100%; max-width: 360px; margin: 0 auto; }
.detail-thumbs { display: flex; gap: 12px; justify-content: center; margin-top: 16px; }
.detail-thumbs .t { width: 70px; height: 95px; border-radius: 6px; border: 2px solid transparent; cursor: pointer; }
.detail-thumbs .t.active, .detail-thumbs .t:hover { border-color: var(--accent); }


.detail-meta { display: grid; grid-template-columns: repeat(3, auto); gap: 22px; margin: 18px 0; }
.detail-meta .k { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.detail-meta .v { font-size: 15px; font-weight: 600; color: var(--ink); }
.detail-info .work-cat { display: inline-block; color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: .4px; }
.spec h4 { font-family: var(--serif); font-size: 18px; font-weight: 700; margin: 4px 0 12px; }
.spec ul { display: grid; gap: 10px; margin-bottom: 22px; }
.spec li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.spec li svg { flex: none; color: var(--accent); margin-top: 2px; }
.detail-buy { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.related { margin-top: 64px; }
.cta { background: var(--ink); color: #fff; padding: 64px 0; text-align: center; }
.cta .wrap { max-width: 760px; }
.cta h2 { font-family: var(--serif); font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.cta h2 em { font-style: italic; color: var(--accent-soft); }
.cta p { color: #a3a3a3; font-size: 15px; max-width: 520px; margin: 0 auto 24px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


.reveal { opacity: 0; transform: translateY(20px); transition: .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }


@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .hero-card.large { grid-row: span 1; }
  .lead { grid-template-columns: 1fr; }
  .grid-blog { grid-template-columns: 1fr; }
  .grid-works, .grid-rated { grid-template-columns: repeat(3, 1fr); }
  .grid-tpl { grid-template-columns: repeat(2, 1fr); }
  .grid-price { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .detail { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .grid-works, .grid-rated { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}


.grid-picks .work { overflow: hidden; box-shadow: var(--sh-1); cursor: pointer; }
.grid-picks .work-thumb {
  position: relative; display: block; padding: 0;
  height: 422px; overflow: hidden; border-radius: var(--r) var(--r) 0 0;
  background: var(--bg-soft);
}
.grid-picks .work-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.grid-picks .work-badge { top: 12px; left: 12px; z-index: 4; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.grid-picks .work-overlay {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; opacity: 0;
  background: linear-gradient(180deg, rgba(234,88,12,0) 35%, rgba(234,88,12,.62));
  transition: opacity .3s ease;
}
.grid-picks .work-overlay-txt {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--accent-deep); font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: 999px; transform: translateY(12px);
  transition: transform .3s ease; box-shadow: 0 8px 22px rgba(0,0,0,.25);
}

.grid-picks .work:hover { transform: translateY(-8px); box-shadow: var(--sh-2); }
.grid-picks .work:hover .work-img { transform: scale(1.08); }
.grid-picks .work:hover .work-overlay { opacity: 1; }
.grid-picks .work:hover .work-overlay-txt { transform: translateY(0); }

.grid-picks .work:active { transform: translateY(-3px) scale(.985); }

.grid-picks .work-thumb::after {
  content: ""; position: absolute; top: 0; left: -65%; width: 55%; height: 100%; z-index: 3;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.grid-picks .work:hover .work-thumb::after { animation: picks-sheen .85s ease; }
@keyframes picks-sheen { to { left: 130%; } }

.work-ripple {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.55);
  transform: scale(0); animation: picks-ripple .6s ease-out; pointer-events: none; z-index: 3;
}
@keyframes picks-ripple { to { transform: scale(2.4); opacity: 0; } }
.grid-picks .work-title a { color: var(--ink); }
.grid-picks .work-title a:hover { color: var(--accent); }
.grid-picks .work-body { padding: 18px 18px 20px; text-align: center; }
.grid-picks .work-author { margin-bottom: 0; font-size: 13px; text-align: center; }
.grid-picks .work-author a { color: var(--muted); text-decoration: none; }
.grid-picks .work-author a:hover { color: var(--accent); }


#works .work.reveal { transform: translateY(42px) scale(.95); opacity: 0; transition: .7s cubic-bezier(.2,.7,.2,1); }
#works .work.reveal.in { transform: none; opacity: 1; }
#works .grid-picks .work:nth-child(1) { transition-delay: 0ms; }
#works .grid-picks .work:nth-child(2) { transition-delay: 90ms; }
#works .grid-picks .work:nth-child(3) { transition-delay: 180ms; }
#works .grid-picks .work:nth-child(4) { transition-delay: 270ms; }
#works .grid-picks .work:nth-child(5) { transition-delay: 360ms; }
#works .grid-picks .work:nth-child(6) { transition-delay: 450ms; }
#works .grid-picks .work:nth-child(7) { transition-delay: 540ms; }
#works .grid-picks .work:nth-child(8) { transition-delay: 630ms; }



#process .eyebrow,
#templates .eyebrow,
#works .eyebrow { font-size: 19.2px; letter-spacing: 1px; font-weight: 700; }


#process .steps .step:nth-child(1) { transition-delay: 0ms; }
#process .steps .step:nth-child(2) { transition-delay: 90ms; }
#process .steps .step:nth-child(3) { transition-delay: 180ms; }
#process .steps .step:nth-child(4) { transition-delay: 270ms; }
#process .steps .step:nth-child(5) { transition-delay: 360ms; }
#process .step.reveal { transform: translateY(26px) scale(.92); }
#process .step.reveal.in { transform: none; }
#process .step {
  position: relative; cursor: pointer; overflow: hidden;
  padding: 26px 14px 22px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line-2);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s, border-color .5s;
}

#process .step::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(249,115,22,.22), transparent);
  transform: skewX(-20deg); transition: left .75s ease; pointer-events: none; z-index: 1;
}
#process .step.in:hover {
  transform: translateY(-14px) scale(1.05); border-color: var(--accent);
  box-shadow: 0 26px 52px rgba(249,115,22,.32);
}
#process .step.in:hover::after { left: 130%; }
#process .step-no {
  position: relative; z-index: 2;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), background .45s, color .45s, box-shadow .45s;
}
#process .step.in:hover .step-no {
  background: linear-gradient(135deg, var(--accent), #fb923c); color: #fff;
  transform: scale(1.28) rotate(360deg);
  box-shadow: 0 16px 34px rgba(249,115,22,.55);
}
#process .step h4 { position: relative; z-index: 2; transition: color .35s, letter-spacing .35s; }
#process .step.in:hover h4 { color: var(--accent-deep); letter-spacing: 1px; }
#process .step p { position: relative; z-index: 2; transition: transform .4s, opacity .4s; }
#process .step.in:hover p { transform: translateY(-2px); }


#templates .grid-tpl { margin-top: 40px; }


#templates .tpl {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 14px;
  transition: .25s;
}
#templates .tpl-shot {
  width: 100% !important;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
#templates .tpl-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
#templates .tpl-shot.tpl-ph {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#475569,#1e293b);
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
}
#templates .tpl-info {
  width: 100% !important;
  flex-shrink: 0;
  margin-top: 12px;
}
#templates .tpl-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color .3s;
}
#templates .tpl-cat {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}


#templates .tpl:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
#templates .tpl:hover .tpl-shot img { transform: scale(1.08); }
#templates .tpl-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: .35s ease;
  pointer-events: none;
  z-index: 3;
}
#templates .tpl-overlay span {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
#templates .tpl:hover .tpl-overlay { opacity: 1; transform: translateY(0); }
#templates .tpl:hover .tpl-info h3 { color: var(--accent-deep); }
#templates .tpl-cat:hover { color: var(--accent); }


.all-tpl-btn {
  
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  
  transition: background-color .2s ease, color .2s ease, transform .15s ease !important;
}
.all-tpl-btn:hover {
  
  background: var(--accent);
  color: #fff;
}
.all-tpl-btn:active {
  transform: translateY(1px);
}
.all-tpl-btn:focus-visible {
  outline: 3px solid rgba(249, 115, 22, .45);
  outline-offset: 3px;
}


.services-section {
  background: var(--bg);
  color: var(--ink);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}
.services-section .section-head {
  margin-bottom: 56px;
  max-width: 760px;   
}

.services-section .section-head h2 { white-space: nowrap; }
.grid-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 36px 26px 30px;
  overflow: hidden;
  box-shadow: var(--sh-1);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease, background-color .35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(249,115,22,.18);
  border-color: rgba(249,115,22,.45);
  background: #fffaf5;
}
.service-num {
  position: absolute;
  top: 12px; right: 18px;
  font-family: var(--display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(0,0,0,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color .35s ease;
}
.service-card:hover .service-num { color: rgba(249,115,22,.16); }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  transition: transform .45s cubic-bezier(.34,1.4,.64,1);
}
.service-icon svg {
  width: 100%; height: 100%;
  transition: transform .45s ease;
}
.service-card:hover .service-icon { transform: scale(1.14) rotate(-5deg); }
.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: .3px;
  transition: color .3s;
}
.service-card:hover h4 { color: var(--accent-deep); }
.service-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.7;
  transition: color .3s;
}

.service-card::after {
  content: ""; position: absolute; top: 0; left: -65%; width: 55%; height: 100%; z-index: 4;
  background: linear-gradient(120deg, transparent, rgba(249,115,22,.12), transparent);
  transform: skewX(-20deg); pointer-events: none; opacity: 0;
}
.service-card:hover::after { animation: svc-sheen .9s ease; }
@keyframes svc-sheen { 0% { left: -65%; opacity: 1; } 100% { left: 130%; opacity: 0; } }

@media (max-width: 960px) {
  .grid-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-services { grid-template-columns: 1fr; }
  .services-section { padding: 60px 0 70px; }
  
  .services-section .section-head h2 { white-space: normal; }
}



#templates .grid-tpl { margin-top: 40px; }


#templates .tpl-card {
  cursor: pointer;
  box-shadow: var(--sh-1);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .22s cubic-bezier(.34,1.4,.64,1), box-shadow .3s ease, opacity .6s ease;
  transition-delay: var(--rd, 0ms);
}


#templates .tpl-shot {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  transform: translateZ(0);
}
#templates .tpl-shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform .55s cubic-bezier(.2,.7,.2,1);
}


#templates .tpl-info { width: 100%; margin-top: 12px; }
#templates .tpl-info h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; color: var(--ink); transition: color .3s; }
#templates .tpl-info span { font-size: 12px; color: var(--muted); transition: color .3s; }


#templates .tpl-card:hover {
  transition-delay: 0s !important;            
  transform: translateY(-8px);
  box-shadow: var(--sh-2);
}
#templates .tpl-card:hover .tpl-shot img { transform: scale(1.08); }
#templates .tpl-card:hover .tpl-info h3 { color: var(--accent-deep); }


#templates .tpl-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; transform: translateY(10px); transition: .35s ease; pointer-events: none; z-index: 3;
}
#templates .tpl-overlay span {
  background: var(--accent); color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
#templates .tpl-card:hover .tpl-overlay { opacity: 1; transform: translateY(0); }


#templates .tpl-shot::after {
  content: ""; position: absolute; top: 0; left: -65%; width: 55%; height: 100%; z-index: 4;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); pointer-events: none; opacity: 0;
}
#templates .tpl-card:hover .tpl-shot::after { animation: tpl-sheen .85s ease; }
@keyframes tpl-sheen { 0% { left: -65%; opacity: 1; } 100% { left: 130%; opacity: 0; } }


#templates .tpl-shot::before {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.35), transparent 45%);
  opacity: 0; transition: opacity .3s ease;
}
#templates .tpl-card:hover .tpl-shot::before { opacity: 1; }


#templates .tpl-card:active { transform: translateY(-3px) scale(.985); }


.tpl-ripple {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.55);
  transform: scale(0); animation: tpl-ripple .6s ease-out; pointer-events: none; z-index: 5;
}
@keyframes tpl-ripple { to { transform: scale(2.4); opacity: 0; } }



#reviews .section-head { margin-bottom: 48px; }
#reviews .section-head .eyebrow,
#services .section-head .eyebrow { font-size: 19.2px; letter-spacing: 1px; font-weight: 700; color: var(--muted); }
#pricing .section-head .eyebrow { font-size: 19.2px; letter-spacing: 1px; font-weight: 700; color: var(--muted); }


.reviews-gap { height: 50px; background: var(--bg); }

.reviews-viewport {
  overflow: hidden;
  position: relative;
}
.reviews-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.review-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@keyframes reviewIn {
  from { opacity: 0; transform: translateY(26px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.review-card {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: reviewIn .6s cubic-bezier(.2,.8,.2,1) both;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease;
}

.review-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.review-card:nth-child(2) { animation-delay: .08s; }
.review-card:nth-child(3) { animation-delay: .16s; }
.review-card:nth-child(4) { animation-delay: .08s; }
.review-card:nth-child(5) { animation-delay: .16s; }
.review-card:nth-child(6) { animation-delay: .24s; }
.review-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -14px rgba(249,115,22,.42);
}
.review-card:hover::before { transform: scaleX(1); }

.review-quote {
  position: absolute; top: 18px; right: 22px;
  font-family: Georgia, serif; font-size: 42px; line-height: 1;
  color: var(--accent); opacity: .25;
  pointer-events: none; user-select: none;
}
.review-card:hover .review-quote { opacity: .45; }

.review-text {
  font-size: 14px; line-height: 1.75; color: var(--ink-2);
  flex: 1; margin-bottom: 18px;
}

.review-author {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--line);
  flex-shrink: 0;
  transition: transform .35s ease, border-color .35s ease;
}
.review-card:hover .review-avatar { transform: scale(1.08); border-color: var(--accent); }
.review-meta { display: flex; flex-direction: column; }
.review-name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.review-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

.review-stars { font-size: 15px; color: var(--accent); letter-spacing: 2px; }


.reviews-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 32px;
}
.reviews-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); cursor: pointer;
  transition: background .3s, transform .3s;
  border: none; padding: 0;
}
.reviews-dot.active { background: var(--accent); transform: scale(1.25); }
.reviews-dot:hover { background: var(--accent-soft); }


@media (max-width: 960px) {
  .review-page { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .review-page { grid-template-columns: 1fr; }
  .review-card { padding: 22px 18px 18px; }
}

/* ===== theme-zaoyefang.css ===== */
:root {
  
  --bg:      #ffffff;
  --bg-alt:  #f5f5f5;
  --accent:  #f97316;

  
  --ink-light: #ffffff;   
  --ink-mid:   #e6e6ec;   
  --charcoal:  #f0f0f4;   

  
  --white:  #1a1a1a;      
  --mist:   #4b4b4b;      
  --silver: #6b6b6b;      
  --slate:  #8a8a94;      
  --cloud:  #3a3a42;      
  
  

  
  --amber:       #f97316;
  --amber-light: #fb923c;
  --amber-deep:  #ea580c;
  --amber-glow:  rgba(249, 115, 22, 0.20);

  
  --text-primary:   #1a1a1a;
  --text-secondary: #4b4b4b;
  --accent-gold:    #f97316;
}


body {
  background: var(--bg);
  color: var(--ink);
}




.nav-links a::after { display: none !important; content: none !important; }


.nav-links a:hover { background: var(--accent); color: #fff; }
.nav-links a.active { background: #333333; color: #fff; }


.nav-icons a.nav-cta {
  background: #333333;
  color: #fff !important;
  border-color: transparent;
}
.nav-icons a.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
  transform: none !important;
  box-shadow: none !important;
}


.cursor-glow { display: none !important; }

html { background: #ffffff; }
.nav {
  position: sticky !important;
  top: 0;
  margin: 0;
  height: auto !important;
  min-height: 68px !important;
}
.nav-inner { height: auto !important; min-height: 68px !important; }
.page-hero { padding-top: 56px; }
@media (max-width: 768px) {
  .page-hero { padding-top: 34px; }
}


.reveal.visible { opacity: 1 !important; transform: none !important; }


.about-stat-card,
.why-item,
.faq-item {
  background: #ffffff;
  border: 1px solid var(--ink-mid);
}


.form-input,
.form-select,
.form-textarea {
  background: #ffffff;
  color: var(--ink);
  border: 1.5px solid rgba(0, 0, 0, 0.14);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #9a9aa5; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}


.value-card,
.pricing-card,
.contact-form-wrap,
.about-story-visual,
.about-stat-card,
.why-item,
.faq-item {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}


.pricing-card:hover { border-color: rgba(249, 115, 22, 0.24); }
.service-card:hover {
  border-color: var(--amber);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.10);
}
.search-tag:hover {
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--amber);
  background: rgba(249, 115, 22, 0.06);
}
.floating-tag {
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: var(--amber);
}


.footer { border-top: none; }


.website-request-hero::before {
  background:
    radial-gradient(circle at 50% 12%, rgba(249, 115, 22, 0.10), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(249, 115, 22, 0.06), transparent 24%);
}
.website-request-card {
  border: 1px solid var(--ink-mid);
  background:
    radial-gradient(circle at 14% 0%, rgba(249, 115, 22, 0.06), transparent 30%),
    #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}
.request-form input:not([type="checkbox"]),
.request-form select,
.request-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}
.request-form input:not([type="checkbox"]):focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--amber);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}
.request-form fieldset {
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: #fafafa;
}
.request-form fieldset legend { color: var(--amber); }
.request-form input[type="checkbox"] { accent-color: var(--amber); }
.request-form button[type="submit"] {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.24);
}
.request-form button[type="submit"]:hover {
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.30);
}
.request-form button[type="submit"]:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
}

/* ===== services.css ===== */
.services-detail-section {
  padding: 40px 0 80px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--ink-mid);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-alt {
  direction: rtl;
}

.service-detail-alt > * {
  direction: ltr;
}

.service-detail-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 16px;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.service-detail-desc {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mist);
}


.visual-mockup {
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
  position: relative;
}


.design-mockup {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 340px;
}

.mockup-layer {
  border-radius: 10px;
  transition: transform 0.5s var(--ease-out-expo);
}

.design-mockup .layer-1 {
  height: 40px;
  background: linear-gradient(90deg, var(--ink-mid), var(--charcoal));
}

.design-mockup .layer-2 {
  height: 100px;
  background: linear-gradient(135deg, rgba(212, 160, 74, 0.15), rgba(212, 160, 74, 0.05));
  border: 1px solid rgba(212, 160, 74, 0.1);
}

.design-mockup .layer-3 {
  height: 32px;
  width: 60%;
  background: linear-gradient(90deg, var(--ink-mid), transparent);
}

.design-mockup .layer-4 {
  height: 32px;
  width: 40%;
  background: linear-gradient(90deg, var(--charcoal), transparent);
}

.design-mockup .layer-5 {
  height: 48px;
  display: flex;
  gap: 12px;
}

.design-mockup .layer-5::before,
.design-mockup .layer-5::after {
  content: '';
  flex: 1;
  border-radius: 10px;
}

.design-mockup .layer-5::before {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.design-mockup .layer-5::after {
  background: var(--ink-mid);
  border: 1px solid var(--charcoal);
}

.visual-mockup:hover .mockup-layer {
  transform: translateY(-4px);
}


.code-mockup {
  display: flex;
  flex-direction: column;
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-mid);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-mid);
}

.code-dot:first-child { background: var(--red-dot); }
.code-dot:nth-child(2) { background: var(--yellow-dot); }
.code-dot:nth-child(3) { background: var(--green-dot); }

.code-filename {
  font-size: 11px;
  color: var(--slate);
  margin-left: 12px;
}

.code-lines {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.code-line {
  height: 12px;
  background: linear-gradient(90deg, var(--ink-mid) 30%, var(--charcoal) 60%, transparent);
  border-radius: 6px;
  width: 85%;
}

.code-line.short {
  width: 55%;
}

.code-line:nth-child(even) {
  margin-left: 20px;
}


.analytics-mockup {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.analytics-title {
  height: 14px;
  width: 100px;
  background: var(--ink-mid);
  border-radius: 7px;
}

.analytics-pill {
  height: 28px;
  width: 72px;
  background: rgba(212, 160, 74, 0.15);
  border: 1px solid rgba(212, 160, 74, 0.2);
  border-radius: 14px;
}

.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex: 1;
  min-height: 200px;
  padding-top: 16px;
}

.chart-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--amber-deep), var(--amber));
  border-radius: 8px 8px 0 0;
  transition: transform 0.4s var(--ease-out-expo);
  position: relative;
}

.chart-bar:hover {
  transform: scaleY(1.05);
  transform-origin: bottom;
}

.chart-bar:nth-child(odd) {
  background: linear-gradient(to top, rgba(212, 160, 74, 0.3), rgba(212, 160, 74, 0.5));
}


.brand-mockup {
  padding: 48px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 300px;
}

.brand-logo-shape {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  border-radius: 30px;
  transform: rotate(15deg);
  flex-basis: 100%;
  margin: 0 auto 16px;
  max-width: 120px;
}

.brand-color-swatch {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  transition: transform 0.4s var(--ease-spring);
}

.brand-color-swatch:hover {
  transform: scale(1.1) rotate(-4deg);
}

.swatch-1 { background: var(--amber); }
.swatch-2 { background: var(--ink-mid); }
.swatch-3 { background: var(--white); }


.process-section {
  padding: 120px 0;
  background: var(--ink-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--ink-mid));
  opacity: 0.3;
  pointer-events: none;
}

.process-step:last-child::after {
  display: none;
}

.process-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--amber);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
}


@media (max-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-detail-alt {
    direction: ltr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 32px;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-feature-list {
    grid-template-columns: 1fr;
  }

  .services-detail-section {
    padding: 20px 0 40px;
  }

  .service-detail {
    padding: 48px 0;
  }
}

/* ===== pricing.css ===== */
.pricing-compare-section,
.pricing-plans-section,
.pricing-support-section,
.pricing-faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--ink-mid);
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ink-mid);
  border-radius: 16px;
  background: var(--ink-light);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--ink-mid);
  font-size: 14px;
  color: var(--mist);
}

.pricing-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.pricing-table thead th:nth-child(3) {
  color: var(--amber);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  color: var(--silver);
  font-weight: 500;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(212, 160, 74, 0.04);
}

.pricing-table .col-price {
  color: var(--amber);
  font-weight: 700;
}

.pricing-table .yes {
  color: var(--amber);
  font-weight: 600;
}

.pricing-table .no {
  color: var(--mist);
  opacity: 0.4;
}


.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.plan-card {
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 74, 0.25);
}

.plan-card.featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(212, 160, 74, 0.06) 0%, var(--ink-light) 100%);
  transform: scale(1.04);
  z-index: 2;
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  padding: 6px 18px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.plan-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 12px 0 8px;
}

.plan-price .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.plan-price .amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-price .note {
  font-size: 14px;
  color: var(--silver);
  margin-left: 4px;
}

.plan-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 20px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--mist);
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 42, 50, 0.5);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 18px;
}

.plan-note {
  font-size: 13px;
  color: var(--silver);
  background: var(--charcoal);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 22px;
  line-height: 1.7;
}

.plan-btn {
  width: 100%;
  justify-content: center;
}


.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card {
  background: var(--ink-light);
  border: 1px solid var(--ink-mid);
  border-radius: 18px;
  padding: 28px 24px;
}

.support-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.support-card ul {
  list-style: none;
}

.support-card li {
  font-size: 14px;
  color: var(--mist);
  padding: 6px 0;
  line-height: 1.6;
}

.support-card .incl {
  color: var(--amber);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1f;
  border: 1px solid var(--ink-mid);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: rgba(212, 160, 74, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fefeff;
  padding: 24px 28px;
  padding-right: 60px;
  cursor: pointer;
  position: relative;
}

.faq-question:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
  border-radius: 12px;
}

.faq-question::after {
  content: '−';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--amber);
  font-weight: 400;
}

.faq-item:not(.open) .faq-question::after {
  content: '+';
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  color: #9e9eaf;
  line-height: 1.7;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.faq-item:not(.open) .faq-answer {
  max-height: 0;
  padding: 0 28px;
  opacity: 0;
}

.faq-item.open .faq-answer {
  padding-top: 0;
  padding-bottom: 24px;
}

.faq-section .section-title,
.pricing-faq-section .section-title {
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .pricing-table-wrap {
    display: none;
  }

  .pricing-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .pricing-plans-grid,
  .support-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
