:root {
    --bg-body: #020617;
    --bg-elevated: rgba(15, 23, 42, 0.9);
    --bg-elevated-soft: rgba(15, 23, 42, 0.7);
    --accent: #38bdf8;
    --accent-soft: rgba(56, 189, 248, 0.12);
    --accent-strong: #0ea5e9;
    --accent-gradient: linear-gradient(135deg, #38bdf8, #a855f7);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: rgba(75, 85, 99, 0.6);
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
    --radius-lg: 18px;
    --radius-full: 999px;
    --transition-fast: 180ms ease-out;
    --max-width: 1120px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
      "PingFang SC", "Microsoft YaHei", sans-serif;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.08), transparent),
      radial-gradient(circle at 20% 80%, rgba(129, 140, 248, 0.1), transparent),
      var(--bg-body);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
  }

  /* 深色横幅区（核心优势） */
  .section-dark {
    position: relative;
    padding: 72px 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.92));
    overflow: hidden;
  }

  .section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.55;
    mask-image: radial-gradient(circle at 30% 45%, black 0%, transparent 62%);
    pointer-events: none;
  }

  .section-dark .section-header h2,
  .section-dark h3 {
    color: rgba(255, 255, 255, 0.92);
  }

  .section-dark .section-header p,
  .section-dark p {
    color: rgba(226, 232, 240, 0.78);
  }

  .feature-split {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 22px;
    align-items: center;
  }

  @media (max-width: 900px) {
    .feature-split {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .globe-dots {
    position: relative;
    border-radius: 22px;
    min-height: 320px;
    background: radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.10), transparent 60%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    overflow: hidden;
  }

  .globe-dots::before {
    content: "";
    position: absolute;
    inset: -30%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.28;
    transform: rotate(-12deg);
    mask-image: radial-gradient(circle at 40% 55%, black 0%, transparent 55%);
  }

  .globe-dots::after {
    content: "";
    position: absolute;
    left: 10%;
    top: 14%;
    width: 76%;
    height: 76%;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.22), transparent 55%),
      radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.18), transparent 55%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    filter: blur(0.2px);
    opacity: 0.9;
  }

  .globe-dots.building-photo {
    background-image:
      linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.55)),
      url("../img/building-2.png");
    background-size: cover;
    background-position: center;
  }

  .globe-dots.building-photo::before,
  .globe-dots.building-photo::after {
    display: none;
  }
  
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }

  /* 图片规范：统一比例与展示质感，便于后续批量换图 */
  .media-16-9 {
    aspect-ratio: 16 / 9;
  }

  .media-4-3 {
    aspect-ratio: 4 / 3;
  }

  .media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* 大图可作为背景块使用（按需给容器加该类） */
  .section-bg-photo {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .section-bg-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.56));
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.92),
      rgba(15, 23, 42, 0.6),
      transparent
    );
    border-bottom: 1px solid rgba(31, 41, 55, 0.8);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }
  
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background-image: radial-gradient(circle at 20% 0%, #e0f2fe, transparent 55%),
      radial-gradient(circle at 80% 100%, #f5d0fe, transparent 55%),
      linear-gradient(135deg, #0ea5e9, #6366f1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #0b1120;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.7);
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
  }
  
  .logo-title {
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 16px;
  }
  
  .logo-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
  }
  
  .nav a {
    position: relative;
    padding: 4px 0;
    color: var(--text-muted);
    transition: color var(--transition-fast);
  }
  
  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-gradient);
    transition: width var(--transition-fast);
  }
  
  .nav a:hover {
    color: var(--text-main);
  }
  
  .nav a:hover::after {
    width: 100%;
  }
  
  .nav-cta {
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.6);
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.14), transparent);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 4px;
  }
  
  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 999px;
  }
  
  .hero {
    padding: 72px 0 56px;
  }
  
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr);
    gap: 32px;
    align-items: center;
  }
  
  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
      rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: var(--accent-strong);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 40px);
    letter-spacing: 0.02em;
  }
  
  .hero-desc {
    margin: 0 0 22px;
    color: var(--text-muted);
    max-width: 520px;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast),
      background var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
  }
  
  .btn-primary {
    background-image: var(--accent-gradient);
    color: #0b1120;
    font-weight: 600;
    box-shadow: 0 16px 35px rgba(56, 189, 248, 0.5);
  }
  
  .btn-secondary {
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-main);
    border-color: rgba(75, 85, 99, 0.8);
  }
  
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
  }
  
  .btn-full {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
  }
  
  .hero-stats dt {
    font-size: 18px;
    font-weight: 600;
  }
  
  .hero-stats dd {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--text-muted);
  }
  
  .hero-visual {
    position: relative;
    padding: 18px 18px 22px;
    border-radius: 24px;
    background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.24), transparent),
      radial-gradient(circle at 90% 80%, rgba(129, 140, 248, 0.32), transparent),
      rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(56, 189, 248, 0.4);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
  margin-bottom: 12px;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: none;
}
  
  .hero-orbit {
    position: relative;
    width: min(220px, 70%);
    padding-top: 100%;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.5);
    background: radial-gradient(circle at 50% 30%, rgba(15, 23, 42, 0.6), transparent),
      radial-gradient(circle at 50% 110%, rgba(56, 189, 248, 0.3), transparent);
  }
  
  .orbit-layer {
    position: absolute;
    inset: 10%;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.4);
  }
  
  .orbit-layer-2 {
    inset: 22%;
    border-style: solid;
    border-color: rgba(56, 189, 248, 0.45);
  }
  
  .orbit-layer-3 {
    inset: 36%;
    border-style: dotted;
    border-color: rgba(129, 140, 248, 0.65);
  }
  
  .hero-node {
    position: absolute;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 0 20px rgba(15, 23, 42, 0.9);
  }
  
  .hero-node-drone {
    top: 12%;
    left: 18%;
  }
  
  .hero-node-ugv {
    bottom: 12%;
    right: 12%;
  }
  
  .hero-node-swarm {
    top: 45%;
    right: 8%;
  }
  
  .hero-node-ai {
    bottom: 25%;
    left: 8%;
  }
  
  .hero-visual-caption {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
  }
  
  .section {
    padding: 56px 0;
  }
  
  .section-alt {
    position: relative;
  }
  
  .section-alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(31, 41, 55, 0.9), transparent 60%);
    opacity: 0.8;
    z-index: -1;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 28px;
  }
  
  .section-header h2 {
    font-size: 24px;
    margin: 0 0 6px;
  }
  
  .section-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
  }
  
  .section-header.align-left {
    text-align: left;
  }
  
  .grid {
    display: grid;
    gap: 18px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
  
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  .cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .card {
    position: relative;
  padding: 14px 14px 16px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent),
      rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  
  .card::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    pointer-events: none;
  }
  
  .card:hover::before {
    opacity: 1;
    transform: translate3d(6px, -8px, 0);
  }
  
  .card h3 {
  margin: 8px 0 6px;
    font-size: 18px;
  }
  
  .card p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--text-muted);
  }
  
  .card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--text-muted);
  }

