@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&family=Barlow+Condensed:wght@400;600;700;900&display=swap');

  :root {
    --navy: #0D1B3E;
    --navy-mid: #162447;
    --navy-light: #1F3471;
    --yellow: #F5C518;
    --yellow-dark: #D4A800;
    --white: #FFFFFF;
    --off-white: #F8F8F4;
    --gray-light: #E8E8E8;
    --gray: #888888;
    --dark: #1A1A1A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Heebo', sans-serif;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.7;
  }

  img { max-width: 100%; display: block; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  a { text-decoration: none; color: inherit; }

  /* ===== HEADER ===== */
  header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(13,27,62,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(245,197,24,0.15);
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .logo img {
    height: 46px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 12px rgba(245,197,24,0.35));
  }

  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  nav a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s ease;
    position: relative;
  }

  nav a:hover { color: var(--yellow); }

  .nav-cta {
    background: var(--yellow);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 2px;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .nav-cta:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
  }

  .nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--yellow);
    display: block;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(245,197,24,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,197,24,0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
  }

  .hero-bg-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(13,27,62,0.95) 30%, rgba(13,27,62,0.6) 100%),
                url('images/web/IMG_5152.jpg') center/cover no-repeat;
    z-index: 0;
  }

  .hero-accent {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(245,197,24,0.06);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,197,24,0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 100px 0 80px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 24px;
    padding: 8px 16px 8px 14px;
    border: 1px solid rgba(245,197,24,0.35);
    background: rgba(245,197,24,0.08);
    border-radius: 999px;
    backdrop-filter: blur(4px);
  }

  .hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(245,197,24,0.18);
  }

  .hero h1 {
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 6vw, 64px);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  }

  .hero h1 em {
    font-style: normal;
    color: var(--yellow);
  }

  .hero p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 40px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 2px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 10px 30px -10px rgba(245,197,24,0.6);
  }

  .btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px rgba(245,197,24,0.7);
  }

  .btn-outline {
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
  }

  .btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
  }

  .hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 60px;
    padding-bottom: 60px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 44px;
    color: var(--white);
    line-height: 1;
    -webkit-text-stroke: 1px var(--yellow);
  }

  .hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    letter-spacing: 1px;
  }

  /* ===== SECTION SHARED ===== */
  section {
    padding: 110px 0;
  }

  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--yellow-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-tag::after {
    content: '';
    height: 2px;
    width: 40px;
    background: var(--yellow-dark);
  }

  .section-title {
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 4.5vw, 46px);
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.25;
  }

  .section-lead {
    font-size: 17px;
    font-weight: 300;
    color: var(--gray);
    max-width: 640px;
  }

  .section-head {
    margin-bottom: 56px;
  }

  .section-head.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-head.center .section-tag {
    justify-content: center;
  }

  .section-head.center .section-tag::after { display: none; }

  .section-head.center .section-lead {
    margin: 0 auto;
  }

  /* ===== ABOUT ===== */
  .about {
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
  }

  .about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
  }

  .about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
  }

  .about-point {
    border-right: 3px solid var(--yellow);
    padding-right: 16px;
  }

  .about-point-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
  }

  .about-point-text {
    font-size: 13.5px;
    color: var(--gray);
    font-weight: 300;
  }

  .about-image {
    position: relative;
  }

  .about-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 4px;
  }

  .about-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--navy);
    color: var(--white);
    padding: 26px 30px;
    border-radius: 4px;
    border-top: 4px solid var(--yellow);
  }

  .about-image-badge .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 38px;
    color: var(--yellow);
    line-height: 1;
  }

  .about-image-badge .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
  }

  /* ===== SERVICES ===== */
  .services {
    background: var(--off-white);
  }

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

  .service-card {
    background: var(--white);
    border-radius: 4px;
    padding: 40px 32px;
    border: 1px solid var(--gray-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13,27,62,0.1);
    border-color: var(--yellow);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
  }

  .service-icon::after {
    content: '';
    width: 22px;
    height: 22px;
    background: var(--yellow);
  }

  .service-icon.shape-tri::after {
    width: 0; height: 0;
    background: transparent;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 19px solid var(--yellow);
  }

  .service-icon.shape-circ::after {
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--yellow);
    width: 20px;
    height: 20px;
  }

  .service-card h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14.5px;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 18px;
  }

  .service-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--yellow-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    direction: ltr;
    justify-content: flex-end;
  }

  /* ===== GALLERY ===== */
  .gallery {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(245,197,24,0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
  }

  .gallery .container { position: relative; z-index: 1; }

  .gallery .section-lead { color: rgba(255,255,255,0.55); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 14px;
  }

  .gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy-mid);
  }

  .gallery-item.g-feature { grid-column: span 2; grid-row: span 2; }
  .gallery-item.g-wide { grid-column: span 2; }
  .gallery-item.g-tall { grid-row: span 2; }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.06);
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,27,62,0.9) 0%, rgba(13,27,62,0.1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }

  .gallery-overlay .tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 6px;
  }

  .gallery-overlay .name {
    font-weight: 700;
    font-size: 18px;
  }

  /* ===== PROCESS / WHY ===== */
  .process {
    background: var(--white);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .process-step {
    position: relative;
    padding-top: 50px;
  }

  .process-step .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 60px;
    color: var(--off-white);
    -webkit-text-stroke: 2px var(--yellow);
    color: transparent;
    line-height: 1;
    position: absolute;
    top: -10px;
    right: 0;
  }

  .process-step h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
    border-top: 3px solid var(--yellow);
    padding-top: 18px;
  }

  .process-step p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 300;
  }

  /* ===== CTA / CONTACT ===== */
  .contact {
    background: var(--off-white);
  }

  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13,27,62,0.12);
  }

  .contact-info {
    background: var(--navy);
    color: var(--white);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
  }

  .contact-info::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 40px solid rgba(245,197,24,0.07);
    border-radius: 50%;
  }

  .contact-info h2 {
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 18px;
  }

  .contact-info > p {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 380px;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }

  .contact-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid rgba(245,197,24,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .contact-detail-text .label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    margin-bottom: 2px;
  }

  .contact-detail-text .value {
    font-size: 15px;
    font-weight: 500;
    direction: ltr;
    text-align: right;
  }

  .contact-form {
    background: var(--white);
    padding: 60px 50px;
  }

  /* embedded lead form (iframe from the business system) */
  .contact-form-embed {
    padding: 0;
    background: var(--off-white);
  }

  .contact-form-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 640px;
    border: 0;
    display: block;
  }

  .contact-form h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .contact-form > p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
  }

  input, textarea {
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    padding: 13px 14px;
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    background: var(--off-white);
    transition: border-color 0.2s ease;
  }

  input:focus, textarea:focus {
    outline: none;
    border-color: var(--yellow-dark);
  }

  textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Heebo', sans-serif;
  }

  .form-submit:hover { background: var(--navy-light); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 70px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo img {
    height: 56px;
    width: auto;
    margin-bottom: 18px;
  }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; }

  .footer-col li { margin-bottom: 12px; }

  .footer-col a {
    font-size: 14px;
    transition: color 0.2s ease;
  }

  .footer-col a:hover { color: var(--yellow); }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
  }

  .footer-social a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--navy);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom-links {
    display: flex;
    gap: 24px;
  }

  /* ===== LIGHTBOX ===== */
  .gallery-item { cursor: zoom-in; }

  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8,14,32,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .lightbox.open { opacity: 1; pointer-events: auto; }

  .lightbox img {
    max-width: 92vw;
    max-height: 86vh;
    border-radius: 6px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.6);
    transform: scale(0.96);
    transition: transform 0.3s ease;
  }

  .lightbox.open img { transform: scale(1); }

  .lightbox-cap {
    position: absolute;
    bottom: 26px;
    left: 0; right: 0;
    text-align: center;
    color: var(--white);
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }

  .lightbox-cap span {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 4px;
  }

  .lightbox-close {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .lightbox-close:hover { background: var(--yellow); color: var(--navy); }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .lightbox-nav:hover { background: var(--yellow); color: var(--navy); }
  .lightbox-prev { right: 22px; }
  .lightbox-next { left: 22px; }

  @media (max-width: 600px) {
    .lightbox-nav { width: 42px; height: 42px; font-size: 20px; }
  }

  /* ===== POLISH: REVEAL ON SCROLL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* hero entrance */
  .hero-content > * {
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-content .hero-eyebrow { animation-delay: 0.15s; }
  .hero-content h1 { animation-delay: 0.3s; }
  .hero-content p { animation-delay: 0.45s; }
  .hero-content .hero-actions { animation-delay: 0.6s; }

  .hero-stats {
    opacity: 0;
    animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
  }

  @keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* hero watermark logo */
  .hero-watermark {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 520px;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(-6deg);
  }

  /* header scrolled state */
  header {
    transition: box-shadow 0.3s ease, background 0.3s ease;
  }

  header.scrolled {
    background: rgba(13,27,62,0.99);
    box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  }

  /* nav link underline */
  nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.25s ease;
  }

  nav a:hover::after { width: 100%; }

  /* button sheen */
  .btn-primary, .nav-cta, .form-submit {
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before, .nav-cta::before, .form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
  }

  .btn-primary:hover::before, .nav-cta:hover::before, .form-submit:hover::before {
    left: 130%;
  }

  /* service card top accent line */
  .service-card {
    position: relative;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.35s ease;
    border-radius: 4px 4px 0 0;
  }

  .service-card:hover::before { width: 100%; }

  .service-icon {
    transition: transform 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.06);
  }

  /* gallery overlay polish */
  .gallery-overlay {
    opacity: 0.85;
    transition: opacity 0.35s ease;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-overlay .tag,
  .gallery-overlay .name {
    transform: translateY(6px);
    transition: transform 0.35s ease;
  }

  .gallery-item:hover .gallery-overlay .tag,
  .gallery-item:hover .gallery-overlay .name {
    transform: translateY(0);
  }

  /* process step hover */
  .process-step h3 {
    transition: border-color 0.3s ease;
  }

  .process-step:hover h3 {
    border-top-color: var(--navy);
  }

  .process-step .step-num {
    transition: transform 0.35s ease;
  }

  .process-step:hover .step-num {
    transform: translateY(-4px);
  }

  /* form focus glow */
  input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(245,197,24,0.18);
  }

  /* back to top */
  .back-top {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 46px;
    height: 46px;
    background: var(--yellow);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 900;
  }

  .back-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .back-top:hover { background: var(--yellow-dark); }

  @media (prefers-reduced-motion: reduce) {
    .reveal, .hero-content > *, .hero-stats {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
      transition: none !important;
    }
    html { scroll-behavior: auto; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    nav ul, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .about-grid, .contact-wrap { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-points { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
    .gallery-item.g-feature { grid-column: span 2; grid-row: span 2; }
    .gallery-item.g-wide { grid-column: span 2; grid-row: span 1; }
    .gallery-item.g-tall { grid-column: span 1; grid-row: span 2; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    .hero-stats { gap: 36px; }
    .about-image-badge { right: 12px; bottom: -16px; padding: 18px 22px; }
  }

  /* ===== BEFORE / AFTER SLIDER ===== */
  .ba { background: var(--white); }
  .ba-wrap {
    --pos: 50%;
    position: relative;
    max-width: 980px;
    margin: 50px auto 0;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    user-select: none;
    touch-action: none;
    cursor: ew-resize;
    box-shadow: 0 30px 70px -30px rgba(13,27,62,0.5);
    border: 1px solid var(--gray-light);
  }
  .ba-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .ba-after { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
  .ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 3px;
    background: var(--yellow);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 14px rgba(245,197,24,0.6);
  }
  .ba-handle {
    position: absolute;
    top: 50%;
    left: var(--pos);
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    pointer-events: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  }
  .ba-label {
    position: absolute;
    top: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    backdrop-filter: blur(4px);
    pointer-events: none;
  }
  .ba-label.after { right: 16px; background: rgba(245,197,24,0.92); color: var(--navy); }
  .ba-label.before { left: 16px; background: rgba(13,27,62,0.72); color: #fff; }

  /* ===== ORDER CONFIGURATOR ===== */
  .order { background: var(--off-white); }
  .order-shell {
    margin-top: 48px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    border: 1px solid rgba(245,197,24,0.18);
    border-radius: 16px;
    padding: 38px 34px;
    box-shadow: 0 30px 70px -30px rgba(13,27,62,0.55);
    color: var(--white);
  }
  .order-shell-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .order-shell-head h3 {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .order-shell-head h3 .chip {
    background: rgba(245,197,24,0.15);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: .3px;
  }
  .order-hint { font-size: 13px; color: rgba(255,255,255,0.55); }

  /* rows */
  .order-rows { display: flex; flex-direction: column; gap: 14px; }
  .order-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color .2s ease, background .2s ease;
  }
  .order-row:hover { border-color: rgba(245,197,24,0.3); }
  .order-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; flex: 1 1 130px; }
  .order-field.f-grow { flex: 2 1 180px; }
  .order-field.hidden { display: none; }
  .order-field label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
  }
  .order-field select,
  .order-field input {
    width: 100%;
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    border-radius: 8px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .order-field select:focus,
  .order-field input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
  }
  .order-field select option { color: #111; background: #fff; }
  .order-field select optgroup { background: #fff; color: #111; }
  .order-custom { display: none; gap: 10px; }
  .order-custom.show { display: grid; grid-template-columns: 1fr 1fr; }
  .order-row-price {
    text-align: center;
    min-width: 92px;
    flex: 0 0 auto;
  }
  .order-row-price .lbl { font-size: 11px; color: rgba(255,255,255,0.5); display:block; margin-bottom: 4px; }
  .order-row-price .val { font-size: 20px; font-weight: 800; color: var(--yellow); white-space: nowrap; }
  .order-row-price .minflag { display:block; font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 3px; min-height: 12px; }
  .order-row-del {
    background: rgba(255,80,80,0.12);
    border: 1px solid rgba(255,80,80,0.25);
    color: #ff8a8a;
    width: 40px; height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background .15s ease;
  }
  .order-row-del:hover { background: rgba(255,80,80,0.22); }
  .order-addons {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 2px;
  }
  .order-cut {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
  }
  .order-cut.hidden { display: none; }
  .order-cut input { width: 17px; height: 17px; accent-color: var(--yellow); cursor: pointer; }

  .order-add {
    margin-top: 16px;
    background: none;
    border: 1px dashed rgba(245,197,24,0.45);
    color: var(--yellow);
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    padding: 13px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s ease;
  }
  .order-add:hover { background: rgba(245,197,24,0.08); }

  .order-summary {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .order-summary-line { display: flex; justify-content: space-between; font-size: 15px; color: rgba(255,255,255,0.7); }
  .order-summary-line.discount { color: #6fe09a; }
  .order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .order-summary-total .t-label { font-size: 17px; font-weight: 700; }
  .order-summary-total .t-val { font-size: 32px; font-weight: 900; color: var(--yellow); }
  .order-summary-total .t-vat { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 400; margin-inline-start: 8px; }

  .order-actions { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }
  .order-actions .btn-order {
    flex: 1;
    min-width: 200px;
    background: var(--yellow);
    color: var(--navy);
    font-family: inherit;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
  }
  .order-actions .btn-order:hover { background: var(--yellow-dark); transform: translateY(-1px); }
  .order-actions .btn-order-alt {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
  }
  .order-actions .btn-order-alt:hover { background: rgba(255,255,255,0.06); }
  .order-note { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,0.45); text-align: center; }

  @media (max-width: 760px) {
    .order-shell { padding: 26px 18px; }
    .order-field { flex: 1 1 calc(50% - 7px); }
    .order-field.f-grow { flex: 1 1 100%; }
    .order-row-price { flex: 1 1 auto; text-align: right; }
  }

  @media (max-width: 600px) {
    section { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content { padding: 70px 0 50px; }
    .contact-info, .contact-form { padding: 40px 28px; }
  }
/* ===== INNER PAGES ===== */
.page-hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 170px 0 90px;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumbs { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.page-hero .crumbs a:hover { color: var(--yellow); }
.page-hero h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  max-width: 820px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--yellow); }
.page-hero .lead { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.75); max-width: 640px; }
.page-hero .hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* service feature blocks (alternating) */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 90px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block.flip .svc-media { order: 2; }
.svc-media img { width: 100%; border-radius: 14px; box-shadow: 0 24px 60px -28px rgba(13,27,62,0.5); }
.svc-text h2 { font-family: 'Heebo'; font-weight: 900; font-size: clamp(26px,3.5vw,38px); color: var(--navy); line-height: 1.25; margin-bottom: 16px; }
.svc-text > p { font-size: 16px; color: #555; margin-bottom: 22px; }
.svc-features { list-style: none; display: grid; gap: 14px; }
.svc-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: #333; }
.svc-features li::before {
  content: '✓';
  flex: 0 0 auto;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--navy);
  border-radius: 50%; font-weight: 900; font-size: 13px;
  margin-top: 1px;
}
.svc-features li b { color: var(--navy); }

/* case study block */
.cs { background: var(--off-white); }
.cs-block {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 24px 60px -34px rgba(13,27,62,0.35);
}
.cs-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.cs-head h3 { font-family: 'Heebo'; font-weight: 900; font-size: 26px; color: var(--navy); }
.cs-head .cs-type { font-size: 13px; font-weight: 700; color: var(--yellow-dark); letter-spacing: 1px; }
.cs-sub { font-size: 16px; color: var(--gray); margin-bottom: 28px; }
.cs-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cs-step { background: var(--off-white); border-radius: 12px; padding: 24px; }
.cs-step .cs-step-tag { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.cs-step .cs-step-tag span { font-size: 18px; }
.cs-step p { font-size: 14.5px; color: #555; line-height: 1.6; }

/* smart lead form */
section.lead { background: var(--white); }
.lead-shell {
  max-width: 620px;
  margin: 34px auto 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(245,197,24,0.18);
  border-radius: 14px;
  padding: 30px 30px;
  box-shadow: 0 24px 60px -30px rgba(13,27,62,0.55);
}
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lead-field { display: flex; flex-direction: column; gap: 5px; }
.lead-field.full { grid-column: 1 / -1; }
.lead-field label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.7); }
.lead-field label .req { color: var(--yellow); }
.lead-field input, .lead-field select, .lead-field textarea {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}
.lead-field textarea { resize: vertical; min-height: 78px; }
.lead-field input:focus, .lead-field select:focus, .lead-field textarea:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.lead-field select option { color: #111; background: #fff; }
.lead-file {
  grid-column: 1 / -1;
  border: 1.5px dashed rgba(245,197,24,0.45);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.lead-file:hover { background: rgba(245,197,24,0.06); }
.lead-file input { display: none; }
.lead-file .lf-title { color: var(--yellow); font-weight: 700; font-size: 14px; }
.lead-file .lf-sub { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 5px; }
.lead-file .lf-names { color: #fff; font-size: 12.5px; margin-top: 9px; word-break: break-all; }
.lead-submit {
  grid-column: 1 / -1;
  background: var(--yellow); color: var(--navy);
  border: none; border-radius: 9px;
  font-family: inherit; font-weight: 800; font-size: 15px;
  padding: 13px; cursor: pointer; margin-top: 2px;
  transition: background .15s ease, transform .15s ease;
}
.lead-submit:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.lead-note { grid-column: 1 / -1; font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; }
.lead-status { grid-column: 1 / -1; font-size: 14px; text-align: center; min-height: 18px; }
.lead-status.ok { color: #6fe09a; }
.lead-status.err { color: #ff8a8a; }

@media (max-width: 820px) {
  .svc-block { grid-template-columns: 1fr; gap: 30px; }
  .svc-block.flip .svc-media { order: 0; }
  .cs-steps { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .lead-field.full { grid-column: auto; }
  .page-hero { padding: 140px 0 70px; }
}

/* ===== CLIENTS MARQUEE (shared) ===== */
.clients { background: var(--white); }
.clients .section-head { margin-bottom: 40px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: amor-marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo { display: flex; align-items: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 30px; color: var(--navy); opacity: 1; white-space: nowrap; letter-spacing: .5px; transition: opacity .25s ease, color .25s ease; }
.client-logo:hover { opacity: 1; color: var(--yellow-dark); }
.client-logo img { height: 140px; width: auto; opacity: 1; }
@keyframes amor-marquee { from { transform: translateX(0); } to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 26px; width: auto; } }

/* ===== PROJECTS (case-study tabs) ===== */
.proj-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 44px; }
.proj-tab { padding: 12px 26px; border-radius: 999px; border: 1px solid var(--gray-light); background: #fff; font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); cursor: pointer; transition: all .15s ease; }
.proj-tab:hover { border-color: var(--yellow); }
.proj-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.proj-panel { display: none; margin-top: 44px; }
.proj-panel.active { display: block; }
.proj-intro { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.proj-intro .ptag { font-family:'Barlow Condensed',sans-serif; font-weight:700; letter-spacing:3px; color:var(--yellow-dark); font-size:13px; }
.proj-intro h3 { font-family: 'Heebo'; font-weight: 900; font-size: clamp(26px,3.5vw,36px); color: var(--navy); margin: 8px 0; }
.proj-intro p { color: var(--gray); font-size: 16px; }
.proj-timeline { display: flex; flex-direction: column; gap: 26px; }
.proj-step { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; background: #fff; border: 1px solid var(--gray-light); border-radius: 14px; overflow: hidden; }
.proj-step:nth-child(even) .proj-step-media { order: 2; }
.proj-step-media { min-height: 240px; background: var(--off-white); }
.proj-step-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-ph { width: 100%; height: 100%; min-height: 240px; display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 14px; background: repeating-linear-gradient(45deg,#f5f5f0,#f5f5f0 12px,#ececec 12px,#ececec 24px); }
.proj-step-text { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.proj-step-num { display: inline-flex; align-items: center; gap: 12px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 1px; color: var(--yellow-dark); font-size: 15px; margin-bottom: 12px; }
.proj-step-num b { background: var(--navy); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.proj-step-text h4 { font-family: 'Heebo'; font-weight: 800; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.proj-step-text p { color: #555; font-size: 15px; line-height: 1.7; }
@media (max-width: 820px) { .proj-step { grid-template-columns: 1fr; } .proj-step:nth-child(even) .proj-step-media { order: 0; } }

/* ===== PROJECTS PICKER (image cards) ===== */
.proj-picker { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 44px; }
.proj-pick { position: relative; width: 250px; height: 156px; border-radius: 14px; overflow: hidden; cursor: pointer; border: 2px solid transparent; background: var(--navy); padding: 0; font-family: inherit; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.proj-pick:hover { transform: translateY(-3px); }
.proj-pick img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.55); transition: filter .25s ease; }
.proj-pick .pp-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,62,.92), rgba(13,27,62,.1)); }
.proj-pick .pp-info { position: absolute; bottom: 0; right: 0; left: 0; padding: 14px 16px; text-align: right; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.proj-pick .pp-type { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1px; color: var(--yellow); font-weight: 700; }
.proj-pick .pp-name { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 21px; color: #fff; line-height: 1.15; }
.proj-pick.active { border-color: var(--yellow); box-shadow: 0 16px 36px -18px rgba(13,27,62,.6); }
.proj-pick.active img { filter: grayscale(0) brightness(.82); }
.proj-pick .pp-check { position: absolute; top: 10px; left: 10px; width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); color: var(--navy); display: none; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; z-index: 3; }
.proj-pick.active .pp-check { display: flex; }
.proj-pick--dark img { display: none; }
.proj-pick--dark { background: linear-gradient(150deg, var(--navy), var(--navy-light)); }
@media (max-width: 760px) { .proj-pick { width: calc(50% - 8px); height: 128px; } .proj-pick .pp-name { font-size: 18px; } }

/* clients marquee — logo images */
.client-logo img { height: 140px; opacity: 1; }

