/* ===== extracted from <style> ===== */
/* -- REVEAL -- */
      .r {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 0.65s ease,
          transform 0.65s ease;
      }
      .r.on {
        opacity: 1;
        transform: none;
      }
      .d1 {
        transition-delay: 0.09s;
      }
      .d2 {
        transition-delay: 0.17s;
      }
      .d3 {
        transition-delay: 0.25s;
      }
      .d4 {
        transition-delay: 0.33s;
      }
      .wrap {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 28px;
      }

      /* hero right owner week snapshot */
      .hero-card-wrap {
        animation: fadeUp 0.55s 0.3s ease both;
        position: relative;
      }
      .float-tag {
        position: absolute;
        top: -12px;
        right: -12px;
        background: var(--white);
        border: 1.5px solid var(--bd-m);
        border-radius: 10px;
        padding: 8px 13px;
        box-shadow: var(--sh-m);
        font-size: 12.5px;
        font-weight: 700;
        color: var(--ink);
        white-space: nowrap;
        z-index: 2;
      }
      .float-tag em {
        color: var(--green);
        font-style: normal;
        font-weight: 800;
      }
      .hero-card {
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        padding: 28px;
      }
      .hero-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--mid), var(--turquoise));
        opacity: 0.3;
      }
      .hc-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .hc-label {
        font-size: 17px;
        font-weight: 600;
        color: var(--ink);
      }
      .hc-sub {
        font-size: 11px;
        color: var(--muted);
        margin-bottom: 16px;
      }

      /* owner week heatmap-style */
      .week-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
        margin-bottom: 16px;
      }
      .day-col {
        display: flex;
        flex-direction: column;
        gap: 4px;
        border: 1px solid var(--bd);
        padding: 0.25rem;
        border-radius: 0.5rem;
      }
      .day-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 4px;
      }
      .day-task {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 6px 5px;
        border-radius: 6px;
        font-size: 10px;
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
        transition: all 0.18s;
        cursor: default;
      }
      .dt-red {
        background: #fef4f4;
        color: #781418;
        border: 1px solid rgba(239, 68, 68, 0.2);
      }
      .dt-amber {
        background: #fefaec;
        color: #744310;
        border: 1px solid rgba(254, 198, 76, 0.5);
      }
      .dt-mid {
        background: var(--mid-l);
        color: var(--mid);
        border: 1px solid rgba(107, 114, 128, 0.3);
      }
      .dt-muted {
        background: var(--lav);
        color: var(--muted);
      }
      .dt-green {
        background: var(--green-l);
        color: #166534;
        border: 1px solid rgba(22, 163, 74, 0.25);
      }
      .day-task:hover {
        transform: scale(1.04);
      }

      .hc-legend {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        background: #f9fbfd;
        border: 1px solid var(--bd);
        border-radius: 8px;
        margin-bottom: 14px;
      }
      .hc-legend-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        color: var(--muted);
      }
      .hc-legend-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        flex-shrink: 0;
      }

      .hc-after {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 11px 13px;
        background: #f8fdf9;
        border: 1px solid rgba(22, 163, 74, 0.35);
        border-radius: 9px;
        font-size: 13px;
        font-weight: 700;
      }
      .strong
      {
        font-weight:700;
      }

      .hc-after p {
        font-size: 11px;
        color: var(--muted);
      }
      .hc-after::before {
        content: "\2713";
        font-weight: 800;
        font-size: 14px;
        color: var(--green);
      }

      .hc-after::before {
        background: var(--green);
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--white);
      }
      .hs-stat {
        max-width: 20%;
      }

      .hs-stat:last-child {
        padding-right: 0;
      }

      .hs-num {
        font-size: 18px;
      }

      .hs-label {
        font-size: 13px;
      }

      /* ------------------------------
   LOGO / INDUSTRY BAR
------------------------------ */
      .ind-bar {
        background: var(--white);
        padding: 22px 56px;
        border-bottom: 1px solid var(--bd);
      }
      .ind-bar-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
      }
      .ind-bar-label {
        font-size: 11px;
        font-weight: 700;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.07em;
        white-space: nowrap;
      }
      .ind-list {
        display: flex;
        align-items: center;
        gap: 0;
        flex: 1;
        flex-wrap: wrap;
      }
      .ind-item {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 6px 18px;
        border-right: 1px solid var(--bd);
        font-size: 13.5px;
        font-weight: 500;
        color: var(--muted);
        white-space: nowrap;
        transition: color 0.2s;
      }
      .ind-item:hover {
        color: var(--mid);
      }
      .ind-item:last-child {
        border-right: none;
      }
      .ind-item span {
        font-size: 15px;
      }

      /* ------------------------------
   THE 7 HATS / PAIN
------------------------------ */
      .pain-sec {
        background: var(--lav);
      }
      .pain-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .pain-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }

      .pain-copy p {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.78;
        margin-bottom: 18px;
      }
      .pain-copy p strong {
        color: var(--body);
        font-weight: 500;
      }

      /* the 7 hats visual */
      .hats-wrap {
        position: relative;
      }
      .hats-title {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 14px;
      }
      .hats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 14px;
      }
      .hat-card {
        background: var(--white);
        border: 1px solid var(--bd);
        border-radius: 12px;
        padding: 12px 42px 12px 14px;
        display: flex;
        align-items: flex-start;
        gap: 11px;
        box-shadow: var(--sh-s);
        transition: all 0.22s;
        cursor: default;
        position: relative;
        overflow: hidden;
        align-items: center;
      }
      .hat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 3px;
      }
      .hat-icon svg *
      {
        stroke-width: 2.05;
      }
      .hat-icon.hi-red
      {
        background:rgba(34, 197, 94, 0.12);
      }
      .hat-icon.hi-red1
      {
        background:#eeeeff;
      }
      .hat-icon.hi-amber
      {
        background:#eeeeff;
      }
      .hat-icon.hi-amber1
      {
        background:#dcf8e8;
      }
      .hat-icon.hi-mid
      {
        background:#dcf8e8;
      }
      .hat-icon--team svg *
      {
        stroke-width: 2.7;
      }
      .hats-full-icon
      {
        background:#eeeeff;
      }
      .hats-full-icon svg *
      {
        stroke-width: 2.05;
      }
      .hat-card.overload {
        border-left: 3px solid var(--green);
      }
      .hat-card.medium {
        border-left: 3px solid var(--amber);
      }
      .hat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-m);
      }
      .hat-icon {
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        padding: 6px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        flex-shrink: 0;
      }
      .hat-icon img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
      }
      
      .hat-name {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 2px;
        line-height: 1.3;
      }
      .hat-card > div:not(.hat-icon):not(.hat-you) {
        flex: 1;
        min-width: 0;
      }
      .hat-note {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.4;
      }
      .hat-you {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--red);
        background: var(--red-l);
        padding: 2px 7px;
        border-radius: 100px;
        flex-shrink: 0;
        z-index: 1;
      }

      .hats-full {
        background: var(--white);
        border: 1px solid var(--bd);
        border-radius: 12px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 11px;
        box-shadow: var(--sh-s);
        margin-bottom: 14px;
        border-left: 3px solid var(--green);
      }
      .hats-full-icon {
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        padding: 6px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: var(--mid-l);
        font-size: 16px;
      }
      .hats-full-icon img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
      }
      .hats-full-text {
        font-size: 14px;
        font-weight: 500;
        color: var(--ink);
      }
      .hats-full-sub {
        font-size: 12.5px;
        color: var(--muted);
      }

      .hats-result {
        background: rgba(239, 68, 68, 0.05);
        border: 1px solid rgba(239, 68, 68, 0.15);
        border-radius: 10px;
        padding: 14px 16px;
        font-size: 13.5px;
        color: var(--red);
        font-weight: 600;
        line-height: 1.5;
      }

      /* ------------------------------
   WHAT IT'S COSTING YOU
------------------------------ */
      .cost-sec {
        background: var(--white);
      }
      .cost-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .cost-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin-bottom: 48px;
      }
      .stat-card {
        background: var(--lav);
      }
      .cost-card {
        background: var(--lav);
        border: 1px solid var(--bd);
        border-radius: 16px;
        padding: 24px 20px;
        text-align: center;
        transition: all 0.25s;
        cursor: default;
        position: relative;
        overflow: hidden;
      }
      .cost-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--mid), var(--turquoise));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .cost-card:hover::after {
        transform: scaleX(1);
      }
      .cost-card:hover {
        background: var(--white);
        transform: translateY(-4px);
        box-shadow: var(--sh-m);
      }
      .cc-icon {
        font-size: 28px;
        margin-bottom: 12px;
      }
      .cc-num {
        font-family: "Playfair Display", serif;
        font-size: 36px;
        font-weight: 500;
        color: var(--mid);
        line-height: 1;
        margin-bottom: 6px;
      }
      .cc-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 5px;
      }
      .cc-desc {
        font-size: 12.5px;
        color: var(--muted);
        line-height: 1.5;
      }

      /* before after strip */
      .ba-strip {
        display: grid;
        grid-template-columns: 1fr 60px 1fr;
        gap: 0;
        background: var(--white);
        border: 1px solid var(--bd);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--sh-s);
      }
      .ba-col {
        padding: 28px 24px;
      }
      .ba-col.before {
        background: rgba(239, 68, 68, 0.03);
        border-right: 1px solid var(--bd);
      }
      .ba-col.after {
        background: rgba(34, 197, 94, 0.03);
      }
      .ba-label {
        font-size: 10.5px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .ba-col.before .ba-label {
        color: var(--red);
      }
      .ba-col.after .ba-label {
        color: var(--green);
      }
      .ba-row {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        padding: 9px 0;
        border-bottom: 1px solid var(--bd);
        font-size: 13.5px;
        line-height: 1.45;
      }
      .ba-row:last-child {
        border-bottom: none;
      }
      .ba-col.before .ba-row {
        color: var(--muted);
      }
      .ba-col.before .ba-row::before {
        content: "?";
        color: var(--red);
        font-size: 11px;
        flex-shrink: 0;
        margin-top: 2px;
        font-weight: 700;
      }
      .ba-col.after .ba-row {
        color: var(--body);
        font-weight: 500;
      }
      .ba-col.after .ba-row::before {
        content: "?";
        color: var(--green);
        font-size: 11px;
        flex-shrink: 0;
        margin-top: 2px;
        font-weight: 800;
      }
      .ba-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--mid);
        color: #fff;
        font-size: 18px;
        font-weight: 700;
      }

      /* ------------------------------
   THE SOLUTION GROWTH OS
------------------------------ */
      .solution-sec {
        background: var(--ink);
        color: #fff;
        position: relative;
        overflow: hidden;
      }
      .solution-sec::before {
        content: "";
        position: absolute;
        top: -160px;
        right: -120px;
        width: 540px;
        height: 540px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(33, 191, 207, 0.1) 0%,
          transparent 65%
        );
        pointer-events: none;
      }
      .solution-inner {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .solution-sec h2 {
        color: #fff;
      }
      .solution-sec h2 em {
        color: var(--turquoise);
      }
      .solution-sec .sec-sub {
        color: rgba(255, 255, 255, 0.48);
      }

      .solution-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }

      .layers-stack {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .layer {
        display: grid;
        grid-template-columns: 110px 1fr auto;
        align-items: center;
        gap: 20px;
        padding: 20px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.04);
        transition: background 0.2s;
        cursor: default;
      }
      .layer:first-child {
        border-radius: 14px 14px 0 0;
      }
      .layer:last-child {
        border-bottom: none;
        border-radius: 0 0 14px 14px;
      }
      .layer:hover {
        background: rgba(255, 255, 255, 0.08);
      }
      .layer-num {
        font-size: 10.5px;
        font-weight: 800;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.28);
        text-transform: uppercase;
      }
      .layer-title {
        font-size: 15.5px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 3px;
      }
      .layer-desc {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.45);
      }
      .layer-tag {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--turquoise);
        background: rgba(33, 191, 207, 0.12);
        padding: 4px 11px;
        border-radius: 100px;
        white-space: nowrap;
        border: 1px solid rgba(33, 191, 207, 0.2);
      }

      .solution-promise {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 28px;
      }
      .sp-title {
        font-family: "Playfair Display", serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 16px;
      }
      .sp-quote {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-size: 18px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.82);
        margin-bottom: 16px;
      }
      .sp-cite {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.32);
      }

      .sp-stats {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 22px;
      }
      .sp-stat {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 9px;
        transition: background 0.2s;
        cursor: default;
      }
      .sp-stat:hover {
        background: rgba(255, 255, 255, 0.1);
      }
      .sp-stat-num {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--turquoise);
        line-height: 1;
        min-width: 52px;
      }
      .stat-num span
      {
        font-size: 40px;
        text-transform: uppercase;
      }
      .sp-stat-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
      }

      /* ------------------------------
   SIX TEAMS SERVICE FOCUSED
------------------------------ */
      /* .teams-sec {
        background: var(--lav);
      }
      .teams-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .teams-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .team-card {
        background: var(--white);
        border: 1px solid var(--bd);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.25s;
        position: relative;
      }
      .team-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--mid), var(--turquoise));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .team-card:hover::after {
        transform: scaleX(1);
      }
      .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-m);
      }
      .tc-head {
        padding: 22px 20px 16px;
        border-bottom: 1px solid var(--bd);
      }
      .tc-icon-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
      }
      .tc-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
      }
      .tci1 {
        background: rgba(69, 77, 161, 0.1);
      }
      .tci2 {
        background: rgba(33, 191, 207, 0.1);
      }
      .tci3 {
        background: rgba(34, 197, 94, 0.1);
      }
      .tci4 {
        background: rgba(245, 158, 11, 0.1);
      }
      .tci5 {
        background: rgba(239, 68, 68, 0.08);
      }
      .tci6 {
        background: rgba(139, 92, 246, 0.1);
      }
      .tc-active {
        font-size: 9.5px;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--turquoise);
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .tc-active::before {
        content: "?";
        font-size: 7px;
        animation: blink 2s infinite;
      }
      .tc-head h3 {
        font-family: "Playfair Display", serif;
        font-size: 16.5px;
        font-weight: 500;
        color: var(--ink);
        margin-bottom: 5px;
      }
      .tc-head p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.55;
      }
      .tc-body {
        padding: 16px 20px;
      }
      .tc-examples-label {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 10px;
      }
      .tc-examples {
        list-style: none;
      }
      .tc-examples li {
        font-size: 13px;
        color: var(--body);
        padding: 6px 0;
        border-bottom: 1px solid var(--bd);
        display: flex;
        align-items: flex-start;
        gap: 7px;
        line-height: 1.4;
        transition: color 0.15s;
      }
      .tc-examples li:hover {
        color: var(--ink);
      }
      .tc-examples li:last-child {
        border-bottom: none;
      }
      .tc-examples li::before {
        content: "?";
        color: var(--mid);
        font-size: 9px;
        flex-shrink: 0;
        margin-top: 3px;
      } */

      /* ------------------------------
   FREE TRIAL
------------------------------ */
      .trial-sec {
        background: var(--white);
      }
      .trial-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
      }
      .trial-copy p {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.78;
        margin-bottom: 20px;
      }
      .trial-copy p strong {
        color: var(--body);
        font-weight: 500;
      }

      .trial-items {
        display: flex;
        flex-direction: column;
        gap: 11px;
        margin-bottom: 26px;
      }
      .trial-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 13px 15px;
        background: var(--lav);
        border: 1px solid var(--bd);
        border-radius: 11px;
        transition: all 0.2s;
        cursor: default;
      }
      .trial-item:hover {
        background: var(--lav-m);
        border-color: var(--bd-m);
        transform: translateX(3px);
      }
      .ti-icon {
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        padding: 5px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        flex-shrink: 0;
      }
      .ti-icon svg *
      {
        stroke-width: 1.75;
      }
      .ti-icon img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
      }
      .ti-icon--marketing {
        padding: 4px;
      }
      .ti-icon--marketing svg {
        width: 94%;
        height: 94%;
        display: block;
      }
      .ti-icon--social {
        padding: 4px;
      }
      .ti-icon--social svg {
        width: 94%;
        height: 94%;
        display: block;
      }
      .ti1 {
        background: #e3e4fb;
      }
      .ti2 {
        background: #d8f5e7;
      }
      .ti3 {
        background: #e3e4fb;
      }
      .ti4 {
        background: #d8f5e7;
      }
      .ti5 {
        background: rgba(239, 68, 68, 0.08);
      }
      .ti6 {
        background: rgba(139, 92, 246, 0.1);
      }
      .ti-title {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 2px;
      }
      .ti-desc {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.45;
      }
      .ti-badge {
        margin-left: auto;
        font-size: 10px;
        font-weight: 800;
        color: var(--green);
        background: var(--green-l);
        padding: 2px 9px;
        border-radius: 100px;
        border: 1px solid rgba(34, 197, 94, 0.18);
        white-space: nowrap;
        flex-shrink: 0;
        margin-top: 2px;
      }

      .trial-disclaimer {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 13px;
        color: var(--muted);
      }

      /* trial card */
      .trial-card {
        background: var(--mid);
        border-radius: 20px;
        padding: 30px;
        box-shadow: var(--sh-xl);
        position: relative;
        overflow: hidden;
      }
      .trial-card::before {
        content: "";
        position: absolute;
        top: -70px;
        right: -70px;
        width: 210px;
        height: 210px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(33, 191, 207, 0.18) 0%,
          transparent 65%
        );
        pointer-events: none;
      }
      .trial-card-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(34, 197, 94, 0.15);
        border: 1px solid rgba(34, 197, 94, 0.22);
        border-radius: 100px;
        padding: 5px 13px;
        font-size: 10.5px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--green);
        margin-bottom: 16px;
      }
      .trial-card-badge .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green);
        animation: blink 2s infinite;
      }
      .trial-card-title {
        font-family: "Playfair Display", serif;
        font-size: 21px;
        font-weight: 500;
        color: #fff;
        letter-spacing: -0.2px;
        margin-bottom: 5px;
      }
      .trial-card-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 20px;
      }

      .tc-rows {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
      }
      .tc-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 12px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        transition: background 0.18s;
        cursor: default;
      }
      .tc-row:hover {
        background: rgba(255, 255, 255, 0.11);
      }
      .tc-row-icon {
        font-size: 15px;
        flex-shrink: 0;
      }
      .tc-row-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.72);
        font-weight: 500;
        flex: 1;
      }
      .tc-row-count {
        font-size: 10px;
        font-weight: 800;
        color: var(--green);
        background: rgba(34, 197, 94, 0.12);
        padding: 2px 8px;
        border-radius: 100px;
        white-space: nowrap;
        flex-shrink: 0;
      }

      .trial-cta-main {
        display: block;
        text-align: center;
        background: var(--green);
        color: #fff;
        padding: 14px;
        border-radius: 9px;
        font-size: 14.5px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
        margin-bottom: 10px;
        letter-spacing: 0.01em;
      }
      .trial-cta-main:hover {
        background: #16a34a;
        transform: translateY(-1px);
      }
      .trial-cta-secondary {
        display: block;
        text-align: center;
        background: rgba(255, 255, 255, 0.09);
        color: rgba(255, 255, 255, 0.65);
        padding: 12px;
        border-radius: 9px;
        font-size: 13.5px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      .trial-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
      }
      .trial-card-note {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.28);
        text-align: center;
        margin-top: 10px;
      }

      /* ------------------------------
   TESTIMONIALS
------------------------------ */
      /* .testi-sec {
        background: var(--lav);
      }
      .testi-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 44px;
      }
      .testi-card {
        background: var(--white);
        border: 1px solid var(--bd);
        border-radius: 16px;
        padding: 26px 22px;
        transition: all 0.22s;
      }
      .testi-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-m);
      }
      .stars {
        color: var(--amber);
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 12px;
      }
      .testi-q {
        font-size: 14.5px;
        line-height: 1.78;
        color: #333;
        font-style: italic;
        margin-bottom: 18px;
      }
      .testi-q strong {
        font-style: normal;
        font-weight: 700;
        color: var(--mid);
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 11px;
      }
      .testi-av {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--mid), var(--turquoise));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Playfair Display", serif;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        flex-shrink: 0;
      }
      .testi-name {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
      }
      .testi-role {
        font-size: 12px;
        color: var(--muted);
      }
      .testi-industry {
        display: inline-block;
        margin-top: 4px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--turquoise);
        background: var(--teal-l);
        padding: 2px 8px;
        border-radius: 100px;
      } */

      /* ------------------------------
   BOTTOM CTA
------------------------------ */
      .cta-sec {
        padding: 88px 56px;
        background: linear-gradient(
          145deg,
          var(--mid) 0%,
          #363d88 55%,
          #2a3070 100%
        );
        position: relative;
        overflow: hidden;
      }
      .cta-sec::before {
        content: "";
        position: absolute;
        top: -160px;
        right: -120px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(33, 191, 207, 0.12) 0%,
          transparent 65%
        );
        pointer-events: none;
      }
      .cta-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 460px;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
      }
      .cta-left h2 {
        color: #fff;
      }
      .cta-left h2 em {
        color: var(--turquoise);
      }
      .cta-left p {
        font-size: 16.5px;
        color: rgba(255, 255, 255, 0.52);
        line-height: 1.75;
        margin-bottom: 28px;
      }

      .cta-checks {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 11px;
        margin-bottom: 32px;
      }
      .cta-checks li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14.5px;
        color: rgba(255, 255, 255, 0.75);
      }
      /* .cta-checks li::before {
        content: "?";
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(34, 197, 94, 0.2);
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 800;
        flex-shrink: 0;
      } */
      .cta-btn-grp {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .cta-btn-green {
        background: var(--green);
        color: #fff;
        padding: 14px 26px;
        border-radius: 9px;
        font-size: 14.5px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 6px 22px rgba(34, 197, 94, 0.3);
        transition: all 0.2s;
        letter-spacing: 0.01em;
      }
      .cta-btn-green:hover {
        background: #16a34a;
        transform: translateY(-2px);
      }
      .cta-btn-white {
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.75);
        padding: 13px 22px;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
      }
      .cta-btn-white:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff;
      }

      /* cta right */
      .cta-right {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 28px;
      }
      .cta-right-title {
        font-family: "Playfair Display", serif;
        font-size: 17px;
        font-weight: 500;
        font-style: italic;
        color: #fff;
        margin-bottom: 18px;
        line-height: 1.3;
      }
      .cta-step {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        transition: all 0.18s;
        cursor: default;
      }
      .cta-step:last-child {
        border-bottom: none;
      }
      .cta-step:hover {
        padding-left: 4px;
      }
      .cs-num {
        width: 26px;
        height: 26px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.5);
        flex-shrink: 0;
        margin-top: 1px;
      }
      .cs-title {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 3px;
      }
      .cs-desc {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.4);
      }
      .cta-right
      {
        border-radius:9px;
      }

      /* -- RESPONSIVE -- */
      @media (max-width: 920px) {
        section,
        .hero,
        .ind-bar,
        .cta-sec,
        .hero-inner,
        .pain-grid,
        .solution-grid,
        .trial-inner,
        .cta-inner {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .cta-sec {
          padding: 64px 20px;
        }
        .hero-card-wrap {
          display: none;
        }
        .hero-strip {
          margin: 0 -18px;
          padding: 14px 18px;
        }
        .hs-stat:nth-child(n + 4) {
          display: none;
        }
        .cost-grid {
          grid-template-columns: 1fr 1fr;
        }
        .ba-strip {
          grid-template-columns: 1fr;
          gap: 0;
        }
        .ba-arrow {
          display: none;
        }
        .teams-grid,
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .hats-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Hero strip iPad Pro / =1024px (logo bar: global style.css only, same as other pages) */
      @media (max-width: 1024px) {
        .hero-strip {
          margin: 0;
          width: 100%;
          max-width: 100%;
          box-sizing: border-box;
          padding: 16px 18px;
        }

        .hero-strip .hs-inner {
          display: flex;
          flex-wrap: nowrap;
          align-items: stretch;
          justify-content: space-between;
          gap: 10px;
          max-width: none;
          width: 100%;
          margin: 0 auto;
          box-sizing: border-box;
        }

        .hero-strip .hs-stat {
          max-width: none;
          flex: 1 1 0;
          min-width: 0;
          width: auto;
          box-sizing: border-box;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          gap: 8px;
          padding: 12px 6px;
          border-right: none;
        }
      }

      /* Hero stats strip =768px: 3 equal columns when 4th/5th hidden (=920) */
      @media (max-width: 768px) {
        .hero-strip .hs-inner {
          display: grid;
          grid-template-columns: repeat(3, minmax(0, 1fr));
          align-items: stretch;
          justify-items: stretch;
          gap: 0;
        }

        .hero-strip .hs-stat {
          max-width: none;
          width: 100%;
          min-width: 0;
          box-sizing: border-box;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          gap: 8px;
          padding: 14px 10px;
          border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

        .hero-strip .hs-stat:nth-child(3) {
          border-right: none;
          padding-right: 10px;
        }

        .hero-strip .hs-stat:first-child {
          padding-left: 10px;
        }
      }

      .problem-section .trap-row {
        border-bottom: none;
      }

      #teams .team-status::before {
        content: none;
      }

      #teams .task-track.v2 > div::after {
        content: none;
      }

      /* Seamless vertical marquee — GPU layer, no layout thrash */
      #teams .task-track.v2 {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
      }

      /* Solution cards — keep 4th card same height as the other three */
      #solution #solLayers .sol-layer {
        flex: 0 0 auto;
        box-sizing: border-box;
      }

      @media (min-width: 901px) {
        #solution #solLayers .sol-layer {
          align-items: center;
        }

        #solution .solution-layers {
          align-self: start;
        }

        #solution #solLayers .sol-layer[data-media="m1"] {
          padding-top: 18px;
          padding-bottom: 18px;
        }
      }