.card-media {
  position: relative;
  margin: 0 -6px;
  margin-bottom: 4px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 64, 175, 0.6);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 65%);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 260ms ease;
}

.card-media:hover img {
  transform: scale(1.03);
}
  
  .card li + li {
    margin-top: 3px;
  }
  
  .tag {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(56, 189, 248, 0.5);
  }
  
  .tech-layout {
    display: grid;
    grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr);
    gap: 18px;
    align-items: flex-start;
  }
  
  .tech-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  
  .tech-highlight ul {
    margin: 8px 0 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--text-muted);
  }
  
  .cases-grid .card {
    min-height: 150px;
  }
  
  .case-tagline {
    font-size: 12px;
    color: var(--accent-strong);
  }
  
  .about-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 22px;
    align-items: flex-start;
  }
  
  .about-text p {
    font-size: 14px;
    color: var(--text-muted);
  }
  
  .about-text p + p {
    margin-top: 8px;
  }
  
  .about-highlights {
    margin: 10px 0 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--text-muted);
  }
  
  .about-info ul {
    margin: 8px 0 0;
    padding-left: 0;
    list-style: none;
    font-size: 14px;
    color: var(--text-muted);
  }
  
  .about-info li + li {
    margin-top: 4px;
  }

  .gallery-item figure,
  .gallery-item figcaption {
    margin: 0;
  }

  .gallery-item figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
  }
  
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 22px;
    align-items: flex-start;
  }
  
  .contact-list {
    margin: 12px 0 0;
    padding-left: 0;
    list-style: none;
    font-size: 14px;
    color: var(--text-muted);
  }
  
  .contact-list li + li {
    margin-top: 4px;
  }
  
  .contact-form {
    max-width: 460px;
    width: 100%;
  }
  
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
  }
  
  .form-row label {
    font-size: 13px;
  }
  
  .form-row input,
  .form-row select,
  .form-row textarea {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 10px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 7px 10px;
    color: var(--text-main);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
      background var(--transition-fast);
  }
  
  .form-row textarea {
    resize: vertical;
  }
  
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
    background: rgba(15, 23, 42, 0.98);
  }
  
  .form-tip {
    margin: 6px 0 0;
    font-size: 11px;
    color: var(--text-muted);
  }
  
  .site-footer {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding: 26px 0 18px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  }
  
  .footer-inner {
    text-align: left;
    font-size: 13px;
    color: var(--text-muted);
  }

  .footer-top {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(55, 65, 81, 0.7);
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr 1fr;
    gap: 20px;
    align-items: start;
  }

  .footer-col h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
  }

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
  }

  .footer-links a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
  }

  .footer-links a:hover {
    color: rgba(255, 255, 255, 0.92);
  }

  .footer-contact {
    display: grid;
    gap: 7px;
    font-size: 15px;
    color: var(--text-muted);
  }

  .footer-qr-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-qr {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.8);
    background: rgba(15, 23, 42, 0.7);
  }

  .footer-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .footer-qr-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.45;
  }

  .footer-bottom {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: #9ca3af;
  }

  .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .footer-brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background-image: radial-gradient(circle at 20% 0%, #e0f2fe, transparent 55%),
      radial-gradient(circle at 80% 100%, #f5d0fe, transparent 55%),
      linear-gradient(135deg, #0ea5e9, #6366f1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b1120;
    font-weight: 700;
    font-size: 12px;
  }

  .footer-navlinks {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .footer-navlinks a {
    color: #9ca3af;
    transition: color var(--transition-fast);
  }

  .footer-navlinks a:hover {
    color: rgba(255, 255, 255, 0.92);
  }

  .footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(226, 232, 240, 0.86);
    border: 1px solid rgba(71, 85, 105, 0.8);
    background: rgba(15, 23, 42, 0.8);
    transition: color var(--transition-fast), border-color var(--transition-fast),
      transform var(--transition-fast);
  }

  .footer-social a:hover {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.7);
    transform: translateY(-1px);
  }

  .footer-social svg {
    width: 15px;
    height: 15px;
  }
  
  .footer-note {
    margin-top: 4px;
    color: #6b7280;
  }
  
  @media (max-width: 900px) {
    .hero-inner {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero {
      padding-top: 64px;
    }
  
    .hero-visual {
      order: -1;
    }
  
    .hero-stats {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .tech-layout,
    .about-layout,
    .contact-layout {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .about-info,
    .contact-form {
      max-width: none;
    }

    .footer-columns {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
  }
  
  @media (max-width: 720px) {
    .header-inner {
      padding-inline: 16px;
    }
  
    .nav {
      position: fixed;
      inset: 52px 12px auto;
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 12px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(30, 64, 175, 0.9);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.96);
      transform-origin: top right;
      transform: scaleY(0.9);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-fast), transform var(--transition-fast);
      z-index: 40;
    }
  
    .nav-open .nav {
      opacity: 1;
      transform: scaleY(1);
      pointer-events: auto;
    }
  
    .nav-cta {
      width: 100%;
      justify-content: center;
      text-align: center;
    }
  
    .nav-toggle {
      display: inline-flex;
      cursor: pointer;
      z-index: 41;
    }
  
    .hero-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .site-header {
      backdrop-filter: blur(18px);
    }
  }
  
  @media (max-width: 480px) {
    .hero-stats {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .section {
      padding-block: 42px;
    }

    .footer-columns {
      grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }