  /* ── Hero preview card ── */
  .hero-preview-card {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(191,25,20,0.18);
    z-index: 1;
  }
  .hero-preview-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .hero-preview-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(191,25,20,0.25), rgba(0,0,0,0.15));
  }
  /* ── Horizontal scroll (services, projects, articles) ── */
  .h-scroll {
    margin-left: calc(-1 * var(--container-px));
    margin-right: calc(-1 * var(--container-px));
    padding-left: var(--container-px);
    padding-right: var(--container-px);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(191, 25, 20, 0.35) transparent;
  }

  .h-scroll:focus-visible {
    outline: 2px solid var(--clr-primary);
    outline-offset: 2px;
  }

  .h-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .h-scroll::-webkit-scrollbar-thumb {
    background: rgba(191, 25, 20, 0.35);
    border-radius: 999px;
  }

  .h-scroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 4px 2px 14px;
  }

  .h-scroll-track > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .h-scroll-track.home-srv-grid,
  .h-scroll-track.portfolio-grid,
  .h-scroll-track.blog-grid {
    display: flex;
    grid-template-columns: none;
  }

  .h-scroll-track .home-srv-card {
    width: min(360px, 82vw);
    max-width: 360px;
  }

  .h-scroll-track .portfolio-card {
    width: min(380px, 85vw);
  }

  .h-scroll-track .blog-card {
    width: min(360px, 85vw);
  }

  /* ── Home services — corporate cards ── */
  .home-srv-grid {
    gap: 24px;
  }

  .home-srv-card {
    display: flex;
    flex-direction: column;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-top: 3px solid rgba(191, 25, 20, 0.15);
    border-radius: var(--r-lg);
    padding: 26px 24px 22px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }

  .home-srv-card:hover {
    border-top-color: var(--clr-primary);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    transform: translateY(-3px);
  }

  .home-srv-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
  }

  .home-srv-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-md);
    background: rgba(191, 25, 20, 0.06);
    border: 1px solid rgba(191, 25, 20, 0.14);
  }

  .home-srv-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    padding-top: 2px;
  }

  .home-srv-summary {
    margin: 0 0 18px;
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--clr-muted);
  }

  .home-srv-highlights {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .home-srv-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .home-srv-highlight:hover {
    border-color: rgba(191, 25, 20, 0.25);
    background: rgba(191, 25, 20, 0.03);
  }

  .home-srv-highlight-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--clr-primary);
  }

  .home-srv-highlight-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .home-srv-highlight-copy strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.35;
  }

  .home-srv-highlight-copy span {
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--clr-muted);
  }

  .home-srv-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: none;
  }

  .home-srv-link:hover {
    text-decoration: underline;
  }

  @media (max-width: 640px) {
    .h-scroll-track { gap: 18px; }
    .home-srv-card { padding: 22px 18px 18px; }
  }

  /* ── Stats background ── */
  .stats-bg-img {
    position: absolute; inset: 0;
    overflow: hidden; pointer-events: none;
  }
  .stats-bg-img img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.07; filter: saturate(0.2);
  }
  .stats-bg-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--clr-bg) 0%, transparent 40%, transparent 60%, var(--clr-bg) 100%);
  }

  /* ── Culture strip ── */
  .culture-strip { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 12px; height: 320px; }
  .culture-img { border-radius: var(--r-xl); overflow: hidden; position: relative; }
  .culture-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
  .culture-img:hover img { transform: scale(1.05); }
  .culture-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
  }
  .culture-img:hover .culture-img-overlay { opacity: 1; }
  .culture-label {
    position: absolute; bottom: 16px; left: 16px;
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9);
    text-transform: uppercase; letter-spacing: 0.08em;
    opacity: 0; transition: opacity 0.3s;
    z-index: 2;
  }
  .culture-img:hover .culture-label { opacity: 1; }

  /* ── CTA background image ── */
  .cta-real-img {
    position: absolute; inset: 0; overflow: hidden;
  }
  .cta-real-img img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.12; filter: saturate(0.3);
  }

  @media(max-width:900px){
    .culture-strip { grid-template-columns: 1fr 1fr; height: auto; }
    .culture-img { height: 180px; }
    .hero-preview-card { width: 240px; height: 160px; }
  }
  @media(max-width:600px){
    .culture-strip { grid-template-columns: 1fr 1fr; }
    .culture-img { height: 140px; }
  }

  /* ── Testimonials ── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 20px;
    transition: var(--ease);
    position: relative;
  }
  .testimonial-card::before {
    content: '\201C';
    position: absolute; top: 20px; right: 28px;
    font-size: 5rem; line-height: 1;
    color: var(--clr-primary); opacity: 0.15;
    font-family: Georgia, serif;
  }
  .testimonial-card:hover { border-color: var(--clr-border-glow); transform: translateY(-6px); box-shadow: var(--shadow-cyan); }
  .testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
  .testimonial-card blockquote { color: var(--clr-muted); font-size: 0.92rem; line-height: 1.8; margin: 0; font-style: italic; flex: 1; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--grad-main); display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight:700; color: #fff; flex-shrink: 0;
  }
  .testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--clr-text); }
  .testimonial-company { font-size: 0.78rem; color: var(--clr-muted); margin-top: 2px; }
  .testimonial-outcome {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.78rem; font-weight: 700;
    color: var(--clr-cyan);
    background: var(--clr-cyan-dim);
    border: 1px solid rgba(0,212,255,0.18);
    border-radius: var(--r-full);
    padding: 5px 12px;
    width: fit-content;
  }
  @media(max-width:900px){ .testimonials-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:600px){ .testimonials-grid { grid-template-columns: 1fr; } }

  /* ── Client Stories background ── */
  .testimonials-section {
    position: relative;
    overflow: hidden;
  }
  .testimonials-bg-img {
    position: absolute; inset: 0;
    overflow: hidden; pointer-events: none; z-index: 0;
  }
  .testimonials-bg-img img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.09; filter: saturate(0.25);
  }
  .testimonials-bg-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--clr-surface) 0%, rgba(248,250,252,0.85) 35%, rgba(248,250,252,0.92) 100%);
  }
  .testimonials-section .container { position: relative; z-index: 1; }

  /* ── Featured Products ── */
  .featured-products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
  .featured-product-card {
    background:var(--clr-card); border:1px solid var(--clr-border); border-radius:var(--r-xl);
    overflow:hidden; transition:var(--ease); display:flex; flex-direction:column;
  }
  .featured-product-card:hover { border-color:var(--clr-border-glow); transform:translateY(-6px); box-shadow:var(--shadow-cyan); }
  .featured-product-img { position:relative; min-height:200px; overflow:hidden; background:#05070A; display:flex; align-items:center; justify-content:center; padding:8px; }
  .featured-product-img img { width:100%; height:auto; max-height:220px; object-fit:contain; object-position:center; transition:transform 0.4s ease; }
  .featured-product-card:hover .featured-product-img img { transform:scale(1.02); }
  .featured-product-status { display:inline-flex; align-items:center; gap:6px; font-size:0.82rem; font-weight:600; color:var(--clr-text); margin-bottom:16px; }
  .featured-new-badge {
    position:absolute; top:14px; left:14px; z-index:2;
    background:var(--grad-main); color:#fff; font-size:11px; font-weight:700;
    text-transform:uppercase; letter-spacing:0.08em; padding:5px 12px; border-radius:var(--r-full);
  }
  .featured-product-body { padding:28px; flex:1; display:flex; flex-direction:column; }
  .featured-product-cat { font-size:12px; font-weight:700; color:var(--clr-cyan); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:8px; }
  .featured-product-card h3 { font-family:var(--font-body); font-size:1.2rem; font-weight:700; margin-bottom:10px; }
  .featured-product-card p { color:var(--clr-muted); font-size:0.9rem; line-height:1.7; margin-bottom:20px; flex:1; }
  .featured-product-actions { display:flex; gap:10px; flex-wrap:wrap; }
  .featured-product-actions .btn { flex:1; min-width:120px; justify-content:center; font-size:13px; padding:10px 16px; }
  @media(max-width:1100px){ .featured-products-grid{ grid-template-columns:repeat(2,1fr); } }
  @media(max-width:640px){ .featured-products-grid{ grid-template-columns:1fr; } }

  /* ── Corporate hero layout (background uses main-branch particle canvas + grid) ── */
  .hero--corp {
    min-height: auto;
    padding: 120px 0 72px;
    align-items: stretch;
    overflow-x: hidden;
  }

  .hero-corp-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .hero-corp-copy,
  .hero-corp-visual {
    min-width: 0;
    max-width: 100%;
  }

  .hero-corp-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 48px;
  }

  .hero-visual--corp {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    width: min(460px, 100%);
    height: 420px;
    right: auto;
    z-index: 0;
    pointer-events: none;
  }

  .hero-corp-panel-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero--corp .hero-corp-panel,
  .hero--corp .hero-corp-trust {
    position: relative;
    z-index: 2;
  }

  .hero--corp .hero-preview-card {
    border: 1px solid var(--clr-border);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 0 40px rgba(191, 25, 20, 0.12);
    z-index: 0;
  }

  .hero--corp .hero-preview-card::after {
    background: linear-gradient(135deg, rgba(191, 25, 20, 0.18), rgba(255, 255, 255, 0.08));
  }

  .hero--corp .floating-card--corp {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
  }

  .hero--corp .floating-card--projects {
    top: -44px;
    right: 0;
    left: auto;
    bottom: auto;
    animation-delay: -1s;
  }

  .hero--corp .floating-card--rating {
    position: relative;
    top: auto;
    right: auto;
    left: 0;
    bottom: auto;
    width: fit-content;
    margin: 14px 0 0;
    z-index: 2;
    animation-delay: -3s;
  }

  .hero--corp .floating-card .fc-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
  }

  .hero-corp-title,
  .hero-corp-lead,
  .hero-corp-typed,
  .hero-corp-eyebrow {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-corp-typed .typed-text {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-corp-announce {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    padding: 11px 16px 11px 12px;
    margin: 0 0 26px;
    border: 1px solid rgba(191, 25, 20, 0.14);
    border-left: 3px solid var(--clr-primary);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .hero-corp-announce:hover {
    border-color: rgba(191, 25, 20, 0.28);
    box-shadow: 0 8px 28px rgba(191, 25, 20, 0.1);
    transform: translateY(-1px);
  }

  .hero-corp-announce-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--clr-primary);
    padding: 5px 10px;
    border-radius: var(--r-full);
    white-space: nowrap;
    line-height: 1;
  }

  .hero-corp-announce-badge .rc-icon {
    --rc-icon-size: 12px;
  }

  .hero-corp-announce-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    line-height: 1.4;
  }

  .hero-corp-announce-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-corp-announce-desc {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--clr-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-corp-announce-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-primary);
    white-space: nowrap;
    padding-left: 12px;
    border-left: 1px solid rgba(191, 25, 20, 0.12);
  }

  .hero-corp-announce:hover .hero-corp-announce-link {
    color: var(--clr-cyan);
  }

  body.has-fintech-announce .hero--corp {
    padding-top: 132px;
  }

  .hero-corp-eyebrow {
    margin: 0 0 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-muted);
  }

  .hero-corp-title {
    max-width: 640px;
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .hero-corp-lead {
    max-width: 54ch;
    margin: 0 0 18px;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.7;
    color: var(--clr-muted);
  }

  .hero-corp-typed {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35em;
    margin: 0 0 22px;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    line-height: 1.5;
    min-height: 1.5em;
  }

  .hero-corp-typed-label {
    color: var(--clr-muted);
    font-weight: 500;
  }

  .hero-corp-typed .typed-text {
    color: var(--clr-primary);
  }

  .hero-corp-typed .typed-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 2px;
    vertical-align: text-bottom;
    background: var(--clr-primary);
    animation: blink 1s step-end infinite;
  }

  .hero-corp-pills {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-corp-pills::-webkit-scrollbar {
    display: none;
  }

  .hero-corp-pills li {
    list-style: none;
    flex-shrink: 0;
  }

  .hero-corp-pills .badge {
    font-size: 11px;
    padding: 5px 10px;
    letter-spacing: 0.03em;
    text-transform: none;
    white-space: nowrap;
    color: var(--clr-primary);
    background: rgba(191,25,20,0.06);
    border-color: rgba(191,25,20,0.28);
  }

  .hero-corp-pills .badge .dot {
    background: var(--clr-primary);
    box-shadow: 0 0 0 0 rgba(191,25,20,0.45);
    animation: hero-pill-blink 1.5s ease-in-out infinite;
  }

  @keyframes hero-pill-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(191,25,20,0.45); }
    50% { opacity: 0.35; box-shadow: 0 0 0 4px rgba(191,25,20,0); }
  }

  .hero-corp-cta { margin-bottom: 32px; }

  .hero-corp-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.78);
  }

  .hero-corp-metric {
    padding: 16px 14px;
    border-right: 1px solid var(--clr-border);
  }

  .hero-corp-metric:last-child { border-right: none; }

  .hero-corp-metric .num {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-corp-metric .label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--clr-muted);
    line-height: 1.35;
  }

  .hero-corp-panel {
    border: 1px solid var(--clr-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15,23,42,0.08);
  }

  .hero-corp-panel-head {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--clr-border);
    background: #f8fafc;
  }

  .hero-corp-panel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e2e8f0;
  }

  .hero-corp-panel-dot:first-child { background: #fca5a5; }
  .hero-corp-panel-dot:nth-child(2) { background: #fde68a; }
  .hero-corp-panel-dot:nth-child(3) { background: #86efac; }

  .hero-corp-panel-title {
    margin-left: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-muted);
  }

  .hero-corp-panel-body {
    background: #0b1220;
    min-height: 280px;
    position: relative;
  }

  .hero-corp-slider {
    position: relative;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
  }

  .hero-corp-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
  }

  .hero-corp-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }

  .hero-corp-slide-type {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-full);
    padding: 4px 10px;
    pointer-events: none;
  }

  .hero-corp-slider-dots {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    gap: 6px;
  }

  .hero-corp-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .hero-corp-slider-dot.is-active {
    background: var(--clr-primary);
    transform: scale(1.15);
  }

  .hero-corp-panel-img,
  .hero-corp-panel-body picture,
  .hero-corp-panel-body img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
  }

  .hero-corp-panel-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--clr-border);
    background: #fff;
  }

  .hero-corp-signal {
    padding: 14px 16px;
  }

  .hero-corp-signal + .hero-corp-signal {
    border-left: 1px solid var(--clr-border);
  }

  .hero-corp-signal-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 4px;
  }

  .hero-corp-signal strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text);
  }

  .hero-corp-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }

  .hero-corp-trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-muted);
  }

  @media (max-width: 1100px) {
    .hero-corp-grid { gap: 36px; }
    .hero--corp .floating-card--corp { display: none; }
    .hero-corp-visual { padding-top: 0; }
    .hero-corp-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-corp-metric:nth-child(2) { border-right: none; }
    .hero-corp-metric:nth-child(1),
    .hero-corp-metric:nth-child(2) { border-bottom: 1px solid var(--clr-border); }
  }

  @media (max-width: 900px) {
    .hero--corp { padding: 108px 0 56px; }
    .hero-corp-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .hero-corp-copy { order: 1; }
    .hero-corp-visual {
      order: 2;
      min-height: 0;
    }
    .hero-corp-title { max-width: 100%; }
    .hero-corp-lead { max-width: 100%; }
    .hero-corp-pills {
      flex-wrap: wrap;
      overflow-x: visible;
      gap: 8px;
    }
    .hero-corp-pills li {
      flex-shrink: 1;
      max-width: 100%;
    }
    .hero-corp-panel-body,
    .hero-corp-panel-img { min-height: 220px; }
    .hero-corp-trust {
      flex-wrap: wrap;
      gap: 10px 16px;
    }
  }

  @media (max-width: 519px) {
    .hero-corp-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-corp-metric {
      padding: 12px 10px;
      border-right: 1px solid var(--clr-border);
      border-bottom: 1px solid var(--clr-border);
    }
    .hero-corp-metric:nth-child(2n) { border-right: none; }
    .hero-corp-metric:nth-child(3),
    .hero-corp-metric:nth-child(4) { border-bottom: none; }
    .hero-corp-metric .num { font-size: 1.35rem; }
    .hero-corp-metric .label { font-size: 0.68rem; }
  }

  @media (min-width: 520px) and (max-width: 900px) {
    .hero-corp-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hero-corp-metric {
      padding: 14px 8px;
      border-right: 1px solid var(--clr-border);
      border-bottom: none;
    }
    .hero-corp-metric:nth-child(2n) { border-right: 1px solid var(--clr-border); }
    .hero-corp-metric:nth-child(4) { border-right: none; }
    .hero-corp-metric:nth-child(1),
    .hero-corp-metric:nth-child(2) { border-bottom: none; }
    .hero-corp-metric .num { font-size: 1.25rem; }
    .hero-corp-metric .label { font-size: 0.65rem; }
  }

  @media (max-width: 600px) {
    .hero--corp { padding: 96px 0 48px; }
    .hero-corp-grid { gap: 28px; }
    .hero-corp-announce {
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 14px;
    }
    .hero-corp-announce-copy {
      flex: 1 1 100%;
      order: 2;
    }
    .hero-corp-announce-title,
    .hero-corp-announce-desc {
      white-space: normal;
      overflow: visible;
      text-overflow: unset;
    }
    .hero-corp-announce-link {
      order: 1;
      margin-left: auto;
      padding-left: 0;
      border-left: none;
    }
    .hero-corp-title {
      font-size: 2rem;
      line-height: 1.2;
    }
    .hero-corp-lead { font-size: 1rem; }
    .hero-corp-pills .badge {
      white-space: normal;
      text-align: left;
    }
    .hero-corp-typed { font-size: 0.88rem; }
    .hero-corp-cta {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    .hero-corp-cta .btn { width: 100%; justify-content: center; }
    .hero-corp-panel { border-radius: var(--r-lg); }
    .hero-corp-panel-foot { grid-template-columns: 1fr; }
    .hero-corp-signal + .hero-corp-signal { border-left: none; border-top: 1px solid var(--clr-border); }
    .hero-corp-trust {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  /* ── Featured product showcase ── */
  .featured-product-showcase {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
    background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--r-xl);
    padding: 36px; overflow: hidden;
  }
  .featured-showcase-visual {
    background: #05070A; border-radius: var(--r-lg); overflow: hidden;
    display: flex; align-items: center; justify-content: center; padding: 12px;
    border: 1px solid var(--clr-border);
  }
  .featured-showcase-visual img { width: 100%; height: auto; object-fit: contain; display: block; }
  .featured-showcase-content h3 { font-family: var(--font-body); font-size: 1.5rem; font-weight:700; margin-bottom: 8px; }
  .featured-showcase-features { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .featured-showcase-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--clr-muted); }
  .featured-showcase-features li i { color: var(--clr-cyan); font-size: 10px; }
  .featured-showcase-actions { display: flex; gap: 10px; flex-wrap: wrap; }

  /* ── What's New ── */
  .whats-new-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .whats-new-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .whats-new-item {
    background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--r-lg);
    padding: 18px 16px; display: flex; align-items: center; gap: 12px; transition: var(--ease);
  }
  .whats-new-item:hover { border-color: var(--clr-border-glow); transform: translateY(-2px); }
  .whats-new-item-icon { display:flex; align-items:center; }
  .whats-new-item span { font-size: 0.9rem; font-weight: 700; }
  @media(max-width:900px){
    .featured-product-showcase, .whats-new-grid { grid-template-columns: 1fr; gap: 28px; }
    .featured-showcase-features { grid-template-columns: 1fr; }
  }