/* Mobile — reviews: same video + text cards as growth-os / mobile-application */
@media screen and (max-width: 768px) {
  html body.page-for-startups #testimonials.testimonials-section .testi-card {
    align-items: stretch !important;
    width: min(92vw, 380px) !important;
    min-height: auto !important;
    height: auto !important;
  }

  html body.page-for-startups #testimonials.testimonials-section .testi-card > .testi-video {
    display: block !important;
    align-self: stretch !important;
    width: 120px !important;
    min-width: 120px !important;
    flex: 0 0 120px !important;
    height: auto !important;
    min-height: 100% !important;
    aspect-ratio: auto !important;
    background: #0f1024 !important;
  }

  html body.page-for-startups #testimonials.testimonials-section .testi-card .testi-video img:not(.testi-video__logo),
  html body.page-for-startups #testimonials.testimonials-section .testi-card:hover .testi-video img:not(.testi-video__logo),
  html body.page-for-startups #testimonials.testimonials-section .testi-video img,
  html body.page-for-startups #testimonials.testimonials-section .testi-card:hover .testi-video img {
    object-fit: cover !important;
    object-position: center center !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  html body.page-for-startups #testimonials.testimonials-section .testi-content {
    min-width: 0 !important;
    padding: 14px 12px 12px !important;
    box-sizing: border-box !important;
  }

  html body.page-for-startups #testimonials.testimonials-section .testi-quote {
    font-size: 13px !important;
    line-height: 1.45 !important;
    -webkit-line-clamp: 5 !important;
    line-clamp: 5 !important;
  }

  html body.page-for-startups #testimonials.testimonials-section .testi-author {
    padding-top: 10px !important;
    gap: 8px !important;
  }

  html body.page-for-startups #testimonials.testimonials-section .testi-name {
    font-size: 13px !important;
  }

  html body.page-for-startups #testimonials.testimonials-section .testi-role {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
}

/* Mobile — hero CTAs on one row */
@media screen and (max-width: 768px) {
  html body.page-for-startups .hero .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  html body.page-for-startups .hero .hero-actions .btn-green,
  html body.page-for-startups .hero .hero-actions .btn-ghost {
    width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  html body.page-for-startups .hero .hero-actions .btn-green {
    padding: 10px 12px !important;
    font-size: 12px !important;
    gap: 6px !important;
  }

  html body.page-for-startups .hero .hero-actions .btn-green svg {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
  }

  html body.page-for-startups .hero .hero-actions .btn-ghost {
    padding-left: 0.25rem !important;
    font-size: 12px !important;
  }
}

/* Mobile — industry tags: hug text width + side-rail clear */
@media screen and (max-width: 768px) {
  html body.page-for-startups .hero .hero-industries {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-right: max(8px, calc(var(--side-rail-tab-w, 40px) - 4px)) !important;
  }

  html body.page-for-startups .hero .hero-industries .ind-tag {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    font-size: 11.5px !important;
    padding: 4px 8px !important;
    gap: 4px !important;
    line-height: 1.25 !important;
  }
}
