﻿/* fa-smart-crane.php */

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
  }
  .breadcrumb a {
    color: rgba(255,255,255,.5);
    transition: color .2s;
  }
  .breadcrumb a:hover { color: rgba(255,255,255,.85); }
  .breadcrumb-sep { opacity: .4; }

  .sc-hero {
    position: relative;
    overflow: hidden;
    padding-top: 68px;
    background: var(--navy-700);
    min-height: 460px;
    display: flex;
    align-items: flex-end;
  }
  .sc-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/smart-crane-hero.jpg') center center / cover no-repeat;
  }
  .sc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30,33,70,.94) 0%, rgba(53,57,104,.84) 55%, rgba(26,26,26,.68) 100%);
  }
  .sc-hero__accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, transparent 58%, rgba(243,115,33,.07) 100%);
    pointer-events: none;
  }
  .sc-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--sp-2xl) 0 var(--sp-xl);
    width: 100%;
  }
  .sc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange-500);
    margin-bottom: 1.25rem;
  }
  .sc-hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--orange-500);
  }
  .sc-hero__heading {
    color: var(--white);
    max-width: 820px;
  }
  .sc-hero__heading em {
    font-style: normal;
    color: var(--orange-500);
  }
  .sc-hero__sub {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.74);
    max-width: 680px;
    line-height: 1.7;
  }

  .overline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange-500);
  }
  .overline::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange-500);
    flex-shrink: 0;
  }
  .divider {
    width: 48px;
    height: 3px;
    background: var(--orange-500);
    margin: .9rem 0 1.5rem;
    border-radius: 2px;
  }

  .sc-biz {
    padding: var(--sp-2xl) 0;
    background: var(--grey-50);
    border-top: 1px solid var(--sand);
  }
  .sc-biz__head {
    margin-bottom: 2rem;
  }
  .sc-biz__head h2 {
    max-width: 24ch;
  }
  .sc-biz__lead {
    max-width: 860px;
    margin: 0 0 1.6rem;
    color: var(--grey-600);
    font-size: 1.02rem;
    line-height: 1.75;
    font-weight: 300;
  }

  .sc-toggle-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.75rem;
    align-items: stretch;
  }

  .sc-toggle {
    min-width: 0;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .45rem;
    padding: .85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--sand);
    background: var(--white);
    color: var(--grey-600);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    transition: background-color .22s ease, color .22s ease, box-shadow .28s ease, border-color .22s ease, transform .22s ease;
  }

  .sc-toggle__label {
    flex: 0 0 auto;
    text-transform: none;
  }

  .sc-toggle__meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-width: 0;
    max-width: 100%;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0;
    pointer-events: none;
  }

  .sc-toggle__meta span {
    position: relative;
    padding-left: .55rem;
    font-size: .74rem;
    font-weight: 500;
    line-height: 1;
    color: inherit;
    opacity: .72;
  }

  .sc-toggle__meta span::before {
    content: 'ㆍ';
    position: absolute;
    left: 0;
    top: 0;
  }

  .sc-toggle:hover,
  .sc-toggle.active,
  .sc-toggle.sc-is-expanded {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
    box-shadow: 0 12px 24px rgba(243,115,33,.18);
    transform: translateY(-1px);
  }

  .sc-expand-panel {
    display: none;
    margin-top: 1.75rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.05);
  }
  .sc-expand-panel.is-open {
    display: block;
    animation: scPanelOpen .28s ease;
  }
  @keyframes scPanelOpen {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .sc-expand-panel__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand);
  }
  .sc-expand-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange-500);
    margin-bottom: .5rem;
  }
  .sc-expand-panel__eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .sc-expand-panel__title {
    font-size: 1.35rem;
    color: var(--grey-900);
    line-height: 1.3;
  }
  .sc-expand-panel__desc {
    margin-top: .55rem;
    font-size: .95rem;
    line-height: 1.7;
    color: var(--grey-600);
    font-weight: 300;
  }

  .sc-biz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .sc-biz-card {
    background: var(--grey-50);
    border: 1px solid var(--sand);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,.03);
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .sc-biz-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    transform: translateY(-2px);
  }
  .sc-biz-card__media {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--grey-100);
    overflow: hidden;
    position: relative;
  }
  .sc-biz-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
  }
  .sc-biz-card:hover .sc-biz-card__media img {
    transform: scale(1.03);
  }
  .sc-biz-card__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
  }
  .sc-biz-card__media--empty::before {
    content: '';
    width: 44px;
    height: 44px;
    background: var(--grey-200);
    border-radius: 10px;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }
  .sc-biz-card__media--empty::after {
    content: 'Image placeholder';
    font-size: .72rem;
    color: var(--grey-400);
    font-weight: 500;
    letter-spacing: .04em;
  }
  .sc-biz-card__body {
    padding: 1.2rem 1.25rem 1.25rem;
    flex: 1;
  }
  .sc-biz-card__body h4 {
    font-size: 1rem;
    color: var(--grey-900);
    margin-bottom: .8rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--sand);
  }
  .sc-biz-card__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sc-biz-card__body li {
    position: relative;
    padding-left: .85rem;
    font-size: .84rem;
    line-height: 1.7;
    color: var(--grey-600);
    font-weight: 300;
    margin-bottom: .42rem;
  }
  .sc-biz-card__body li:last-child {
    margin-bottom: 0;
  }
  .sc-biz-card__body li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-500);
    font-weight: 700;
  }

  .sc-overview-pill-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .65rem;
    margin: 0 0 1.5rem;
  }
  .sc-overview-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .65rem .8rem;
    border: 1px solid rgba(243,115,33,.32);
    border-radius: 999px;
    background: rgba(243,115,33,.07);
    color: var(--orange-500);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  }
  .sc-overview-filter:hover,
  .sc-overview-filter.active {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(243,115,33,.18);
  }
  .sc-overview-groups {
    display: block;
  }
  .sc-overview-group {
    display: none;
    border: 1px solid var(--sand);
    border-radius: 18px;
    background: var(--white);
    overflow: hidden;
  }
  .sc-overview-group.is-active {
    display: block;
    animation: scPanelOpen .24s ease;
  }
  .sc-overview-group__head {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.15rem;
    background: #151515;
    color: var(--white);
  }
  .sc-overview-group__head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--orange-500);
    color: var(--white);
    font-size: .75rem;
    font-weight: 800;
    flex-shrink: 0;
  }
  .sc-overview-group__head h4 {
    margin: 0;
    color: var(--white);
    font-size: 1.02rem;
    line-height: 1.35;
  }
  .sc-overview-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .sc-overview-item {
    padding: 1.1rem 1.15rem;
    border-top: 1px solid var(--sand);
    border-right: 1px solid var(--sand);
    background: var(--grey-50);
  }
  .sc-overview-item:nth-child(2n) {
    border-right: 0;
  }
  .sc-overview-item--wide {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .sc-overview-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .sc-overview-item h5 {
    margin: 0 0 .7rem;
    color: var(--grey-900);
    font-size: .98rem;
    line-height: 1.35;
  }
  .sc-overview-item strong {
    display: block;
    margin: .2rem 0 .45rem;
    color: var(--grey-800);
    font-size: .84rem;
    line-height: 1.45;
  }
  .sc-overview-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sc-overview-item li {
    position: relative;
    padding-left: .85rem;
    margin-bottom: .38rem;
    color: var(--grey-600);
    font-size: .84rem;
    line-height: 1.55;
    font-weight: 300;
  }
  .sc-overview-item li:last-child {
    margin-bottom: 0;
  }
  .sc-overview-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-500);
    font-weight: 700;
  }
  .sc-overview-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem 1rem;
  }
  .sc-overview-subgrid > div {
    padding: .25rem 0 .35rem;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .sc-overview-subgrid strong,
  .sc-overview-item > strong {
    position: relative;
    padding-left: .85rem;
  }
  .sc-overview-subgrid strong::before,
  .sc-overview-item > strong::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-500);
    font-weight: 700;
  }
  .sc-overview-sublist {
    padding-left: .9rem;
  }
  .sc-overview-sublist li {
    padding-left: .75rem;
  }
  .sc-overview-sublist li::before {
    content: '-';
    color: var(--grey-500);
    font-weight: 400;
  }

  .sc-feature-grid,
  .sc-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
  .sc-feature-card,
  .sc-benefit-card {
    background: var(--grey-50);
    border: 1px solid var(--sand);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.03);
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .sc-feature-card:hover,
  .sc-benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    transform: translateY(-2px);
  }
  .sc-feature-card__media {
    min-height: 220px;
    background: #f1f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .sc-feature-card__media img {
    width: 100%;
    height: 100%;
    max-height: 240px;
    object-fit: contain;
    display: block;
  }
  .sc-feature-card__body,
  .sc-benefit-card {
    padding: 1.25rem;
  }
  .sc-feature-card__body h4,
  .sc-benefit-card h4 {
    margin: 0 0 .65rem;
    color: var(--grey-900);
    font-size: 1rem;
    line-height: 1.35;
  }
  .sc-feature-card__body p,
  .sc-benefit-card p {
    margin: 0;
    color: var(--grey-600);
    font-size: .9rem;
    line-height: 1.65;
    font-weight: 300;
  }
  .sc-benefit-card {
    position: relative;
    border-top: 4px solid var(--orange-500);
  }
  .sc-benefit-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(243,115,33,.12);
    color: var(--orange-500);
    font-size: .85rem;
    font-weight: 800;
  }

  .sc-cta {
    padding: 0 0 var(--sp-2xl);
    background: var(--grey-50);
  }
  .sc-cta__box {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
    position: relative;
  }
  .sc-cta__box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background: linear-gradient(135deg, transparent 35%, rgba(243,115,33,.12) 100%);
    pointer-events: none;
  }
  .sc-cta__copy {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }
  .sc-cta__copy h2 {
    color: var(--white);
    margin-bottom: .55rem;
  }
  .sc-cta__copy p {
    color: rgba(255,255,255,.72);
    margin: 0;
    line-height: 1.65;
    font-weight: 300;
  }
  .sc-cta__action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }
  .sc-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.4rem;
    border-radius: 999px;
    background: var(--orange-500);
    color: var(--white);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 10px 24px rgba(243,115,33,.22);
  }
  .sc-cta__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(243,115,33,.26);
  }

  @media (max-width: 1024px) {
    :root {
      --sp-xl: 3rem;
      --sp-2xl: 4.5rem;
    }
    .sc-biz-grid {
      grid-template-columns: 1fr;
    }
    .sc-overview-pill-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sc-overview-items,
    .sc-overview-subgrid {
      grid-template-columns: 1fr;
    }
    .sc-overview-item,
    .sc-overview-item:nth-child(2n) {
      border-right: 0;
    }
    .sc-feature-grid,
    .sc-benefit-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    :root {
      --sp-xl: 2.5rem;
      --sp-2xl: 3.5rem;
    }

    .sc-toggle-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .sc-toggle {
      width: 100%;
      min-height: auto;
      border-radius: 18px;
      padding: .95rem 1rem;
      align-items: center;
      gap: .55rem;
      white-space: normal;
    }

    .sc-toggle__meta {
      width: 100%;
      max-width: 100%;
      opacity: 1;
      margin-left: 0;
      flex-wrap: wrap;
      gap: .5rem .9rem;
      pointer-events: auto;
      transition: none;
    }

    .sc-expand-panel {
      padding: 1.2rem;
    }
    .sc-overview-pill-row {
      grid-template-columns: 1fr;
    }
    .sc-overview-group__head {
      align-items: flex-start;
    }

    .sc-cta__box {
      flex-direction: column;
      align-items: flex-start;
      padding: 1.6rem 1.4rem;
    }
  }
