/* ===== 邻陪健康 共用样式 ===== */
:root {
    --nav-active-bg: #0d7a4a;
    --nav-active-color: #ffffff;
    --nav-active-radius: 8px;
    --nav-hover-bg: rgba(255,255,255,.15);
    --logo-height: 42px;
    --nav-scroll-bg: #d4232b;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:"Microsoft YaHei","PingFang SC","Helvetica Neue",sans-serif; color:#333; background:#f5f5f5; padding-top:70px; }

/* Header */
.site-header {
    background:linear-gradient(135deg,#0d7a4a 0%,#1a8a5c 50%,#22a06b 100%);
    position:absolute; top:0; left:0; right:0; z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,.15);
    transition:background .3s ease, box-shadow .3s ease, position .3s ease;
}
.site-header.sticky {
    position:fixed;
    background:var(--nav-scroll-bg, #d4232b);
    box-shadow:0 2px 20px rgba(0,0,0,.25);
}
.nav-container { max-width:1200px; margin:0 auto; height:70px; display:flex; align-items:center; justify-content:space-between; padding:0 20px; }
.logo img { height:var(--logo-height,42px); transition:height .3s; }
.main-nav ul { list-style:none; display:flex; gap:6px; }
.main-nav ul li a {
    color:rgba(255,255,255,.85); text-decoration:none; padding:10px 18px;
    border-radius:6px; font-size:15px; transition:all .3s; font-weight:500;
}
.main-nav ul li a:hover { background:var(--nav-hover-bg, rgba(255,255,255,.15)); color:#fff; }
.main-nav ul li.active a {
    background:var(--nav-active-bg, #0d7a4a); color:var(--nav-active-color, #ffffff);
    border-radius:var(--nav-active-radius, 8px); font-weight:600;
}

/* Carousel */
.carousel-section { background:#fff; }
.carousel-container { max-width:1200px; margin:0 auto; padding:30px 20px 20px; }
.carousel { position:relative; overflow:hidden; border-radius:16px; box-shadow:0 8px 30px rgba(0,0,0,.1); }
.carousel-inner { display:flex; transition:transform .6s ease; }
.carousel-item { min-width:100%; }
.carousel-img { width:100%; height:auto; aspect-ratio:21/9; background-size:cover; background-position:center; }
.carousel-control {
    position:absolute; top:50%; transform:translateY(-50%); z-index:10;
    width:48px; height:48px; border-radius:50%; border:none;
    background:rgba(255,255,255,.9); color:#0d7a4a; font-size:20px;
    cursor:pointer; transition:all .3s; box-shadow:0 2px 10px rgba(0,0,0,.15);
    display:flex; align-items:center; justify-content:center;
}
.carousel-control:hover { background:#fff; transform:translateY(-50%) scale(1.1); }
.carousel-control.prev { left:16px; }
.carousel-control.next { right:16px; }
.carousel-indicators { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); display:flex; gap:10px; }
.indicator { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.5); cursor:pointer; transition:all .3s; }
.indicator.active { background:#fff; width:28px; border-radius:5px; }


/* Content Sections */
.content-section { background:#fff; padding:60px 20px; }
.content-section:nth-child(even) { background:#f8f9ff; }
.content-container { max-width:1100px; margin:0 auto; }
.section-title { text-align:center; margin-bottom:40px; }
.section-title h2 { font-size:30px; color:#0d7a4a; font-weight:700; position:relative; display:inline-block; }
.section-title h2::after { content:''; display:block; width:50px; height:3px; background:#1a8a5c; margin:10px auto 0; border-radius:2px; }
.section-title p { color:#999; font-size:14px; margin-top:8px; text-transform:uppercase; letter-spacing:2px; }
.intro-text { font-size:15px; line-height:2; color:#555; max-width:800px; margin:0 auto; text-align:center; }

/* TNT Cards */
.three-col-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tnt-card {
    background:#fff; border:1px solid #eee; border-radius:14px; padding:30px 24px;
    text-align:center; transition:all .3s;
}
.tnt-card:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(13,122,74,.1); border-color:#0d7a4a; }
.tnt-card .tnt-icon {
    width:60px; height:60px; border-radius:14px;
    background:linear-gradient(135deg,#1a8a5c,#3a3db0);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 16px; color:#fff; font-size:26px;
}
.tnt-card h3 { font-size:17px; color:#333; margin-bottom:8px; }
.tnt-card p { font-size:14px; color:#888; line-height:1.7; }
.tnt-card ul { list-style:none; margin-top:12px; text-align:left; padding:0 10px; }
.tnt-card ul li { font-size:13px; color:#666; padding:4px 0; border-bottom:1px dashed #f0f0f0; }
.tnt-card ul li::before { content:"✓ "; color:#0d7a4a; font-weight:700; }

/* Feature List */
.feature-list { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:20px; margin:20px 0; }
.feature-item {
    background:#fff; border:1px solid #f0f0f0; border-radius:12px;
    padding:24px 20px; transition:all .3s; text-align:center;
}
.feature-item:hover { border-color:#0d7a4a; box-shadow:0 4px 16px rgba(13,122,74,.08); }
.feature-item .feature-icon {
    width:46px; height:46px; border-radius:12px;
    background:linear-gradient(135deg,#1a8a5c,#3a3db0);
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:20px; margin:0 auto 12px;
}
.feature-item h4 { font-size:15px; margin-bottom:6px; color:#333; }
.feature-item p { font-size:13px; color:#888; line-height:1.6; }
.feature-item-link { display:block; text-decoration:none; color:inherit; }
.feature-item-link:hover .feature-item { border-color:#0d7a4a; box-shadow:0 4px 16px rgba(13,122,74,.08); }

/* Process Flow - 服务流程卡片 */
.process-steps {
  display:flex; align-items:stretch; gap:0; justify-content:center; margin:30px 0;
}
.process-step {
  flex:1; max-width:360px; background:#fff; border-radius:16px; overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.06); transition:all .35s cubic-bezier(.4,0,.2,1);
}
.process-step:hover { transform:translateY(-6px); box-shadow:0 12px 35px rgba(13,122,74,.12); }
.ps-header {
  padding:28px 20px; text-align:center; color:#fff; position:relative;
  display:flex; align-items:center; justify-content:center; min-height:90px;
}
.ps-header i { font-size:42px; }
.process-step h3 {
  font-size:17px; color:#333; font-weight:700; padding:18px 20px 0; text-align:center; letter-spacing:1px;
}
.process-step p {
  font-size:13px; color:#666; line-height:1.8; padding:8px 20px 26px; text-align:center;
}
.ps-arrow {
  display:flex; align-items:center; padding:0 16px; font-size:28px; color:#ddd; flex-shrink:0;
}
@media (max-width:768px) {
  .process-steps { flex-direction:column; align-items:center; gap:0; }
  .process-step { max-width:100%; width:100%; }
  .ps-arrow { transform:rotate(90deg); padding:8px 0; font-size:24px; }
}

/* Service Icons */
.service-item { text-align:center; padding:16px 8px; border-radius:12px; background:#fff; border:1px solid #f0f0f0; transition:all .3s; }
.service-item:hover { transform:translateY(-2px); box-shadow:0 4px 16px rgba(0,0,0,.06); }
.service-item .si-icon { width:44px; height:44px; border-radius:11px; margin:0 auto 8px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; }
.service-item span { font-size:13px; color:#555; }

/* Media */
.media-list { max-width:750px; margin:0 auto; }
.media-list a { display:block; padding:14px 20px; margin-bottom:8px; background:#fff; border:1px solid #f0f0f0; border-radius:10px; text-decoration:none; color:#444; font-size:14px; transition:all .3s; }
.media-list a:hover { border-color:#0d7a4a; color:#0d7a4a; transform:translateX(4px); }
.media-list a i { margin-right:10px; color:#0d7a4a; }

/* Milestones */
.milestone-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.milestone { text-align:center; padding:30px 20px; background:#fff; border-radius:14px; border:1px solid #f0f0f0; transition:all .3s; }
.milestone:hover { transform:translateY(-3px); box-shadow:0 6px 20px rgba(13,122,74,.08); }
.ms-year { font-size:32px; font-weight:700; color:#0d7a4a; margin-bottom:12px; }
.ms-detail { font-size:14px; color:#555; line-height:1.8; }
.ms-detail strong { color:#b22222; }

/* Contact */
.contact-grid { max-width:700px; margin:0 auto; display:flex; flex-direction:column; gap:16px; }
.contact-item { display:flex; align-items:flex-start; gap:16px; padding:18px 24px; background:#fff; border:1px solid #f0f0f0; border-radius:12px; transition:all .3s; }
.contact-item:hover { border-color:#0d7a4a; }
.contact-item i { font-size:22px; color:#0d7a4a; margin-top:2px; width:28px; }
.contact-item h4 { font-size:14px; color:#333; margin-bottom:2px; }
.contact-item p { font-size:14px; color:#666; }

/* Product Cards (big) */
.two-col-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.product-card-big { background:#fff; border:1px solid #eee; border-radius:14px; padding:30px 24px; text-align:center; transition:all .3s; }
.product-card-big:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(13,122,74,.1); border-color:#0d7a4a; }
.product-card-big .pc-icon { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg,#1a8a5c,#3a3db0); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; color:#fff; font-size:28px; }
.product-card-big h3 { font-size:18px; color:#333; margin-bottom:4px; }
.product-card-big .pc-count { font-size:13px; color:#0d7a4a; font-weight:600; margin-bottom:12px; }
.product-card-big ul { list-style:none; text-align:left; max-width:200px; margin:0 auto; }
.product-card-big ul li { font-size:13px; color:#666; padding:4px 0; border-bottom:1px dashed #f0f0f0; }
.product-card-big ul li::before { content:"✓ "; color:#0d7a4a; font-weight:700; }

/* ===== Partner Section - Redesigned ===== */
.partner-wrap {
  background:#fff; border-radius:20px; padding:50px 40px 40px;
  box-shadow:0 4px 25px rgba(0,0,0,.04); position:relative; overflow:hidden;
  margin:20px 0;
}
.partner-wrap::before {
  content:''; position:absolute; top:-120px; right:-120px;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle,rgba(13,122,74,.04) 0%,transparent 70%);
}
.partner-wrap::after {
  content:''; position:absolute; bottom:-80px; left:-80px;
  width:200px; height:200px; border-radius:50%;
  background:radial-gradient(circle,rgba(13,122,74,.03) 0%,transparent 70%);
}
.partner-section-title { text-align:center; margin-bottom:36px; position:relative; z-index:1; }
.partner-section-title h2 { font-size:26px; color:#0d7a4a; font-weight:700; letter-spacing:3px; }
.partner-section-title .ps-line { width:50px; height:3px; background:#0d7a4a; margin:10px auto; border-radius:2px; }
.partner-section-title p { font-size:13px; color:#999; letter-spacing:2px; text-transform:uppercase; }
.partner-group { margin-bottom:28px; position:relative; z-index:1; }
.partner-group:last-of-type { margin-bottom:32px; }
.partner-group-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; color:#0d7a4a; font-weight:600; letter-spacing:2px;
  padding:4px 16px 4px 14px; border-left:3px solid #0d7a4a;
  margin-bottom:14px;
}
.partner-group-label i { font-size:14px; }
.partner-row { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.partner-card {
  display:flex; align-items:center; gap:18px;
  padding:20px 24px; background:#fff; border:1px solid #eef2f0;
  border-radius:14px; transition:all .35s cubic-bezier(.4,0,.2,1); cursor:default;
  position:relative; overflow:hidden;
}
.partner-card::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:4px;
  background:linear-gradient(180deg,var(--pc,#0d7a4a),transparent);
  opacity:0; transition:opacity .35s;
}
.partner-card:hover { transform:translateY(-3px); box-shadow:0 8px 25px rgba(0,0,0,.06); border-color:var(--pc,#0d7a4a); }
.partner-card:hover::before { opacity:1; }
.partner-card .pc-logo {
  width:auto; min-width:100px; height:90px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  background:#fff; border:1px solid #eef2f0; padding:8px 12px;
}
.partner-card .pc-logo img { max-width:160px; max-height:76px; width:auto; height:auto; object-fit:contain; display:block; border-radius:6px; }
.partner-card .pc-info { flex:1; min-width:0; }
.partner-card .pc-info h4 { font-size:16px; color:#333; font-weight:600; margin-bottom:4px; }
.partner-card .pc-info .pc-tag {
  display:inline-block; font-size:11px; padding:2px 10px; border-radius:4px;
  background:rgba(13,122,74,.08); color:#0d7a4a; margin-bottom:6px; letter-spacing:1px;
}
.partner-card .pc-info p { font-size:13px; color:#888; line-height:1.6; margin:0; }
.partner-card .pc-info .pc-desc { font-size:13px; color:#888; line-height:1.6; margin-top:2px; }
/* Self-developed card - full width special */
.partner-self { grid-column:1 / -1; background:#fff; border-color:#dce8e2; border-left:4px solid var(--pc,#0d7a4a); }
.partner-self .pc-logo { width:48px; height:48px; border-radius:14px; background:linear-gradient(135deg,#0d7a4a,#22a06b); }
.partner-self .pc-info h4 { color:#0d7a4a; }
.partner-self .pc-info p { color:#555; }
/* Logo marquee */
.partner-marquee { position:relative; z-index:1; margin-top:10px; }
.partner-marquee-label { text-align:center; font-size:11px; color:#bbb; letter-spacing:3px; margin-bottom:12px; }
.partner-marquee-track {
  display:flex; gap:12px; overflow:hidden; padding:4px 0;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 10%,#000 90%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 10%,#000 90%,transparent 100%);
}
.partner-marquee-inner {
  display:flex; gap:16px; animation:marquee 24s linear infinite;
}
.partner-marquee-inner:hover { animation-play-state:paused; }
.partner-marquee-item {
  display:flex; align-items:center; gap:12px;
  padding:14px 28px; background:#f8fcf9; border:1px solid #e8f5ee;
  border-radius:12px; white-space:nowrap; font-size:15px; color:#555; flex-shrink:0;
  min-height:64px;
}
.partner-marquee-item .pm-dot {
  width:10px; height:10px; border-radius:50%; background:var(--pc,#0d7a4a); flex-shrink:0;
}
.partner-marquee-item .pm-logo { height:48px; width:auto; max-width:130px; object-fit:contain; flex-shrink:0; border-radius:6px; }
.partner-marquee-item .pm-name { font-weight:600; }
@keyframes marquee {
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
/* Contact Form */
.contact-form-wrap { position:relative; z-index:1; margin-top:10px; }
.contact-form-wrap .cf-title { text-align:center; margin-bottom:20px; }
.contact-form-wrap .cf-title h3 { font-size:18px; color:#333; font-weight:600; letter-spacing:2px; }
.contact-form-wrap .cf-title p { font-size:12px; color:#999; margin-top:4px; letter-spacing:1px; }
.contact-form { max-width:640px; margin:0 auto; }
.contact-form .cf-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.contact-form .cf-full { grid-column:1 / -1; }
.contact-form input,.contact-form textarea {
  width:100%; padding:12px 16px; border:1px solid #e0e0e0; border-radius:10px;
  font-size:13px; color:#333; outline:none; transition:all .3s;
  background:#fafafa; font-family:inherit;
}
.contact-form input:focus,.contact-form textarea:focus { border-color:#0d7a4a; background:#fff; box-shadow:0 0 0 3px rgba(13,122,74,.08); }
.contact-form textarea { height:80px; resize:vertical; }
.contact-form input::placeholder,.contact-form textarea::placeholder { color:#bbb; }
.contact-form .cf-btn {
  width:100%; padding:13px; border:none; border-radius:10px;
  background:linear-gradient(135deg,#0d7a4a,#22a06b); color:#fff;
  font-size:14px; font-weight:600; letter-spacing:2px; cursor:pointer;
  transition:all .3s; font-family:inherit;
}
.contact-form .cf-btn:hover { transform:translateY(-1px); box-shadow:0 4px 15px rgba(13,122,74,.3); }
.contact-form .cf-btn:disabled { opacity:.5; cursor:not-allowed; transform:none; }
.contact-form .cf-feedback { text-align:center; font-size:13px; margin-top:8px; min-height:20px; }
.contact-form .cf-feedback.success { color:#0d7a4a; }
.contact-form .cf-feedback.error { color:#d32f2f; }
/* SEO hidden */
.seo-hidden-summary { position:absolute; left:-9999px; font-size:0; line-height:0; height:0; overflow:hidden; }

/* ===== Article Cards - 健康知识图文卡片 ===== */
.article-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin:20px 0;
}
.article-card {
  display:block; background:#fff; border-radius:14px; overflow:hidden;
  border:1px solid #e8f5ee; text-decoration:none; color:inherit;
  transition:all .35s cubic-bezier(.4,0,.2,1);
}
.article-card:hover { transform:translateY(-5px); box-shadow:0 12px 35px rgba(13,122,74,.12); border-color:#0d7a4a; }
.article-card .ac-cover {
  width:100%; height:140px; overflow:hidden; position:relative;
}
.article-card .ac-cover img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.article-card:hover .ac-cover img { transform:scale(1.05); }
.article-card .ac-cover-icon {
  display:flex; align-items:center; justify-content:center; font-size:48px; color:#fff;
  position:relative; transition:transform .4s;
}
.article-card:hover .ac-cover-icon { transform:scale(1.08); }
.article-card .ac-cover-icon::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.15) 0%,transparent 50%,rgba(0,0,0,.1) 100%);
}
.article-card .ac-body { padding:16px 18px 20px; position:relative; }
.article-card .ac-tag {
  display:inline-block; font-size:11px; padding:2px 10px; border-radius:4px;
  background:rgba(13,122,74,.08); color:#0d7a4a; margin-bottom:8px; letter-spacing:1px;
  font-weight:500;
}
.article-card .ac-body h4 { font-size:16px; color:#333; font-weight:600; line-height:1.4; margin-bottom:6px; }
.article-card .ac-body p { font-size:13px; color:#888; line-height:1.7; margin:0; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.article-card .ac-more {
  display:inline-flex; align-items:center; gap:4px;
  font-size:12px; color:#0d7a4a; font-weight:500; margin-top:10px;
  transition:gap .3s; cursor:pointer;
}
.article-card:hover .ac-more { gap:8px; }
.article-card .ac-more i { font-size:11px; transition:transform .3s; }
.article-card.ac-open .ac-more i { transform:rotate(0deg); }
/* Article full content - expandable */
.article-card .ac-content {
  max-height:0; opacity:0; overflow:hidden;
  transition:max-height .5s cubic-bezier(.4,0,.2,1), opacity .4s ease, margin .3s ease;
  margin-top:0; line-height:1.9; font-size:14px; color:#555;
  border-top:1px solid transparent;
}
.article-card.ac-open .ac-content {
  max-height:2000px; opacity:1;
  margin-top:12px; padding-top:14px;
  border-top-color:#e8f5ee;
}
.article-card .ac-content strong { color:#0d7a4a; }
.article-card .ac-content br + br { display:block; margin-top:4px; }
@media (max-width:1024px) { .article-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px) { .article-grid { grid-template-columns:1fr; } }
@media (max-width:768px) {
  .partner-wrap { padding:30px 16px; }
  .partner-section-title h2 { font-size:20px; }
  .partner-row { grid-template-columns:1fr; }
  .partner-card { padding:16px 18px; gap:14px; }
  .partner-card .pc-logo { min-width:80px; height:68px; padding:6px 8px; }
  .partner-card .pc-logo img { max-width:120px; max-height:56px; }
  .contact-form .cf-row { grid-template-columns:1fr; }
  .partner-marquee-item { padding:10px 18px; font-size:13px; min-height:50px; }
  .partner-marquee-item .pm-logo { height:34px; max-width:90px; }
}

/* Category Title */
.category-title { font-size:22px; color:#0d7a4a; font-weight:600; margin-bottom:16px; padding-left:16px; border-left:4px solid #1a8a5c; }

/* Brand Concept */
.brand-concept { max-width:700px; margin:0 auto; text-align:center; }
.brand-concept p { font-size:16px; line-height:2; color:#555; }

/* Footer */
.site-footer { background:#2a2a2a; color:#aaa; padding:50px 20px 30px; }
.footer-container { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:30px; }
.footer-brand { text-align:center; }
.footer-brand .footer-logo img { height:var(--logo-height,36px); margin-bottom:15px; }
.footer-brand .footer-desc { font-size:12px; line-height:1.9; color:#999; }
.footer-col { text-align:center; }
.footer-col h5 { color:#fff; font-size:14px; margin-bottom:16px; letter-spacing:2px; }
.footer-col a { display:block; font-size:13px; color:#aaa; text-decoration:none; margin-bottom:10px; transition:color .3s; line-height:1.6; }
.footer-col a:hover { color:#fff; }
.footer-col-contact { text-align:center; }
.footer-col-contact h5 { color:#fff; font-size:14px; margin-bottom:16px; letter-spacing:2px; }
.footer-col-contact .footer-qr-img { width:180px; margin:0 auto 10px; background:#fff; border-radius:8px; padding:4px; }
.footer-col-contact .footer-qr-img img { width:100%; height:auto; display:block; border-radius:4px; }
.footer-col-contact p { font-size:11px; color:#888; letter-spacing:1px; margin-top:4px; }
.footer-bottom { max-width:1200px; margin:30px auto 0; padding-top:20px; border-top:1px solid #3a3a3a; text-align:center; font-size:12px; }
.footer-bottom .footer-icp { margin-left:16px; color:#888; text-decoration:none; }
.footer-bottom .footer-icp:hover { color:#fff; }
.footer-bottom a { color:#888; text-decoration:none; }
.footer-bottom a:hover { color:#fff; }

/* Responsive */
@media (max-width:768px) {
    .nav-container { height:auto; flex-direction:column; padding:10px 20px; gap:8px; }
    .logo img { height:32px; }
    .main-nav ul { gap:2px; flex-wrap:wrap; justify-content:center; }
    .main-nav ul li a { padding:6px 10px; font-size:13px; }
    .carousel-section { margin-top:0; }
    .carousel-img { aspect-ratio:21/9; }
    .carousel-control { width:36px; height:36px; font-size:16px; }
    .section-title h2 { font-size:22px; }
    .three-col-grid, .two-col-grid { grid-template-columns:1fr; }
    .milestone-grid { grid-template-columns:1fr; }
    .feature-list { grid-template-columns:1fr; }
    .service-icons { grid-template-columns:repeat(3,1fr); }
    .footer-container { grid-template-columns:1fr 1fr 1fr; gap:20px 16px; text-align:center; }
    .footer-container .footer-brand { grid-column:1 / -1; }
    .footer-container .footer-brand .footer-logo img { margin-bottom:24px; }
    .footer-container .footer-col-contact { grid-column:1 / -1; }
    .footer-col-contact .footer-qr-img { width:120px; }
    .partner-logos { gap:10px; }
    .partner-badge { padding:12px 18px; font-size:13px; }
}
