    /* ===== PERFORMANCE OPTIMIZED CSS ===== */
    * {
      box-sizing: border-box;
    }
    
    body {
      margin: 0px;
      background: #f7f8f8;
    }
    
    /* GPU Acceleration */
    .export-wrapper,
    .screen-shell,
    .dark-panel,
    .trust-strip-shell,
    .form-shell-premium,
    .project-card,
    .nav-shell {
      will-change: transform;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
    
    /* Optimize paint areas */
    .screen-shell,
    .dark-panel,
    .trust-strip-shell,
    .form-shell-premium {
      contain: layout style paint;
    }
    
    .export-wrapper {
      margin: 0;
      width: 100%;
      min-height: 812px;
      position: relative;
      font-family: Inter, sans-serif;
      background-color: #f7f8f8;
      background-attachment: fixed;
    }
    
    .screen-shell {
      min-height: 812px;
      background: #f7f8f8;
      position: relative;
    }
    
    /* Static gradient overlay - NO repaints on scroll */
    .screen-shell::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      background: 
        radial-gradient(circle at 12% 8%, rgba(158, 220, 255, 0.26) 0%, transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(23, 184, 176, 0.22) 0%, transparent 32%);
      z-index: 0;
    }
    
    .screen-shell > * {
      position: relative;
      z-index: 1;
    }
    
    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
    }
    
    /* Eyebrow - NO color-mix */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 12px;
      background: rgba(158, 220, 255, 0.36);
      color: #0b3551;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    
    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 22px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: transform 0.2s ease;
    }
    
    .btn:hover {
      transform: translateY(-1px);
    }
    
    .btn-primary {
      background: #17b8b0;
      color: #ffffff;
      box-shadow: 0 16px 34px rgba(23, 184, 176, 0.28);
    }
    
    .btn-secondary {
      background: #ffffff;
      color: #101828;
      border: 1px solid #e8eaed;
    }
    
    .btn-subtle {
      background: rgba(241, 244, 246, 0.78);
      color: #24323d;
      border: 1px solid rgba(232, 234, 237, 0.82);
    }
    
    .icon-wrap {
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 20px;
    }
    
    /* Navigation - NO backdrop-filter */
    .topbar {
      padding: 24px 0 12px;
    }
    
    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid #e8eaed;
      box-shadow: 0 8px 28px rgba(16, 24, 40, 0.04);
    }
    
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #101828;
      min-width: 0;
    }
    
    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(23, 184, 176, 0.92) 0%, rgba(158, 220, 255, 0.36) 100%);
      box-shadow: 0 10px 24px rgba(23, 184, 176, 0.2);
    }
    
    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    
    .brand-name {
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }
    
    .brand-tagline {
      font-size: 12px;
      color: #667085;
      white-space: nowrap;
    }
    
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    
    .nav-links a {
      text-decoration: none;
      color: #667085;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      transition: color 0.2s ease;
    }
    
    .nav-links a:hover {
      color: #101828;
    }
    
    /* Hero Section */
    .hero {
      padding: 82px 0 56px;
      text-align: center;
    }
    
    .hero-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    
    .hero h1 {
      margin: 20px 0 18px;
      font-size: 62px;
      line-height: 1.02;
      letter-spacing: -0.04em;
      font-weight: 800;
    }
    
    .hero p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 18px;
      color: #667085;
      line-height: 1.65;
    }
    
    /* Trust Strip */
    .trust-strip-premium {
      padding: 26px 0 30px;
    }
    
    .trust-strip-shell {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 24px;
      align-items: stretch;
      padding: 28px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 244, 246, 0.78) 100%);
      border: 1px solid rgba(232, 234, 237, 0.82);
      box-shadow: 0 22px 50px rgba(16, 24, 40, 0.07);
      position: relative;
      overflow: hidden;
    }
    
    .trust-strip-shell::before {
      content: "";
      position: absolute;
      right: -80px;
      top: -90px;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(158, 220, 255, 0.36) 0%, transparent 68%);
      pointer-events: none;
    }
    
    .trust-strip-intro {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
    }
    
    .trust-strip-intro h2 {
      margin: 0;
      font-size: 38px;
      line-height: 1.06;
      letter-spacing: -0.03em;
      font-weight: 800;
    }
    
    .trust-strip-intro p {
      margin: 0;
      max-width: 420px;
      font-size: 16px;
      line-height: 1.7;
      color: #667085;
    }
    
    .trust-grid-premium {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    
    .trust-card {
      min-height: 100%;
      padding: 20px 18px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 100%);
      border: 1px solid rgba(232, 234, 237, 0.78);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: left;
    }
    
    .trust-card-featured {
      background: linear-gradient(180deg, #121b29 0%, #0f1723 100%);
      border-color: rgba(23, 184, 176, 0.24);
      box-shadow: 0 22px 44px rgba(16, 24, 40, 0.14);
    }
    
    .trust-card-top {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .trust-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(241, 244, 246, 0.7);
      color: #17b8b0;
    }
    
    .trust-card-featured .trust-icon-wrap {
      background: rgba(23, 184, 176, 0.14);
      color: #b8fff5;
    }
    
    .trust-kicker {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #667085;
      white-space: nowrap;
    }
    
    .trust-card-featured .trust-kicker {
      color: rgba(255, 255, 255, 0.62);
    }
    
    .trust-card strong {
      display: block;
      margin: 0;
      font-size: 44px;
      line-height: 0.95;
      font-weight: 800;
      color: #101828;
    }
    
    .trust-card-featured strong {
      color: white;
    }
    
    .trust-card span {
      display: block;
      margin: 0;
      font-size: 14px;
      line-height: 1.65;
      color: #667085;
      font-weight: 600;
    }
    
    .trust-card-featured span {
      color: rgba(255, 255, 255, 0.72);
    }
    
    /* Gallery Section */
    .gallery-section {
      padding: 18px 0 12px;
    }
    
    .gallery-filter-stack {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
      margin-bottom: 30px;
    }
    
    .filter-row {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      flex-wrap: wrap;
    }
    
    .filter-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 18px;
      border-radius: 999px;
      text-decoration: none;
      white-space: nowrap;
      font-size: 13px;
      font-weight: 700;
      border: 1px solid rgba(232, 234, 237, 0.84);
      transition: transform 0.2s ease;
    }
    
    .filter-pill:hover {
      transform: translateY(-1px);
    }
    
    .filter-pill-primary {
      background: rgba(255, 255, 255, 0.94);
      color: #24323d;
      box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
    }
    
    .filter-pill-secondary {
      min-height: 34px;
      padding: 0 14px;
      background: rgba(241, 244, 246, 0.86);
      color: #667085;
    }
    
    .filter-pill-active {
      background: rgba(23, 184, 176, 0.16);
      color: #17b8b0;
      border-color: rgba(23, 184, 176, 0.28);
      box-shadow: 0 12px 26px rgba(23, 184, 176, 0.16);
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      align-items: stretch;
    }
    
    .project-card {
      padding: 16px;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
      border: 1px solid #e8eaed;
      box-shadow: 0 22px 42px rgba(16, 24, 40, 0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 52px rgba(16, 24, 40, 0.12);
    }
    
    .project-card-featured {
      border-color: rgba(23, 184, 176, 0.22);
      box-shadow: 0 24px 46px rgba(16, 24, 40, 0.08), 0 0 0 6px rgba(23, 184, 176, 0.07);
    }
    
    .gallery-visual-single {
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: linear-gradient(180deg, #18202e 0%, #121a27 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 16px;
    }
    
    .gallery-visual-single img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }
    
    .project-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .project-body h3 {
      margin: 0;
      font-size: 24px;
      line-height: 1.15;
      font-weight: 750;
    }
    
    .project-body p {
      margin: 0;
      min-height: 50px;
      color: #667085;
      font-size: 15px;
      line-height: 1.65;
    }
    
    .project-micro-result {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-start;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(230, 248, 242, 0.38);
      color: #0f8a5f;
      font-size: 13px;
      font-weight: 700;
      margin: 0;
    }
    
    .project-actions {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid rgba(232, 234, 237, 0.84);
      flex-wrap: wrap;
    }
    
    .project-actions .btn {
      min-width: 132px;
    }
    
    /* Dark Panel */
    .dark-panel {
      background: linear-gradient(180deg, #121b29 0%, #0f1723 100%);
      color: white;
      border-radius: 24px;
      box-shadow: 0 28px 60px rgba(16, 24, 40, 0.14);
      position: relative;
      overflow: hidden;
    }
    
    .dark-panel::before {
      content: "";
      position: absolute;
      inset: -20% auto auto 50%;
      transform: translateX(-50%);
      width: 720px;
      height: 420px;
      background: radial-gradient(circle, rgba(23, 184, 176, 0.18) 0%, transparent 68%);
      pointer-events: none;
    }
    
    .mid-cta-section {
      padding: 34px 0 22px;
    }
    
    .mid-cta-box {
      padding: 58px 40px;
      text-align: center;
    }
    
    .mid-cta-box h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 14px;
      font-size: 46px;
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 800;
      color: white;
    }
    
    .mid-cta-box p {
      position: relative;
      z-index: 1;
      margin: 0 auto 28px;
      max-width: 700px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 18px;
      line-height: 1.65;
    }
    
    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    
    /* Form Section */
    .form-section-bottom {
      padding: 22px 0 38px;
    }
    
    .form-shell-premium {
      position: relative;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 32px;
      padding: 40px;
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 244, 246, 0.84) 52%, rgba(158, 220, 255, 0.12) 100%);
      box-shadow: 0 26px 60px rgba(16, 24, 40, 0.08);
      overflow: hidden;
      border: 1px solid #e8eaed;
    }
    
    .form-shell-premium::before {
      content: "";
      position: absolute;
      left: -80px;
      top: -100px;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(158, 220, 255, 0.42) 0%, transparent 68%);
      pointer-events: none;
    }
    
    .form-copy-premium {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
    }
    
    .form-copy-premium h2 {
      margin: 0;
      font-size: 52px;
      line-height: 1.02;
      letter-spacing: -0.045em;
      font-weight: 800;
      max-width: 560px;
    }
    
    .form-copy-premium p {
      margin: 0;
      max-width: 560px;
      font-size: 18px;
      line-height: 1.75;
      color: #667085;
    }
    
    .form-highlight-card {
      display: grid;
      gap: 18px;
      padding: 22px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 100%);
      border: 1px solid rgba(232, 234, 237, 0.76);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
      max-width: 560px;
    }
    
    .form-highlight-top {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    
    .form-highlight-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(23, 184, 176, 0.12);
      color: #17b8b0;
      flex: 0 0 48px;
      box-shadow: 0 12px 28px rgba(23, 184, 176, 0.14);
    }
    
    .form-highlight-copy strong {
      display: block;
      font-size: 17px;
      line-height: 1.35;
      font-weight: 800;
      color: #101828;
      margin-bottom: 6px;
    }
    
    .form-highlight-copy span {
      font-size: 15px;
      line-height: 1.7;
      color: #667085;
    }
    
    .form-trust-premium {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    
    .trust-chip-premium {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(232, 234, 237, 0.78);
      font-size: 13px;
      font-weight: 700;
      color: #24323d;
      white-space: nowrap;
    }
    
    .contact-card-premium {
      position: relative;
      padding: 26px;
      border-radius: 24px;
      background: linear-gradient(180deg, #111a28 0%, #0c1521 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 26px 56px rgba(16, 24, 40, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }
    
    .contact-card-premium::before {
      content: "";
      position: absolute;
      inset: 0 0 auto auto;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(23, 184, 176, 0.18) 0%, transparent 68%);
      pointer-events: none;
    }
    
    .contact-card-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .contact-card-kicker {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.56);
      margin-bottom: 8px;
      white-space: nowrap;
    }
    
    .contact-card-head h3 {
      margin: 0;
      font-size: 28px;
      line-height: 1.08;
      font-weight: 800;
      color: white;
    }
    
    .contact-card-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(23, 184, 176, 0.12);
      border: 1px solid rgba(23, 184, 176, 0.22);
      font-size: 12px;
      font-weight: 700;
      color: #b8fff5;
      white-space: nowrap;
    }
    
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      position: relative;
      z-index: 1;
    }
    
    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .field.full {
      grid-column: 1 / -1;
    }
    
    .field label {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.78);
      letter-spacing: 0.02em;
    }
    
    .input-sim {
      min-height: 50px;
      padding: 14px 16px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 15px;
      font-weight: 500;
      color: white;
      display: flex;
      align-items: center;
    }
    
    .textarea-sim {
      min-height: 124px;
      align-items: flex-start;
      line-height: 1.6;
    }
    
    .form-actions-premium {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 20px;
    }
    
    .contact-secondary-cta {
      background: rgba(255, 255, 255, 0.08);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .form-note-premium {
      color: rgba(255, 255, 255, 0.72);
      font-size: 13px;
      text-align: center;
      line-height: 1.6;
    }
    
    /* Footer */
    .case-footer {
      padding: 10px 0 88px;
    }
    
    .case-footer-card {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
      gap: 24px;
      padding: 30px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid #e8eaed;
      box-shadow: 0 16px 38px rgba(16, 24, 40, 0.05);
    }
    
    .footer-brand {
      margin-bottom: 18px;
    }
    
    .footer-positioning {
      margin: 0 0 12px;
      max-width: 320px;
      color: #667085;
      font-size: 15px;
      line-height: 1.65;
    }
    
    .footer-focus-line {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(241, 244, 246, 0.82);
      color: #24323d;
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }
    
    .footer-links-block,
    .footer-services-block,
    .footer-action-block {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .footer-links-block h4,
    .footer-services-block h4,
    .footer-action-block h4 {
      margin: 0 0 6px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #667085;
    }
    
    .footer-links-block a,
    .footer-services-block div,
    .footer-email {
      text-decoration: none;
      color: #101828;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.6;
      transition: color 0.2s ease;
    }
    
    .footer-links-block a:hover,
    .footer-email:hover {
      color: #17b8b0;
    }
    
    .footer-email {
      color: #667085;
    }
    
    .footer-bottom-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 4px 0;
      color: #667085;
      font-size: 13px;
      font-weight: 600;
    }
    
    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }
    
    /* Responsive */
    @media (max-width: 1100px) {
      .container {
        padding: 0 20px;
      }
      .hero {
        padding: 64px 0 44px;
      }
      .hero h1 {
        font-size: 52px;
      }
      .trust-strip-shell,
      .form-shell-premium,
      .case-footer-card {
        grid-template-columns: 1fr;
      }
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
      }
      .trust-grid-premium {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    
    @media (max-width: 860px) {
      .topbar {
        padding: 16px 0 10px;
      }
      .nav-shell {
        border-radius: 24px;
        padding: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .brand {
        width: 100%;
        justify-content: center;
      }
      .nav-links {
        width: 100%;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
      }
      .hero h1 {
        font-size: 42px;
        line-height: 1.04;
      }
      .hero p,
      .trust-strip-intro p,
      .mid-cta-box p,
      .form-copy-premium p {
        font-size: 16px;
      }
      .trust-strip-intro h2,
      .mid-cta-box h2,
      .form-copy-premium h2 {
        font-size: 36px;
      }
      .form-grid,
      .trust-grid-premium,
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      .trust-strip-shell,
      .form-shell-premium,
      .mid-cta-box,
      .case-footer-card {
        padding-left: 20px;
        padding-right: 20px;
      }
      .contact-card-head,
      .footer-bottom-bar,
      .project-actions {
        flex-direction: column;
        align-items: flex-start;
      }
      .project-actions .btn {
        width: 100%;
      }
    }
    
    @media (max-width: 640px) {
      .container {
        padding: 0 16px;
      }
      .hero {
        padding: 48px 0 34px;
      }
      .hero h1 {
        font-size: 36px;
      }
      .btn {
        width: 100%;
      }
      .trust-strip-shell,
      .trust-card,
      .project-card,
      .mid-cta-box,
      .form-shell-premium,
      .contact-card-premium,
      .case-footer-card {
        padding: 18px;
      }
      .gallery-visual-single img {
        aspect-ratio: 4 / 4.6;
      }
      .gallery-filter-stack {
        gap: 12px;
        margin-bottom: 22px;
      }
      .filter-row {
        gap: 8px;
      }
      .filter-pill {
        min-height: 36px;
        padding: 0 14px;
      }
      .brand-text,
      .brand-tagline,
      .brand-name {
        min-width: 0;
      }
    }
