﻿    :root {
      --brand: #182d82;
      --brand-dark: #10205f;
      --brand-soft: #eef2ff;
      --brand-light: #4f6ed8;
      --black: #182d82;
      --charcoal: #223b96;
      --ink: #24345f;
      --gray: #5d6888;
      --muted: #7c86a5;
      --line: #dfe5f6;
      --bg: #f5f7ff;
      --white: #ffffff;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: Arial, "Microsoft YaHei", sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.65;
    }

    main.skid-steer-dealer-page a { color: inherit; text-decoration: none; }

    main.skid-steer-dealer-page .container {
      width: min(1200px, calc(100% - 40px));
      max-width: 1200px;
      margin: 0 auto;
    }
    .row.hero-grid,
    .row.hero-proof,
    .row.value-grid,
    .row.product-comparison,
    .row.segment-grid,
    .row.needs-grid,
    .row.support-layout,
    .row.dealer-panel,
    .row.faq-grid {
      display: flex;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 45%, rgba(255,255,255,.28) 100%),
        url(../images/hy_bj.jpg) center center / cover no-repeat;
      color: var(--ink);
      min-height: 720px;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -170px;
      width: 720px;
      height: 720px;
      border-radius: 50%;
      border: 90px solid rgba(255,255,255,.13);
    }

    .hero::after {
      content: "SKID STEER";
      position: absolute;
      right: 30px;
      bottom: 20px;
      font-size: clamp(64px, 12vw, 180px);
      font-weight: 900;
      letter-spacing: -8px;
      color: rgba(255,255,255,.045);
      line-height: 1;
      white-space: nowrap;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 58px;
      align-items: center;
      padding: 96px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-left: 4px solid var(--brand);
      background: rgba(24,45,130,.08);
      color: var(--brand);
      font-weight: 800;
      letter-spacing: .3px;
      margin-bottom: 24px;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(42px, 5.8vw, 28px);
      line-height: .98;
      letter-spacing: -2.4px;
      margin-bottom: 24px;
    }

    .hero h1 {
      color: var(--brand);
      text-shadow: 0 2px 18px rgba(255,255,255,.75);
    }

    .hero p {
      max-width: 660px;
      font-size: 19px;
      color: #2f3c68;
      margin-bottom: 34px;
      text-shadow: 0 1px 12px rgba(255,255,255,.72);
    }

    .hero-actions,
    .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-actions { margin-bottom: 36px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 14px 24px;
      border-radius: 4px;
      font-weight: 900;
      border: 2px solid transparent;
      transition: .2s ease;
      cursor: pointer;
      background: #182d82;
      
    }
    .btn-primary{
      color: #fff !important;
    }
    .btn:hover { transform: translateY(-2px); background: #182d82;}
    .btn-primary:hover { background: var(--brand-dark); }

    .hero .btn-outline {
      color: var(--brand);
      border-color: rgba(24,45,130,.42);
      background: rgba(255,255,255,.7);
    }

    .hero .btn-outline:hover { border-color: var(--brand); background: var(--white); }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 680px;
    }

    .proof-item {
      border: 1px solid rgba(24,45,130,.16);
      background: rgba(255,255,255,.78);
      padding: 18px;
      border-radius: 8px;
    }

    .proof-item strong {
      display: block;
      color: var(--brand);
      font-size: 28px;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .proof-item span { color: #3b466f; font-size: 13px; }

    .hero-panel {
      background: rgba(255,255,255,.96);
      color: var(--ink);
      padding: 34px;
      border-radius: 10px;
      box-shadow: 0 34px 90px rgba(0,0,0,.34);
      border-top: 7px solid var(--brand);
    }

    .product-placeholder {
      position: relative;
      height: 320px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 24px;
    }

    .product-placeholder::before {
      content: "RIPPA";
      position: absolute;
      left: 28px;
      top: 26px;
      font-size: 52px;
      color: rgba(255,255,255,.9);
      font-weight: 900;
      letter-spacing: 4px;
    }

    .product-placeholder::after {
      content: "RS SERIES";
      position: absolute;
      right: 24px;
      bottom: 20px;
      color: rgba(255,255,255,.82);
      font-size: 28px;
      font-weight: 900;
    }

    .hero-panel h3 { font-size: 24px; margin-bottom: 12px; color: var(--black); }

    .hero-panel ul { list-style: none; display: grid; gap: 10px; color: var(--gray); }
    .hero-panel li::before { content: "■"; color: var(--brand); font-size: 10px; margin-right: 10px; }

    section { padding: 92px 0; }

    .section-head {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 44px;
    }

    .kicker {
      color: var(--brand);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-head h2,
    .split-copy h2,
    .dealer h2,
    .final-cta h2 {
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -1.6px;
      color: var(--black);
    }

    .section-head p,
    .split-copy p,
    .dealer p {
      color: var(--gray);
      font-size: 17px;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .value-card,
    .segment-card,
    .model-card,
    .support-card,
    details {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 10px;
      box-shadow: 0 14px 34px rgba(0,0,0,.04);
    }

    .value-card {
      padding: 28px;
      min-height: 255px;
      border-top: 5px solid var(--brand);
    }

    .value-card .icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      background: var(--brand-soft);
      color: var(--brand);
      border-radius: 6px;
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 20px;
    }

    .value-card h3 { font-size: 21px; color: var(--black); margin-bottom: 10px; }
    .value-card p { color: var(--gray); font-size: 15px; }

    .model-section { background: var(--white); }

    .product-stage {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 34px;
      min-height: 470px;
      padding: 42px;
      border-radius: 18px;
      background:
        linear-gradient(115deg, #182d82 0%, #243f9f 44%, #f8fbff 44%, #ffffff 100%);
      border: 1px solid var(--line);
      box-shadow: 0 24px 70px rgba(0,0,0,.09);
      margin-bottom: 22px;
    }

    .product-stage::after {
      content: "RS SERIES";
      position: absolute;
      right: 26px;
      bottom: -8px;
      font-size: clamp(54px, 9vw, 132px);
      font-weight: 900;
      line-height: 1;
      color: rgba(31,111,255,.07);
      letter-spacing: -5px;
    }

    .stage-copy {
      position: relative;
      z-index: 2;
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 520px;
    }

    .stage-label {
      display: inline-flex;
      width: fit-content;
      padding: 8px 12px;
      background: rgba(31,111,255,.16);
      border-left: 4px solid var(--brand);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 1.3px;
      margin-bottom: 22px;
    }

    .stage-copy h3 {
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: .98;
      letter-spacing: -2px;
      margin-bottom: 20px;
    }

    .stage-copy p {
      color: #d8d8d8;
      font-size: 17px;
      margin-bottom: 28px;
    }

    .stage-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .stage-btn-outline {
      color: var(--white);
      border-color: rgba(255,255,255,.38);
      background: transparent;
    }

    .stage-machine {
      position: relative;
      z-index: 2;
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .machine-badge {
      position: absolute;
      top: 12px;
      right: 18px;
      background: var(--brand);
      color: var(--white);
      padding: 8px 12px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1px;
      z-index: 4;
    }

    .machine-shadow {
      position: absolute;
      bottom: 54px;
      width: 72%;
      height: 34px;
      background: rgba(0,0,0,.16);
      filter: blur(10px);
      border-radius: 50%;
    }

    .machine-body {
      position: relative;
      width: min(520px, 86%);
      height: 210px;
      background: linear-gradient(135deg, var(--brand), var(--brand-light) 48%, #10205f 48%, #182d82 100%);
      border-radius: 18px 26px 16px 16px;
      box-shadow: 0 28px 70px rgba(31,111,255,.18);
      transform: skewX(-5deg);
    }

    .machine-body::before {
      content: "";
      position: absolute;
      right: 78px;
      top: 30px;
      width: 106px;
      height: 86px;
      background: rgba(255,255,255,.85);
      clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
      border-radius: 4px;
    }

    .machine-body span {
      position: absolute;
      left: 34px;
      bottom: 34px;
      color: rgba(255,255,255,.92);
      font-size: 42px;
      font-weight: 900;
      letter-spacing: 3px;
    }

    .machine-wheel {
      position: absolute;
      bottom: 72px;
      width: 94px;
      height: 94px;
      border-radius: 50%;
      background: radial-gradient(circle, #eef2ff 0 26%, #10205f 27% 62%, #2946a6 63% 100%);
      border: 8px solid #10205f;
      z-index: 3;
    }

    .wheel-left { left: 21%; }
    .wheel-right { right: 19%; }

    .machine-arm {
      position: absolute;
      right: 9%;
      top: 108px;
      width: 170px;
      height: 18px;
      background: #10205f;
      transform: rotate(-20deg);
      border-radius: 999px;
      transform-origin: left center;
      z-index: 2;
    }

    .machine-bucket {
      position: absolute;
      right: 1%;
      bottom: 92px;
      width: 112px;
      height: 58px;
      background: #10205f;
      clip-path: polygon(0 24%, 100% 0, 86% 100%, 8% 86%);
      z-index: 3;
    }

    .product-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 22px;
    }

    .tab-card {
      background: #f7f9fc;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 20px 22px;
      display: grid;
      gap: 6px;
    }

    .tab-card.active {
      background: var(--brand-soft);
      border-color: rgba(31,111,255,.32);
      box-shadow: 0 14px 34px rgba(31,111,255,.08);
    }

    .tab-card span {
      color: var(--brand);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: 1px;
    }

    .tab-card strong {
      color: var(--black);
      font-size: 21px;
      line-height: 1.1;
    }

    .tab-card p {
      color: var(--gray);
      font-size: 14px;
    }

    .product-comparison {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 22px;
    }

    .product-line-card {
      position: relative;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 28px;
      box-shadow: 0 16px 42px rgba(0,0,0,.05);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .product-line-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--brand);
      opacity: .55;
    }

    .product-line-card.featured-line {
      border-color: rgba(31,111,255,.35);
      transform: translateY(-10px);
      box-shadow: 0 28px 70px rgba(31,111,255,.14);
    }

    .product-line-card.featured-line::before { opacity: 1; }

    .line-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .line-head span {
      display: block;
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1.1px;
      margin-bottom: 8px;
    }

    .line-head h3 {
      color: var(--black);
      font-size: 31px;
      line-height: 1;
      letter-spacing: -1px;
    }

    .line-head em {
      color: var(--muted);
      font-size: 13px;
      font-style: normal;
      text-align: right;
      max-width: 110px;
      line-height: 1.25;
    }

    .product-line-card > p {
      color: var(--gray);
      font-size: 15px;
    }

    .model-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .model-pair div {
      background: #f8fafc;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 16px;
      display: grid;
      gap: 4px;
    }

    .model-pair strong {
      color: var(--brand);
      font-size: 24px;
      line-height: 1;
    }

    .model-pair small {
      color: var(--gray);
      font-size: 12px;
      line-height: 1.35;
    }

    .product-line-card ul {
      list-style: none;
      display: grid;
      gap: 9px;
      color: var(--gray);
      font-size: 14px;
      margin-top: auto;
    }

    .product-line-card li::before {
      content: "✓";
      color: var(--brand);
      font-weight: 900;
      margin-right: 8px;
    }

    .quick-specs {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
    }

    .quick-spec {
      background: #f9fafc;
      padding: 20px 16px;
      min-height: 118px;
      display: grid;
      align-content: start;
      gap: 6px;
    }

    .quick-spec span {
      color: var(--brand);
      font-size: 29px;
      font-weight: 900;
      line-height: 1;
    }

    .quick-spec strong {
      color: var(--black);
      font-size: 14px;
      line-height: 1.2;
    }

    .quick-spec small {
      color: var(--gray);
      font-size: 12px;
      line-height: 1.25;
    }

    .attachments {
      background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
    }

    .attachment-showcase {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .attachment-feature {
      position: relative;
      overflow: hidden;
      min-height: 520px;
      border-radius: 18px;
      padding: 34px;
      background:
        linear-gradient(180deg, rgba(24,45,130,.88), rgba(16,32,95,.96)),
        url(../images/fj-dt.png) center center / cover no-repeat;
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: 0 26px 72px rgba(0,0,0,.16);
    }

    .attachment-feature::before {
      content: "ATTACHMENTS";
      position: absolute;
      top: 28px;
      left: 28px;
      color: rgba(255,255,255,.08);
      font-size: clamp(42px, 6vw, 82px);
      font-weight: 900;
      line-height: .9;
      letter-spacing: -3px;
    }

    .attachment-feature > * {
      position: relative;
      z-index: 2;
    }

    .attachment-photo {
      position: absolute;
      top: 24px;
      right: 24px;
      z-index: 2;
      width: min(42%, 220px);
      aspect-ratio: 4 / 3;
      padding: 8px;
      border-radius: 16px;
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 46px rgba(0,0,0,.28);
      transform: rotate(2deg);
    }

    .attachment-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      display: block;
    }

    .attachment-feature span {
      width: fit-content;
      padding: 8px 12px;
      border-left: 4px solid var(--white);
      background: rgba(255,255,255,.14);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 1.2px;
      margin-bottom: 18px;
    }

    .attachment-feature h3 {
      font-size: clamp(32px, 4vw, 50px);
      line-height: 1;
      letter-spacing: -1.4px;
      margin-bottom: 18px;
    }

    .attachment-feature p {
      color: #e5e9ff;
      font-size: 17px;
      margin-bottom: 24px;
    }

    .attachment-feature ul {
      list-style: none;
      display: grid;
      gap: 10px;
      color: var(--white);
      font-weight: 700;
    }

    .attachment-feature li::before {
      content: "✓";
      color: #ffcf4a;
      font-weight: 900;
      margin-right: 10px;
    }

    .attachment-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .attachment-card {
      position: relative;
      overflow: hidden;
      min-height: 250px;
      padding: 26px;
      border-radius: 14px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 16px 42px rgba(0,0,0,.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .attachment-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 54px rgba(24,45,130,.12);
    }

    .attachment-card::after {
      content: "";
      position: absolute;
      right: -42px;
      bottom: -42px;
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: var(--brand-soft);
    }

    .attachment-icon {
      position: relative;
      z-index: 2;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--brand-soft);
      color: var(--brand);
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .attachment-card-photo {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 3;
      width: 112px;
      height: 82px;
      padding: 6px;
      border-radius: 14px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 14px 34px rgba(24,45,130,.14);
    }

    .attachment-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      display: block;
    }

    .attachment-card h3 {
      position: relative;
      z-index: 2;
      color: var(--black);
      font-size: 23px;
      margin-bottom: 10px;
    }

    .attachment-card p {
      position: relative;
      z-index: 2;
      color: var(--gray);
      font-size: 15px;
      margin-bottom: 18px;
    }

    .attachment-tags {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .attachment-tags span {
      padding: 6px 10px;
      border-radius: 999px;
      background: #f3f6ff;
      color: var(--brand);
      font-size: 12px;
      font-weight: 800;
    }

    .segments { background: var(--bg); }

    .segment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .segment-card {
      padding: 30px;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .segment-card h3 { color: var(--black); font-size: 25px; margin-bottom: 12px; }
    .segment-card p { color: var(--gray); margin-bottom: 18px; }
    .segment-card ul { list-style: none; display: grid; gap: 9px; color: var(--gray); font-size: 15px; }
    .segment-card li::before { content: "✓"; color: var(--brand); font-weight: 900; margin-right: 8px; }

    .dealer-needs {
      background: linear-gradient(135deg, #182d82 0%, #243f9f 100%);
      color: var(--white);
    }

    .dealer-needs .section-head h2 { color: var(--white); }
    .dealer-needs .section-head p { color: #cfcfcf; }

    .needs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .need-card {
      background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px;
      padding: 15px;
      min-height: 255px;
    }

    .need-card span {
      display: inline-flex;
      color: var(--brand);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 18px;
      letter-spacing: 1px;
    }

    .need-card h3 { font-size: 22px; margin-bottom: 12px; font-weight: 600;}
    .need-card p { color: #cfcfcf; font-size: 15px; }

    .support {
      background: var(--white);
    }

    .support-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .support-card {
      padding: 32px;
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 22px;
      align-items: start;
    }

    .support-icon {
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      background: var(--brand-soft);
      color: var(--brand);
      font-size: 30px;
      font-weight: 900;
      border-radius: 8px;
    }

    .support-card h3 { font-size: 23px; color: var(--black); margin-bottom: 8px; }
    .support-card p { color: var(--gray); }

    .dealer {
      background:
        linear-gradient(135deg, rgba(24,45,130,.94), rgba(79,110,216,.72)),
        linear-gradient(135deg, #182d82, #eef2ff);
    }

    .dealer-panel {
      display: grid;
      grid-template-columns: 1fr .88fr;
      gap: 52px;
      background: var(--white);
      border-radius: 12px;
      padding: 54px;
      box-shadow: 0 26px 72px rgba(0,0,0,.18);
    }

    .dealer h2 { margin-bottom: 18px; }
    .dealer p { margin-bottom: 24px; }

    .dealer-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }

    .dealer-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      background: var(--bg);
      padding: 14px 16px;
      border-radius: 6px;
      color: var(--ink);
      font-weight: 700;
    }

    .dealer-list li::before { content: "■"; color: var(--brand); font-size: 10px; padding-top: 7px; }

    .lead-form {
      background: linear-gradient(180deg, #182d82, #10205f);
      color: var(--white);
      padding: 32px;
      border-radius: 10px;
      border-top: 6px solid var(--brand);
    }

    .lead-form h3 { font-size: 26px; margin-bottom: 18px; }

    .lead-form .wpcf7,
    .lead-form .wpcf7 form,
    .lead-form form.wpcf7-form {
      margin: 0;
    }

    .lead-form .wpcf7,
    .lead-form .wpcf7 form,
    .lead-form form.wpcf7-form {
      display: grid;
      gap: 12px;
    }

    .lead-form .wpcf7 li {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .lead-form .wpcf7 p {
      margin: 0;
      position: relative;
    }

    .lead-form .wpcf7-form-control-wrap {
      display: block;
      width: 100%;
    }

    .lead-form .wpcf7 input[type="text"],
    .lead-form .wpcf7 input[type="email"],
    .lead-form .wpcf7 input[type="tel"],
    .lead-form .wpcf7 select,
    .lead-form .wpcf7 textarea,
    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.96);
      color: var(--ink);
      border-radius: 8px;
      padding: 14px 16px;
      font: inherit;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .lead-form .wpcf7 textarea,
    .lead-form textarea {
      height: 86px;
      min-height: 86px;
      resize: vertical;
      display: block;
    }

    .lead-form .wpcf7 input:focus,
    .lead-form .wpcf7 textarea:focus,
    .lead-form .wpcf7 select:focus,
    .lead-form input:focus,
    .lead-form textarea:focus,
    .lead-form select:focus {
      border-color: rgba(255,255,255,.75);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(255,255,255,.16);
    }

    .lead-form .wpcf7 input::placeholder,
    .lead-form .wpcf7 textarea::placeholder {
      color: #7b84a2;
    }

    .lead-form .wpcf7 li i {
      position: absolute;
      left: 5px;
      top: 15px;
      color: #ff4a7b;
      font-style: normal;
      font-weight: 900;
      z-index: 2;
    }
    .selected{
      background: ##182d82;
      color: #fff;
    }
    .lead-form .wpcf7 .use {
      margin-top: 10px;
    }

    .lead-form .wpcf7 .use p {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .lead-form .wpcf7 .use span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 84px;
      min-height: 38px;
      padding: 8px 16px;
      border: 1px solid rgba(255,255,255,.26);
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      color: var(--white);
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
    }

    .lead-form .wpcf7 .use-input {
      display: none;
    }

    .lead-form .wpcf7 .hint {
      color: rgba(255,255,255,.76);
      font-size: 13px;
    }

    .lead-form .wpcf7 .wpcf7-submit,
    .lead-form .wpcf7 input[type="submit"],
    .lead-form .submit {
      width: 100%;
      min-height: 52px;
      border: 0;
      border-radius: 8px;
      background: var(--white);
      color: var(--brand);
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(0,0,0,.18);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .lead-form .wpcf7 .wpcf7-submit:hover,
    .lead-form .wpcf7 input[type="submit"]:hover,
    .lead-form .submit:hover {
      transform: translateY(-2px);
      background: var(--brand-soft);
      box-shadow: 0 18px 42px rgba(0,0,0,.22);
    }

    .lead-form .wpcf7-spinner {
      display: block;
      margin: 10px auto 0;
    }

    .lead-form .wpcf7-response-output {
      margin: 12px 0 0;
      padding: 12px 14px;
      border-radius: 8px;
      color: var(--white);
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.1);
    }

    .form-row { display: grid; gap: 12px; margin-bottom: 14px; }
    .form-note { color: #d8def5; font-size: 13px; margin-top: 12px; }

    .faq { background: var(--bg); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    details { padding: 24px 26px; }
    summary { cursor: pointer; font-weight: 900; color: var(--black); font-size: 18px; }
    details p { color: var(--gray); margin-top: 14px; }

    .final-cta {
      background:
        linear-gradient(90deg, rgba(24,45,130,.95), rgba(24,45,130,.76)),
        linear-gradient(135deg, #182d82, var(--brand-light));
      color: var(--white);
      text-align: center;
      padding: 90px 20px;
    }

    .final-cta h2 { color: var(--white); margin-bottom: 18px; }
    .final-cta p { max-width: 740px; margin: 0 auto 30px; color: #dddddd; font-size: 18px; }

    /* Keep Bootstrap .row from breaking custom grid layouts */
    main.skid-steer-dealer-page .hero-grid,
    main.skid-steer-dealer-page .hero-proof,
    main.skid-steer-dealer-page .value-grid,
    main.skid-steer-dealer-page .product-comparison,
    main.skid-steer-dealer-page .segment-grid,
    main.skid-steer-dealer-page .needs-grid,
    main.skid-steer-dealer-page .support-layout,
    main.skid-steer-dealer-page .dealer-panel,
    main.skid-steer-dealer-page .faq-grid {
      display: grid;
      margin-left: 0;
      margin-right: 0;
    }

    /* .hero-grid / .dealer-panel are also .container — margin reset above removed auto centering */
    main.skid-steer-dealer-page .container.hero-grid,
    main.skid-steer-dealer-page .container.dealer-panel {
      margin-left: auto;
      margin-right: auto;
    }

    main.skid-steer-dealer-page img {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 1040px) {
      .hero {
        min-height: auto;
        background-position: center right;
      }

      .hero-grid,
      .model-showcase,
      .series-board,
      .product-stage,
      .section-head,
      .dealer-panel {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 34px;
        padding: 76px 0;
      }

      .hero h1 {
        font-size: clamp(38px, 7vw, 58px);
      }

      .hero-panel {
        max-width: 720px;
      }

      .model-feature { position: relative; top: auto; min-height: 420px; }
      .series-main { min-height: 420px; }
      .model-strip, .quick-specs { grid-template-columns: repeat(3, 1fr); }
      .product-tabs { grid-template-columns: 1fr; }
      .product-comparison,
      .support-layout,
      .faq-grid { grid-template-columns: 1fr; }
      .product-line-card.featured-line { transform: none; }
      .attachment-showcase { grid-template-columns: 1fr; }
      .attachment-feature { min-height: 420px; padding-top: 230px; }
      .value-grid, .needs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .segment-grid { grid-template-columns: 1fr; }
      .dealer-panel { gap: 34px; padding: 42px; }
      .nav-links { display: none; }
    }

    @media (max-width: 680px) {
      main.skid-steer-dealer-page .container { width: min(100% - 28px, 1200px); }
      section { padding: 56px 0; }
      .hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 55%, rgba(255,255,255,.72) 100%),
          url(../images/hy_bj.jpg) center top / cover no-repeat;
      }
      .hero::before { display: none; }
      .hero-grid { padding: 48px 0; gap: 26px; }
      .hero h1 { font-size: 40px; line-height: 1.04; letter-spacing: -1.2px; }
      .hero p { font-size: 16px; margin-bottom: 24px; }
      .eyebrow { font-size: 12px; margin-bottom: 18px; }
      .hero-proof { grid-template-columns: 1fr; }
      .proof-item { padding: 14px 16px; }
      .proof-item strong { font-size: 23px; }
      .hero-panel { padding: 24px; box-shadow: 0 18px 46px rgba(24,45,130,.14); }
      .section-head { gap: 18px; margin-bottom: 28px; }
      .section-head h2,
      .split-copy h2,
      .dealer h2,
      .final-cta h2 { font-size: 32px; line-height: 1.12; }
      .model-grid,
      .series-metrics,
      .model-strip { grid-template-columns: 1fr; }
      .quick-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      /* Value cards: one per view, horizontal swipe (mobile) */
      main.skid-steer-dealer-page .value-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 8px;
      }
      main.skid-steer-dealer-page .value-grid > .value-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      /* Product line cards: one per view, horizontal swipe (mobile) */
      main.skid-steer-dealer-page .product-comparison {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 8px;
      }
      main.skid-steer-dealer-page .product-comparison > .product-line-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      /* Attachment cards: one per view, horizontal swipe (mobile) */
      main.skid-steer-dealer-page .attachment-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 8px;
      }
      main.skid-steer-dealer-page .attachment-grid > .attachment-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      /* Attachment cards: full-width hero image, no index number (mobile) */
      main.skid-steer-dealer-page .attachment-grid .attachment-card {
        padding: 0 0 18px;
        min-height: 0;
      }
      main.skid-steer-dealer-page .attachment-grid .attachment-icon {
        display: none;
      }
      main.skid-steer-dealer-page .attachment-grid .attachment-card-photo {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        height: min(52vw, 280px);
        min-height: 200px;
        max-height: 320px;
        margin: 0 0 14px;
        padding: 0;
        border-radius: 14px 14px 0 0;
        border: none;
        box-shadow: none;
      }
      main.skid-steer-dealer-page .attachment-grid .attachment-card-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        display: block;
      }
      main.skid-steer-dealer-page .attachment-grid .attachment-card > div:nth-child(2) {
        padding: 0 20px;
      }
      main.skid-steer-dealer-page .attachment-grid .attachment-card > .attachment-tags {
        padding: 0 20px;
      }
      main.skid-steer-dealer-page .attachment-grid .attachment-card h3 {
        margin-top: 0;
      }

      /* Segment cards: one per view, horizontal swipe (mobile) */
      main.skid-steer-dealer-page .segment-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 8px;
      }
      main.skid-steer-dealer-page .segment-grid > .segment-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      /* Dealer needs cards: one per view, horizontal swipe (mobile) */
      main.skid-steer-dealer-page .needs-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 8px;
      }
      main.skid-steer-dealer-page .needs-grid > .need-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      /* Support cards: one per view, horizontal swipe (mobile) */
      main.skid-steer-dealer-page .support-layout {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 8px;
      }
      main.skid-steer-dealer-page .support-layout > .support-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      .product-stage { grid-template-columns: 1fr; padding: 26px; min-height: auto; background: linear-gradient(180deg, #182d82 0%, #243f9f 50%, #f8fbff 50%, #ffffff 100%); }
      .stage-copy h3 { font-size: 34px; }
      .stage-copy p { font-size: 16px; }
      .stage-machine { min-height: 240px; }
      .stage-machine img { max-height: 240px; object-fit: contain; }
      .machine-body { width: 88%; height: 150px; }
      .machine-body::before { right: 40px; top: 24px; width: 74px; height: 58px; }
      .machine-body span { left: 20px; bottom: 26px; font-size: 30px; }
      .machine-wheel { width: 70px; height: 70px; bottom: 58px; }
      .machine-arm { top: 94px; width: 118px; }
      .machine-bucket { bottom: 76px; width: 82px; height: 44px; }
      .feature-metrics,
      .faq-grid { grid-template-columns: 1fr; }
      main.skid-steer-dealer-page .product-tabs { display: none; }
      .product-line-card { padding: 24px; }
      .attachment-feature { min-height: 360px; padding: 28px; }
      .attachment-feature::before { font-size: 40px; left: 20px; top: 22px; }
      .need-card { min-height: auto; }
      .need-card span { width: 100%; margin-bottom: 14px; }
      .need-card span img { width: 100%; border-radius: 8px; }
      .dealer-panel { padding: 28px; }
      .support-card { grid-template-columns: 1fr; gap: 16px; }
      .nav-cta { display: none; }
      .hero::after { display: none; }
    }

    @media (max-width: 480px) {
      main.skid-steer-dealer-page .container { width: min(100% - 20px, 1200px); }
      section { padding: 46px 0; }
      .hero-grid { padding: 38px 0; }
      .hero h1,
      .section-head h2,
      .split-copy h2,
      .dealer h2,
      .final-cta h2 { letter-spacing: -.8px; }
      .hero h1 { font-size: 34px; }
      .hero p,
      .section-head p,
      .split-copy p,
      .dealer p { font-size: 16px; }
      .hero-actions,
      .stage-actions,
      .cta-row { width: 100%; gap: 10px; }
      .hero-actions .btn,
      .stage-actions .btn,
      .cta-row .btn { width: 100%; }
      .btn { min-height: 48px; padding: 12px 18px; }
      .hero-panel,
      .value-card,
      .segment-card,
      .need-card,
      .support-card,
      .lead-form { padding: 20px; }
      .value-card { min-height: auto; }
      .attachment-card { min-height: auto; padding: 118px 20px 20px; }
      .attachment-card-photo { left: 20px; right: auto; width: 128px; }
      .product-placeholder { height: 220px; }
      .product-placeholder::before { font-size: 34px; left: 18px; }
      .product-placeholder::after { font-size: 20px; right: 16px; }
      .product-stage { padding: 22px; border-radius: 14px; }
      .stage-copy h3 { font-size: 30px; }
      .stage-machine { min-height: 210px; }
      .stage-machine img { max-height: 210px; }
      .tab-card,
      .product-line-card,
      details { padding: 20px; }
      .line-head {
        grid-template-columns: 1fr;
        display: grid;
        gap: 10px;
      }
      .model-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .line-head h3 { font-size: 26px; }
      .line-head em { text-align: left; max-width: none; }
      .attachment-photo { width: calc(100% - 48px); max-width: none; }
      .attachment-feature h3 { font-size: 30px; }
      .dealer-panel { padding: 22px; }
      .dealer-list li { grid-template-columns: 20px 1fr; padding: 12px; }
      .lead-form .wpcf7 .use p { gap: 8px; }
      .lead-form .wpcf7 .use span { flex: 1 1 calc(50% - 8px); min-width: 0; }
      .quick-spec { min-height: auto; }
    }
