  :root {
    --red: #c8231d;
    --red-dark: #a51b16;
    --red-soft: #fdeceb;
    --dark: #1d1d1f;
    --charcoal: #232326;
    --text: #2b2b2e;
    --muted: #6b6b70;
    --gray: #f4f4f5;
    --line: #e5e5e7;
    --green: #25d366;
    --gold: #f5b301;
    --navy: #1d3557;
    --radius: 12px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.65;
  }
  h1, h2, h3, h4, .btn, .kicker { font-family: 'Montserrat', 'Inter', sans-serif; }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  .wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

  /* ===== Top action bar (gaya Tradecorp: dua blok merah) ===== */
  .actionbar { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: #fff; }
  .actionbar a {
    background: var(--red); color: #fff;
    text-align: center; padding: 13px 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
    transition: background .15s ease;
  }
  .actionbar a:hover { background: var(--red-dark); }

  /* ===== Header ===== */
  header {
    position: sticky; top: 0; z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; max-width: 1140px; margin: 0 auto;
  }
  .logo { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 19px; color: var(--dark); }
  .logo-mark {
    width: 38px; height: 38px; border-radius: 8px;
    background: var(--red);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .logo-mark svg { width: 22px; height: 22px; }
  .logo span em { font-style: normal; color: var(--red); }
  .logo small { display: block; font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
  nav.menu { display: flex; gap: 26px; font-size: 13.5px; font-weight: 600; color: #444; text-transform: uppercase; letter-spacing: .03em; }
  nav.menu a:hover { color: var(--red); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 800; font-size: 14.5px; letter-spacing: .02em;
    padding: 13px 24px; border-radius: 8px;
    transition: all .15s ease; cursor: pointer; border: none;
  }
  .btn-wa { background: var(--green); color: #fff; }
  .btn-wa:hover { background: #1fb959; transform: translateY(-1px); }
  .btn-red { background: var(--red); color: #fff; }
  .btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
  .btn-outline { background: #fff; color: var(--red); border: 2px solid var(--red); }
  .btn-outline:hover { background: var(--red-soft); }
  .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .nav .btn { padding: 10px 18px; font-size: 13px; }

  /* ===== Hero (putih bersih, judul merah uppercase) ===== */
  .hero { background: #fff; border-bottom: 1px solid var(--line); }
  .hero-inner {
    display: grid; grid-template-columns: 1.12fr .88fr; gap: 52px;
    align-items: center;
    padding: 58px 24px 66px; max-width: 1140px; margin: 0 auto;
  }
  .hero .avail {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f0fdf5; border: 1px solid #bbe9cd;
    color: #14833b; font-size: 13px; font-weight: 700;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
  }
  .hero .avail .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
  .hero h1 {
    font-size: clamp(28px, 3.9vw, 42px);
    line-height: 1.15; font-weight: 900; letter-spacing: .01em;
    color: var(--red); text-transform: uppercase;
    margin-bottom: 16px;
  }
  .hero h1 span { color: var(--dark); }
  .hero p.lede { font-size: 16.5px; color: var(--muted); max-width: 520px; margin-bottom: 22px; }
  .hero p.lede strong { color: var(--dark); }
  .hero-bullets { list-style: none; margin-bottom: 28px; }
  .hero-bullets li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 15px; font-weight: 600; color: var(--text); padding: 4px 0;
  }
  .hero-bullets li svg { width: 19px; height: 19px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
  .hero-proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .hero-proof .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
  .hero-proof span { font-size: 13.5px; color: var(--muted); }
  .hero-proof strong { color: var(--dark); }

  /* Quote card */
  .quote-card {
    background: #fff; color: var(--text);
    border: 2px solid var(--red);
    border-radius: 14px; padding: 26px 28px;
    box-shadow: 0 18px 44px -14px rgba(200,35,29,.25);
    position: relative;
  }
  .quote-badge {
    position: absolute; top: -13px; left: 24px;
    background: var(--red); color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 800; letter-spacing: .1em;
    padding: 4px 14px; border-radius: 999px; text-transform: uppercase;
  }
  .quote-card h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin: 6px 0 4px; text-transform: uppercase; letter-spacing: .02em; }
  .quote-card > p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
  .quote-card > p strong { color: var(--red); }
  .quote-card label { display: block; font-size: 12.5px; font-weight: 700; color: #48484c; margin: 11px 0 5px; }
  .quote-card input, .quote-card select {
    width: 100%; padding: 11px 13px;
    border: 1.5px solid var(--line); border-radius: 8px;
    font-family: inherit; font-size: 14.5px; color: var(--text);
    background: #fafafa;
  }
  .quote-card input:focus, .quote-card select:focus { outline: none; border-color: var(--red); background: #fff; }
  .quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .quote-card .btn { width: 100%; margin-top: 16px; font-size: 15px; padding: 14px 22px; }
  .quote-card .fineprint { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .quote-card .fineprint svg { width: 13px; height: 13px; color: var(--green); }

  /* ===== Stats bar ===== */
  .statsbar { background: var(--gray); border-bottom: 1px solid var(--line); }
  .statsbar .wrap {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    padding-top: 26px; padding-bottom: 26px;
  }
  .stat { text-align: center; }
  .stat strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 27px; font-weight: 900; color: var(--red); line-height: 1.2; }
  .stat span { font-size: 13px; color: var(--muted); font-weight: 600; }

  /* ===== Sections ===== */
  section { padding: 70px 0; }
  .sec-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
  .kicker {
    color: var(--red); font-weight: 800; font-size: 12.5px;
    text-transform: uppercase; letter-spacing: .18em; margin-bottom: 10px; display: block;
  }
  .sec-head h2 {
    font-size: clamp(24px, 3vw, 33px); font-weight: 900; color: var(--dark);
    letter-spacing: .02em; line-height: 1.22; margin-bottom: 12px;
    text-transform: uppercase;
  }
  .sec-head h2 em { font-style: normal; color: var(--red); }
  .sec-head p { color: var(--muted); font-size: 15.5px; }

  /* ===== Product grid (foto ber-frame merah + label kategori, gaya Tradecorp) ===== */
  .prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .prod-card {
    border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; background: #fff;
    transition: all .18s ease;
    display: flex; flex-direction: column;
  }
  .prod-card:hover { box-shadow: 0 16px 40px -12px rgba(29,29,31,.16); transform: translateY(-3px); }
  .prod-visual {
    background: #eef0f2;
    border-bottom: 3px solid var(--red);
    padding: 24px 18px 18px; position: relative;
  }
  .prod-visual svg { width: 100%; height: 70px; }
  .prod-label {
    position: absolute; top: 10px; right: 10px;
    background: rgba(200,35,29,.92); color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 3px;
  }
  .prod-ready {
    position: absolute; top: 10px; left: 10px;
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff; color: #14833b;
    font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
    padding: 3px 9px; border-radius: 999px; border: 1px solid #bbe9cd;
  }
  .prod-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
  .prod-body h3 { font-size: 15.5px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
  .prod-body p { font-size: 13.5px; color: var(--muted); flex: 1; margin-bottom: 14px; }
  .price-box { border-top: 1px dashed var(--line); padding-top: 12px; }
  .price-box .p-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 12.5px; color: var(--muted); padding: 2px 0; }
  .price-box .p-row strong { font-size: 15px; color: var(--dark); font-weight: 800; }
  .price-box .p-row strong.hl { color: var(--red); }
  .prod-body a.more {
    margin-top: 14px;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    background: #f0fdf5; border: 1.5px solid #bbe9cd; color: #14833b;
    font-size: 13px; font-weight: 800; padding: 10px; border-radius: 8px;
    transition: all .15s ease;
  }
  .prod-body a.more:hover { background: var(--green); border-color: var(--green); color: #fff; }
  .prod-body a.more svg { width: 16px; height: 16px; }
  .price-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 22px; }
  .price-note a { color: var(--red); font-weight: 700; }

  /* ===== Sewa vs Beli ===== */
  .split { background: var(--gray); }
  .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .split-card {
    background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 34px;
  }
  .split-card .icon {
    width: 52px; height: 52px; border-radius: 10px;
    display: grid; place-items: center; margin-bottom: 18px;
    background: var(--red-soft);
  }
  .split-card .icon svg { width: 26px; height: 26px; color: var(--red); }
  .split-card h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .02em; }
  .split-card .from { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
  .split-card .from strong { color: var(--red); font-size: 17px; font-weight: 800; }
  .split-card ul { list-style: none; margin-bottom: 24px; }
  .split-card li { display: flex; gap: 10px; font-size: 14.5px; padding: 5px 0; color: var(--text); }
  .split-card li svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }

  /* ===== Why us ===== */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .why-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
  .why-card .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 800; color: var(--red);
    background: var(--red-soft); border-radius: 6px; padding: 4px 10px;
    display: inline-block; margin-bottom: 14px;
  }
  .why-card h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
  .why-card p { font-size: 14px; color: var(--muted); }

  /* ===== Testimonials ===== */
  .testi { background: var(--gray); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .testi-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px;
  }
  .testi-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }
  .testi-card blockquote { font-size: 14.5px; color: var(--text); margin-bottom: 18px; }
  .testi-who { display: flex; align-items: center; gap: 12px; }
  .testi-who .ava {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 800; color: #fff; font-size: 15px;
  }
  .testi-who b { display: block; font-size: 14px; color: var(--dark); }
  .testi-who span { font-size: 12.5px; color: var(--muted); }

  /* ===== Steps ===== */
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step { position: relative; padding: 26px 22px; background: var(--gray); border-radius: var(--radius); }
  .step .n {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--red); color: #fff;
    display: grid; place-items: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px;
    margin-bottom: 16px;
  }
  .step h3 { font-size: 15.5px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
  .step p { font-size: 13.5px; color: var(--muted); }
  .step .t { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 800; color: #14833b; background: #f0fdf5; padding: 3px 10px; border-radius: 999px; }
  .steps-note { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

  /* ===== Coverage ===== */
  .coverage { background: var(--charcoal); color: #fff; }
  .coverage .sec-head h2 { color: #fff; }
  .coverage .sec-head h2 em { color: #ff6b64; }
  .coverage .sec-head p { color: #a8a8ad; }
  .city-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .city {
    padding: 10px 20px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    font-size: 14.5px; font-weight: 600; color: #d8d8dc;
    transition: all .15s ease;
  }
  .city:hover { border-color: var(--red); color: #fff; background: rgba(200,35,29,.18); }
  .coverage .note { margin-top: 24px; font-size: 14px; color: #a8a8ad; text-align: center; }
  .coverage .note a { color: #ff6b64; font-weight: 700; }

  /* ===== FAQ ===== */
  .faq-list { max-width: 760px; margin: 0 auto; }
  details {
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    margin-bottom: 12px; overflow: hidden;
  }
  summary {
    padding: 18px 22px; font-weight: 700; font-size: 15.5px; color: var(--dark);
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; font-size: 20px; color: var(--red); font-weight: 600; flex-shrink: 0; }
  details[open] summary::after { content: "–"; }
  details[open] { border-color: var(--red); }
  details .answer { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); }

  /* ===== CTA band ===== */
  .cta-band {
    background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff; text-align: center;
  }
  .cta-band h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 900; letter-spacing: .02em; margin-bottom: 12px; text-transform: uppercase; }
  .cta-band p { font-size: 16px; opacity: .95; max-width: 580px; margin: 0 auto 28px; }
  .cta-band .btn-wa { background: #fff; color: #14833b; font-size: 16px; padding: 15px 28px; }
  .cta-band .btn-wa:hover { background: #f2fff7; }
  .cta-band .sub { margin-top: 14px; font-size: 13px; opacity: .9; }

  /* ===== Footer ===== */
  footer { background: var(--charcoal); color: #a8a8ad; font-size: 14px; }
  .foot-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
    padding: 56px 0 40px;
  }
  footer h4 { color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
  footer ul { list-style: none; }
  footer li { margin-bottom: 9px; }
  footer a:hover { color: #fff; }
  .foot-brand p { margin-top: 14px; max-width: 300px; }
  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0 90px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    font-size: 13px;
  }

  /* ===== Pita vertikal kanan (gaya Tradecorp) ===== */
  .side-ribbon {
    position: fixed; right: 0; top: 50%; z-index: 90;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    background: var(--red); color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
    padding: 22px 12px; border-radius: 8px 0 0 8px;
    box-shadow: -6px 0 18px rgba(200,35,29,.35);
    transition: background .15s ease;
  }
  .side-ribbon:hover { background: var(--red-dark); }

  /* ===== Floating WA (desktop) ===== */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 100;
    display: flex; align-items: center; gap: 10px;
    background: var(--green); color: #fff;
    padding: 13px 20px 13px 15px; border-radius: 999px;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    transition: transform .15s ease;
  }
  .wa-float:hover { transform: scale(1.05); }
  .wa-float svg { width: 24px; height: 24px; }

  /* ===== Sticky mobile CTA ===== */
  .mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    background: #fff; border-top: 1px solid var(--line);
    padding: 10px 14px; gap: 10px;
    box-shadow: 0 -6px 24px rgba(29,29,31,.12);
  }
  .mobile-cta .btn { flex: 1; padding: 13px 10px; font-size: 14px; }
  .mobile-cta .btn-call { background: var(--dark); color: #fff; }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    nav.menu { display: none; }
    .hero-inner { grid-template-columns: 1fr; padding: 44px 24px 54px; gap: 40px; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .statsbar .wrap { grid-template-columns: repeat(2, 1fr); }
    .side-ribbon { display: none; }
  }
  @media (max-width: 640px) {
    .prod-grid { grid-template-columns: 1fr; }
    .why-grid, .testi-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .quote-row { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    section { padding: 52px 0; }
    .mobile-cta { display: flex; }
    .wa-float { display: none; }
    .nav .btn span { display: none; }
    .nav .btn { padding: 10px 12px; }
    .actionbar a { font-size: 12px; letter-spacing: .06em; }
  }
/* ===== Halaman produk ===== */
.breadcrumb { background: var(--gray); border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.breadcrumb .wrap { padding-top: 11px; padding-bottom: 11px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb b { color: var(--dark); font-weight: 600; }

.hp-rows { margin: 6px 0 4px; }
.hp-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--muted); }
.hp-row strong { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 800; color: var(--red); }
.hp-row strong small { font-size: 12px; color: var(--muted); font-weight: 600; }
.hp-note { font-size: 12px; color: var(--muted); margin-top: 10px; }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; background: #fff; }
.data-table th { background: var(--dark); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; text-align: left; padding: 13px 16px; }
.data-table td { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--text); }
.data-table tr:nth-child(even) td { background: #fafafa; }
.data-table td.hl { color: var(--red); font-weight: 800; white-space: nowrap; }
.data-table td small { color: var(--muted); }

.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.uc-card { background: var(--gray); border-radius: var(--radius); padding: 22px; }
.uc-card .em { font-size: 26px; margin-bottom: 10px; display: block; }
.uc-card h3 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.uc-card p { font-size: 13.5px; color: var(--muted); }

.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .rel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .uc-grid { grid-template-columns: 1fr; }
}

/* ===== Galeri foto produk ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px; gap: 14px;
}
.ph { position: relative; border-radius: 10px; overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.ph:hover img { transform: scale(1.04); }
.ph-big { grid-column: span 2; grid-row: span 2; }
.ph-wide { grid-column: span 2; }
.ph .prod-label { z-index: 2; }
.gallery-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .ph-big { grid-column: span 2; }
}

/* ===== Use case detail (kartu dengan gambar) ===== */
.uc-grid.uc-detail { grid-template-columns: repeat(2, 1fr); gap: 22px; }
.uc-detail .uc-card { padding: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.uc-detail .uc-card > img { width: 100%; height: 200px; object-fit: cover; display: block; border-bottom: 3px solid var(--red); }
.uc-detail .uc-body { padding: 22px 24px 24px; }
.uc-detail .uc-body h3 { font-size: 17px; margin-bottom: 8px; }
.uc-detail .uc-body p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.uc-detail .uc-body ul { list-style: none; }
.uc-detail .uc-body li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--text); padding: 3px 0; }
.uc-detail .uc-body li svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.uc-cta { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 800; color: var(--red); }
.uc-cta:hover { color: var(--red-dark); text-decoration: underline; }
@media (max-width: 700px) {
  .uc-grid.uc-detail { grid-template-columns: 1fr; }
  .uc-detail .uc-card > img { height: 170px; }
}
