/* TheSocialVox — shared stylesheet (extracted from single-file build) */
/* ============================================================
   THESOCIALVOX — DESIGN SYSTEM
   Tokens kept at the top so the whole site is easy to re-skin.
============================================================ */
    :root {
      --ink: #0b0c10;
      --ink-soft: #4b5160;
      --ink-faint: #8a90a0;
      --paper: #ffffff;
      --paper-soft: #f6f7f9;
      --line: #e7e9ee;
      --accent: #2f5af2;
      --accent-soft: #eaf0ff;
      --dark: #0b0c10;

      --font-display: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;

      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 10px;
      --shadow-card: 0 10px 30px rgba(11, 12, 16, 0.06);
      --shadow-soft: 0 4px 18px rgba(11, 12, 16, 0.06);
      --container: 1180px;

      --ribbon-card-w: 200px;
      --ribbon-card-h: 336px;
      --ribbon-gap: 26px;
      --ribbon-viewport-h: 470px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

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

    ul {
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

    .grid-bg {
      background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 42px 42px;
      background-position: center top;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-soft);
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 7px 18px;
      margin: 0 auto 18px;
    }

    .section-head {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 52px;
    }

    .section-head h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
    }

    .section-head p {
      margin-top: 14px;
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.6;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 15px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--ink);
      color: #fff;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(11, 12, 16, 0.22);
    }

    .btn-outline {
      background: var(--paper);
      color: var(--ink);
      border: 1.5px solid var(--line);
    }

    .btn-outline:hover {
      border-color: var(--ink);
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: 11px 22px;
      font-size: 14px;
    }

    /* ============================================================
   NAVBAR — logo left, links + CTA right, floating pill
============================================================ */
    .navbar-wrap {
      position: sticky;
      top: 18px;
      z-index: 1000;
      display: flex;
      justify-content: center;
      padding: 0 16px;
    }

    .navbar {
      width: 100%;
      max-width: 1080px;
      background: rgba(238, 240, 244, 0.92);
      backdrop-filter: blur(14px);
      border: 1px solid var(--line);
      border-radius: 999px;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 10px 10px 22px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 9px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.01em;
    }

    .logo svg {
      flex-shrink: 0;
    }

    .logo span.accent {
      color: var(--accent);
    }

    .logo-icon {
      width: 28px;
      height: 28px;
      object-fit: contain;
      flex-shrink: 0;
      display: block;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .nav-links a {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--ink);
      position: relative;
      padding: 6px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--ink);
      transition: width .25s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: inline-flex;
    }

    .hamburger {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: var(--paper-soft);
    }

    .hamburger span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      position: relative;
    }

    .hamburger span::before,
    .hamburger span::after {
      content: '';
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
    }

    .hamburger span::before {
      top: -6px;
    }

    .hamburger span::after {
      top: 6px;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 4px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 20px;
      margin-top: 10px;
      padding: 14px;
      box-shadow: var(--shadow-card);
    }

    .mobile-menu a {
      padding: 13px 14px;
      border-radius: 12px;
      font-weight: 500;
      font-size: 15px;
    }

    .mobile-menu a:hover {
      background: var(--paper-soft);
    }

    .mobile-menu.open {
      display: flex;
    }

    /* ============================================================
   HERO
============================================================ */
    .hero {
      padding: 64px 0 70px;
      text-align: center;
      position: relative;
    }

    .hero-photos {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: -30px;
      margin-bottom: 18px;
    }

    .hero-photo {
      width: 150px;
      height: 190px;
      border-radius: 22px;
      box-shadow: 0 16px 30px rgba(11, 12, 16, 0.14);
      border: 4px solid #fff;
      background: linear-gradient(160deg, #dbe6ff, #f3f0ff);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-photo svg {
      width: 54px;
      height: 54px;
      color: #aab6e8;
    }

    .hero-photo--1 {
      transform: rotate(-7deg) translateX(14px);
      z-index: 1;
      background: linear-gradient(160deg, #ffe9d6, #fff3e0);
    }

    .hero-photo--1 svg {
      color: #e3b48a;
    }

    .hero-photo--2 {
      transform: rotate(7deg) translateX(-14px);
      background: linear-gradient(160deg, #dbe6ff, #eef1ff);
    }

    .hero-photo--2 svg {
      color: #9db3f0;
    }

    /* Replace the gradient backgrounds above with real founder/team photos:
   add style="background-image:url('photo.jpg');background-size:cover;background-position:center" */

    .hero h1 {
      font-size: clamp(34px, 6vw, 62px);
      font-weight: 700;
      max-width: 780px;
      margin: 8px auto 18px;
      line-height: 1.05;
    }

    .hero-highlight {
      display: inline-block;
      font-size: 1.08em;
      font-weight: 800;
    }

    .hero p.lead {
      max-width: 560px;
      margin: 0 auto 32px;
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    .hero-ctas {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 14.5px;
      color: var(--ink-soft);
    }

    .avatar-stack {
      display: flex;
    }

    .avatar-stack span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2.5px solid #fff;
      margin-left: -10px;
      background: linear-gradient(135deg, var(--accent), #7aa0ff);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
    }

    .avatar-stack span:first-child {
      margin-left: 0;
    }

    .trust-row b {
      color: var(--ink);
      font-weight: 700;
    }

    /* ============================================================
   LOGO MARQUEE — two rows, opposite directions
============================================================ */
    .logo-marquee {
      padding: 46px 0;
      overflow: hidden;
      background: var(--paper-soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .marquee-row {
      overflow: hidden;
    }

    .marquee-row+.marquee-row {
      margin-top: 26px;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      gap: 64px;
      align-items: center;
      animation: scrollLeft 32s linear infinite;
    }

    .marquee-row.reverse .marquee-track {
      animation: scrollRight 32s linear infinite;
    }

    .marquee-track span {
      font-size: 22px;
      font-weight: 600;
      color: #a9aebb;
      white-space: nowrap;
      letter-spacing: 0.01em;
    }

    .marquee-row.reverse .marquee-track span {
      font-style: italic;
      font-family: Georgia, 'Times New Roman', serif;
      font-weight: 500;
      font-size: 23px;
    }

    @keyframes scrollLeft {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @keyframes scrollRight {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    /* ============================================================
   SERVICES
============================================================ */
    .services {
      padding: 110px 0 100px;
    }

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

    .service-card {
      display: block;
      cursor: pointer;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 18px;
      box-shadow: var(--shadow-card);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 36px rgba(11, 12, 16, 0.1);
    }

    .service-visual {
      height: 200px;
      border-radius: var(--radius-md);
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-card h3 {
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .service-card p {
      color: var(--ink-soft);
      font-size: 14.5px;
      line-height: 1.6;
    }

    /* visual 1 — website dev: browser mockup */
    .visual-web {
      background: #e7edff;
    }

    .browser-mock {
      width: 84%;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(20, 40, 120, 0.12);
      overflow: hidden;
    }

    .browser-bar {
      display: flex;
      gap: 5px;
      padding: 8px 10px;
      background: #f1f3fb;
    }

    .browser-bar i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #cfd5ea;
    }

    .browser-body {
      padding: 12px;
    }

    .skeleton-line {
      height: 8px;
      border-radius: 5px;
      background: #e3e8f8;
      margin-bottom: 8px;
    }

    .skeleton-line.short {
      width: 40%;
    }

    .skeleton-block {
      height: 38px;
      border-radius: 7px;
      background: linear-gradient(135deg, var(--accent), #7aa0ff);
      margin-bottom: 10px;
    }

    /* visual 2 — social media: phone mockup */
    .visual-social {
      background: #ffe9e2;
    }

    .phone-mock {
      width: 118px;
      height: 182px;
      background: #fff;
      border-radius: 18px;
      border: 5px solid #1a1a1a;
      box-shadow: 0 10px 24px rgba(120, 40, 20, 0.14);
      padding: 10px 8px;
    }

    .story-row {
      display: flex;
      gap: 5px;
      margin-bottom: 8px;
    }

    .story-row i {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff8a5b, #ff5b8a);
      flex-shrink: 0;
    }

    .post-block {
      height: 60px;
      border-radius: 8px;
      background: #ffd9c8;
      margin-bottom: 6px;
    }

    .icon-row {
      display: flex;
      gap: 6px;
    }

    .icon-row i {
      width: 10px;
      height: 10px;
      border-radius: 3px;
      background: #f3b8a0;
    }

    /* visual 3 — ads management: dashboard mockup */
    .visual-ads {
      background: #e3f7ee;
    }

    .dash-mock {
      width: 84%;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(10, 90, 60, 0.12);
      padding: 14px;
    }

    .dash-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .dash-pill {
      font-size: 10px;
      font-weight: 700;
      color: #1c9d6c;
      background: #dff5e8;
      padding: 3px 9px;
      border-radius: 999px;
    }

    .bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 54px;
    }

    .bars i {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: linear-gradient(180deg, #34c285, #1c9d6c);
    }

    /* ============================================================
   PORTFOLIO / OUR WORK
============================================================ */
    .portfolio {
      padding: 100px 0;
      background: var(--paper-soft);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 40px;
    }

    .portfolio-card {
      display: block;
      cursor: pointer;
      background: var(--paper);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
      transition: transform .25s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-5px);
    }

    .portfolio-thumb {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .portfolio-thumb .tag {
      background: rgba(255, 255, 255, 0.92);
      color: var(--ink);
      font-weight: 700;
      font-size: 13px;
      padding: 6px 16px;
      border-radius: 999px;
    }

    .portfolio-body {
      padding: 20px 22px 24px;
    }

    .portfolio-body h3 {
      font-size: 16.5px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .portfolio-body p {
      font-size: 13.8px;
      color: var(--ink-soft);
      line-height: 1.55;
    }

    .portfolio-thumb.c1 {
      background: linear-gradient(135deg, #cfe0ff, #eef3ff);
    }

    .portfolio-thumb.c2 {
      background: linear-gradient(135deg, #ffd9c4, #fff1e6);
    }

    .portfolio-thumb.c3 {
      background: linear-gradient(135deg, #cdf0dd, #eafcf2);
    }

    .portfolio-thumb.c4 {
      background: linear-gradient(135deg, #f4d2e6, #fdeef6);
    }

    .portfolio-thumb.c5 {
      background: linear-gradient(135deg, #d8d2ff, #f1eeff);
    }

    .portfolio-thumb.c6 {
      background: linear-gradient(135deg, #ffe3b0, #fff6e3);
    }

    .view-all-wrap {
      text-align: center;
    }

    /* ---------- Mobile-only single-row auto-rotating "Our Work" carousel ---------- */
    .work-marquee-viewport {
      display: none;
    }

    .work-marquee-track {
      display: flex;
      width: max-content;
    }

    .work-marquee-track .portfolio-card {
      flex: 0 0 auto;
    }

    /* ============================================================
   MARQUEE TEXT BAND
============================================================ */
    .text-band {
      background: var(--ink);
      overflow: hidden;
      padding: 20px 0;
    }

    .text-track {
      display: flex;
      width: max-content;
      gap: 0;
      animation: scrollLeft 24s linear infinite;
    }

    .text-track span {
      font-family: var(--font-display);
      font-size: clamp(22px, 3.4vw, 34px);
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      padding: 0 22px;
      display: flex;
      align-items: center;
    }

    .text-track span.dot {
      color: var(--accent);
      padding: 0 8px;
    }

    /* ============================================================
   SOCIAL PRESENCE — edge-weighted infinite ribbon gallery
   Largest cards anchor the far left/right; smallest sit in the
   middle. The whole strip drifts continuously — no snapping,
   no controls. Size/rotation are recalculated every frame from
   each card's live position, so the effect is continuous.
============================================================ */
    .reels {
      padding: 100px 0 90px;
      overflow: hidden;
      position: relative;
    }

    /* ---------- Coming soon ribbon (temporary, drop-in section marker) ---------- */
    .coming-soon-ribbon {
      position: absolute;
      top: 50%;
      left: -10%;
      width: 120%;
      transform: translateY(-50%) rotate(-4deg);
      background: linear-gradient(90deg, #0b0c10, #2f5af2);
      color: #fff;
      text-align: center;
      padding: 16px 0;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 3px;
      text-transform: uppercase;
      z-index: 20;
      box-shadow: 0 12px 32px rgba(11, 12, 16, 0.28);
      pointer-events: none;
    }

    .reels .section-head {
      margin-bottom: 0;
    }

    .ribbon-viewport {
      width: 100vw;
      position: relative;
      left: 50%;
      margin-left: -50vw;
      height: var(--ribbon-viewport-h);
      overflow: hidden;
      margin-top: 54px;
    }

    .ribbon-track {
      display: flex;
      align-items: center;
      gap: var(--ribbon-gap);
      height: 100%;
      width: max-content;
      will-change: transform;
    }

    .ribbon-card {
      flex: 0 0 var(--ribbon-card-w);
      width: var(--ribbon-card-w);
      height: var(--ribbon-card-h);
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 18px 40px rgba(11, 12, 16, 0.18);
      transform-origin: 50% 50%;
      will-change: transform;
    }

    .ribbon-card:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 4px;
    }

    .ribbon-thumb {
      position: absolute;
      inset: 0;
    }

    .ribbon-card .ribbon-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 16px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 62%);
    }

    .ribbon-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      line-height: 1.25;
      color: #fff;
    }

    .ribbon-play {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ribbon-thumb.g1 {
      background: linear-gradient(160deg, #3a4a78, #1c2436);
    }

    .ribbon-thumb.g2 {
      background: linear-gradient(160deg, #5a3aa0, #241848);
    }

    .ribbon-thumb.g3 {
      background: linear-gradient(160deg, #1c8f6e, #0d3a2c);
    }

    .ribbon-thumb.g4 {
      background: linear-gradient(160deg, #b05a3a, #4a2414);
    }

    .ribbon-thumb.g5 {
      background: linear-gradient(160deg, #2f5af2, #142560);
    }

    .ribbon-thumb.g6 {
      background: linear-gradient(160deg, #a03a5a, #481424);
    }

    .ribbon-thumb.g7 {
      background: linear-gradient(160deg, #3a9ab0, #143a48);
    }

    .ribbon-thumb.g8 {
      background: linear-gradient(160deg, #b08a2a, #4a3a10);
    }

    /* ---- Reel modal (FLIP expand from the clicked card) ---- */
    .ribbon-overlay {
      position: fixed;
      inset: 0;
      background: rgba(8, 9, 12, 0.72);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .35s ease;
      z-index: 2000;
    }

    .ribbon-overlay.show {
      opacity: 1;
    }

    .ribbon-modal {
      position: relative;
      width: min(420px, 86vw);
      height: min(680px, 82vh);
      border-radius: 30px;
      overflow: hidden;
      background: #0b0c10;
      box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    }

    .ribbon-modal-media {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, #2a2f3d, #0b0c10);
    }

    .ribbon-modal-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ribbon-modal-play {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.94);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
      transition: transform .2s ease;
    }

    .ribbon-modal-play:hover {
      transform: scale(1.06);
    }

    .ribbon-modal-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 26px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
    }

    .ribbon-modal-tag {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .ribbon-modal-info h3 {
      margin-top: 6px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 22px;
      color: #fff;
    }

    .ribbon-close {
      position: fixed;
      top: 28px;
      right: 28px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2001;
      transition: background .2s ease;
    }

    .ribbon-close:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    /* ---------- Schedule a Call modal ---------- */
    .call-overlay {
      position: fixed;
      inset: 0;
      background: rgba(8, 9, 12, 0.6);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s ease;
      z-index: 2100;
      padding: 20px;
    }

    .call-overlay.show {
      display: flex;
      opacity: 1;
    }

    .call-modal {
      position: relative;
      width: min(460px, 100%);
      max-height: 90vh;
      overflow-y: auto;
      background: var(--paper);
      border-radius: var(--radius-lg);
      box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
      padding: 34px 30px 28px;
    }

    .call-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--paper-soft);
      border: 1px solid var(--line);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease;
    }

    .call-close:hover {
      background: var(--line);
    }

    .call-modal h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 22px;
      margin-bottom: 6px;
      padding-right: 30px;
    }

    .call-modal p.call-sub {
      color: var(--ink-soft);
      font-size: 14px;
      margin-bottom: 22px;
      line-height: 1.6;
    }

    .call-field {
      margin-bottom: 16px;
    }

    .call-field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--ink);
    }

    .call-field input,
    .call-field select,
    .call-field textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: var(--paper-soft);
      font-family: inherit;
      font-size: 14px;
      color: var(--ink);
      outline: none;
      transition: border-color .2s ease;
    }

    .call-field input:focus,
    .call-field select:focus,
    .call-field textarea:focus {
      border-color: var(--accent);
    }

    .call-field textarea {
      resize: vertical;
      min-height: 70px;
    }

    .call-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .call-modal .btn {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
    }

    .call-status {
      font-size: 13px;
      margin-top: 12px;
      min-height: 16px;
      text-align: center;
    }

    .call-success {
      text-align: center;
      padding: 20px 4px 6px;
    }

    .call-success-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .call-success h3 {
      padding-right: 0;
    }

    .call-success p {
      color: var(--ink-soft);
      font-size: 14.5px;
      line-height: 1.6;
      margin-top: 8px;
    }

    @media (prefers-reduced-motion: reduce) {
      .ribbon-track {
        transition: none;
      }
    }

    /* ============================================================
   TESTIMONIALS
============================================================ */
    .testimonials {
      padding: 100px 0 60px;
      position: relative;
      overflow: hidden;
    }

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

    /* ---------- Mobile-only single-row auto-rotating testimonial carousel ---------- */
    .test-marquee-viewport {
      display: none;
    }

    .test-marquee-track {
      display: flex;
      width: max-content;
    }

    @keyframes testimonialScroll {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    .test-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 9/16;
      background: linear-gradient(160deg, #2b3245, #11141d);
      box-shadow: var(--shadow-card);
    }

    .test-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .test-card .ctrl {
      position: absolute;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(20, 20, 24, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      z-index: 3;
    }

    .test-card .ctrl-play {
      top: 12px;
      left: 12px;
    }

    .test-card .ctrl-mute {
      top: 12px;
      right: 12px;
    }

    .test-card .overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 30px 14px 14px;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
      color: #fff;
      z-index: 2;
    }

    .test-card .overlay b {
      display: block;
      font-size: 14.5px;
      font-weight: 700;
    }

    .test-card .overlay span {
      font-size: 12px;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .test-card .poster-icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .test-card .poster-icon svg {
      width: 46px;
      height: 46px;
      color: rgba(255, 255, 255, 0.18);
    }

    /* ============================================================
   TEAM
============================================================ */
    .team {
      padding: 110px 0 100px;
      background: var(--paper-soft);
    }

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

    .team-card {
      display: block;
      cursor: pointer;
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 1/1.1;
      background: linear-gradient(160deg, #dbe6ff, #f3f0ff);
      transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
      box-shadow: var(--shadow-card);
    }

    .team-card:hover {
      transform: translateY(-6px) scale(1.045);
      box-shadow: 0 18px 34px rgba(11, 12, 16, 0.16);
      z-index: 2;
    }

    .team-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .team-card .ph {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .team-card .ph svg {
      width: 58px;
      height: 58px;
      color: #aab6e8;
    }

    .team-card .tag {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 12px;
      padding: 10px 14px;
      text-align: left;
      transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), background .25s ease, box-shadow .25s ease;
    }

    .team-card .tag:hover {
      background: #fff;
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 10px 22px rgba(11, 12, 16, 0.18);
    }

    .team-card .tag b {
      display: block;
      font-size: 14.5px;
      font-weight: 700;
    }

    .team-card .tag span {
      font-size: 12.5px;
      color: var(--ink-soft);
      display: block;
      line-height: 1.25;
    }

    .team-card.add-slot {
      background: var(--paper);
      border: 2px dashed var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .team-card.add-slot:hover {
      border-color: var(--ink);
    }

    .team-card.add-slot .plus {
      font-size: 34px;
      color: var(--ink-faint);
      font-weight: 300;
    }

    /* ============================================================
   FAQ
============================================================ */
    .faq {
      padding: 100px 0 90px;
      background: var(--paper-soft);
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 60px;
      align-items: start;
    }

    .faq-wrap h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      max-width: 380px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 22px;
      font-weight: 600;
      font-size: 15.5px;
      text-align: left;
      gap: 16px;
    }

    .faq-q .bar {
      width: 3px;
      height: 18px;
      background: var(--ink);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .faq-q .chev {
      transition: transform .25s ease;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q .chev {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }

    .faq-a p {
      padding: 0 22px 20px 41px;
      color: var(--ink-soft);
      font-size: 14.5px;
      line-height: 1.6;
    }

    /* ============================================================
   FOOTER
============================================================ */
    .footer {
      background: var(--paper);
      padding-top: 90px;
      position: relative;
      overflow: hidden;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr 0.7fr;
      gap: 50px;
      padding-bottom: 60px;
    }

    .footer-top h4 {
      font-size: 13px;
      color: var(--ink-faint);
      font-weight: 600;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .footer-contact p.label {
      color: var(--ink-faint);
      font-size: 14px;
      margin-bottom: 4px;
    }

    .footer-contact p.email {
      font-weight: 700;
      font-size: 17px;
      margin-bottom: 24px;
    }

    .subscribe {
      display: flex;
      align-items: center;
      background: var(--paper-soft);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 6px;
      max-width: 380px;
    }

    .subscribe input {
      flex: 1;
      border: none;
      background: none;
      padding: 10px 16px;
      font-size: 14px;
      outline: none;
      font-family: inherit;
    }

    .footer-links a {
      display: block;
      padding: 7px 0;
      font-size: 14.5px;
      color: var(--ink-soft);
    }

    .footer-links a:hover {
      color: var(--ink);
    }

    .footer-bottom-bar {
      border-top: 1px solid var(--line);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--ink-faint);
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-wordmark {
      text-align: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(60px, 14vw, 170px);
      color: transparent;
      -webkit-text-stroke: 1.5px var(--line);
      letter-spacing: -0.02em;
      line-height: 1;
      padding: 10px 0 0;
      white-space: nowrap;
      overflow: hidden;
    }

    /* Floating action buttons */
    .fab {
      position: fixed;
      bottom: 24px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
      z-index: 900;
      transition: transform .2s ease;
    }

    .fab:hover {
      transform: scale(1.08);
    }

    .fab-whatsapp {
      right: 24px;
      background: #25d366;
    }

    .fab-instagram {
      left: 24px;
      background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .fab svg {
      width: 26px;
      height: 26px;
      color: #fff;
    }

    /* ============================================================
   RESPONSIVE
============================================================ */
    @media (max-width:980px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .portfolio-grid {
        grid-template-columns: 1fr 1fr;
      }

      .test-grid {
        grid-template-columns: 1fr 1fr;
      }

      .team-grid {
        grid-template-columns: 1fr 1fr;
      }

      .faq-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      :root {
        --ribbon-card-w: 172px;
        --ribbon-card-h: 290px;
        --ribbon-gap: 20px;
        --ribbon-viewport-h: 400px;
      }
    }

    @media (max-width:760px) {
      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        padding: 40px 0 50px;
      }

      .hero-photo {
        width: 108px;
        height: 138px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-grid {
        display: none;
      }

      .work-marquee-viewport {
        display: block;
        width: 100vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
        overflow: hidden;
        padding: 4px 0;
      }

      .work-marquee-track {
        gap: 16px;
        padding-left: 16px;
        animation: testimonialScroll 30s linear infinite;
      }

      .work-marquee-track .portfolio-card {
        width: 240px;
      }

      .work-marquee-track .portfolio-thumb {
        height: 130px;
      }

      .test-grid {
        display: none;
      }

      .test-marquee-viewport {
        display: block;
        width: 100vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
        overflow: hidden;
        padding: 4px 0;
      }

      .test-marquee-track {
        gap: 16px;
        padding-left: 16px;
        animation: testimonialScroll 26s linear infinite;
      }

      .test-marquee-track .test-card {
        flex: 0 0 168px;
        width: 168px;
      }

      .team-grid {
        grid-template-columns: 1fr 1fr;
      }

      :root {
        --ribbon-card-w: 132px;
        --ribbon-card-h: 222px;
        --ribbon-gap: 16px;
        --ribbon-viewport-h: 320px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .fab {
        width: 46px;
        height: 46px;
        bottom: 16px;
      }

      .fab svg {
        width: 22px;
        height: 22px;
      }

      .fab-whatsapp {
        right: 16px;
      }

      .fab-instagram {
        left: 16px;
      }

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

      .services,
      .portfolio,
      .reels,
      .testimonials,
      .team,
      .faq {
        padding: 64px 0;
      }
    }

    @media (max-width:480px) {
      .test-grid {
        display: none;
      }

      .test-marquee-track .test-card {
        flex: 0 0 148px;
        width: 148px;
      }

      .work-marquee-track .portfolio-card {
        width: 210px;
      }

      .work-marquee-track .portfolio-thumb {
        height: 115px;
      }

      .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .navbar {
        padding: 8px 8px 8px 16px;
      }

      .logo {
        font-size: 16px;
      }

      .hero-ctas .btn {
        padding: 13px 22px;
        font-size: 14px;
      }

      :root {
        --ribbon-card-w: 104px;
        --ribbon-card-h: 176px;
        --ribbon-gap: 12px;
        --ribbon-viewport-h: 266px;
      }

      .ribbon-close {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
      }
    }

    /* ============================================================
   SUB-PAGE ADDITIONS — detail hero / case study / profile hero
============================================================ */

    /* ---------- Floating 3D abstract shapes (services detail hero) ---------- */
    .detail-hero {
      position: relative;
      padding: 168px 0 110px;
      text-align: center;
      overflow: hidden;
    }

    .detail-hero .container {
      position: relative;
      z-index: 2;
    }

    .detail-hero .section-head {
      margin: 0 auto;
    }

    .detail-hero .eyebrow {
      margin-bottom: 18px;
    }

    .detail-hero h1 {
      font-size: clamp(34px, 5vw, 58px);
      max-width: 760px;
      margin: 0 auto 20px;
    }

    .detail-hero p.lead {
      max-width: 560px;
      margin: 0 auto 36px;
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.65;
    }

    .detail-hero .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .float-shape {
      position: absolute;
      z-index: 1;
      background: linear-gradient(155deg, #262a36, #05060a 70%);
      box-shadow: 0 40px 70px rgba(11, 12, 16, 0.30), inset 0 1px 1px rgba(255, 255, 255, 0.10);
      animation: floatY 7.5s ease-in-out infinite;
      pointer-events: none;
    }

    .float-shape::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.20), transparent 55%);
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
      }

      50% {
        transform: translateY(-16px) rotate(var(--rot, 0deg));
      }
    }

    .fs-1 {
      width: 120px;
      height: 150px;
      border-radius: 38% 62% 55% 45%/52% 42% 58% 48%;
      top: 18%;
      left: 6%;
      --rot: -14deg;
      animation-delay: .2s;
    }

    .fs-2 {
      width: 70px;
      height: 84px;
      border-radius: 50% 50% 42% 58%/58% 48% 52% 42%;
      top: 62%;
      left: 14%;
      --rot: 10deg;
      animation-delay: 1.1s;
    }

    .fs-3 {
      width: 130px;
      height: 160px;
      border-radius: 55% 45% 38% 62%/45% 55% 45% 55%;
      top: 14%;
      right: 6%;
      --rot: 16deg;
      animation-delay: .6s;
    }

    .fs-4 {
      width: 64px;
      height: 78px;
      border-radius: 48% 52% 58% 42%/42% 58% 42% 58%;
      top: 64%;
      right: 16%;
      --rot: -8deg;
      animation-delay: 1.5s;
    }

    @media(max-width:760px) {
      .float-shape {
        display: none;
      }
    }

    /* ---------- Case study / portfolio detail page ---------- */
    .case-hero {
      padding: 160px 0 50px;
      text-align: center;
    }

    .case-hero .eyebrow {
      margin-bottom: 16px;
    }

    .case-hero h1 {
      font-size: clamp(30px, 4.6vw, 50px);
      max-width: 760px;
      margin: 0 auto 16px;
    }

    .case-hero p.lead {
      max-width: 600px;
      margin: 0 auto;
      color: var(--ink-soft);
      font-size: 16.5px;
      line-height: 1.65;
    }

    .case-block {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 60px 0;
    }

    .case-block+.case-block {
      border-top: 1px solid var(--line);
    }

    /* ---------- Service detail pricing section ---------- */
    .svc-section {
      padding: 70px 0 100px;
    }

    .svc-intro {
      max-width: 760px;
      margin: 0 auto 60px;
    }

    .svc-intro h2 {
      font-size: clamp(24px, 3vw, 34px);
      margin-bottom: 14px;
    }

    .svc-intro p {
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.7;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 70px;
    }

    /* Keep social pricing visually similar to website packages when there are only two tiers */
    .svc-section .pricing-grid {
      max-width: 920px;
      margin-left: auto;
      margin-right: auto;
      grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 34px 30px 30px;
      background: var(--paper);
      box-shadow: var(--shadow-card);
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(11, 12, 16, 0.12);
    }

    .pricing-card.popular {
      border-color: var(--ink);
      background: #0b0c10;
      color: #fff;
    }

    .popular-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .pricing-tier-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 8px;
    }

    .pricing-card.popular .pricing-tier-label {
      color: rgba(255, 255, 255, 0.55);
    }

    .pricing-card-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .pricing-card-desc {
      font-size: 13.5px;
      color: var(--ink-soft);
      line-height: 1.55;
      margin-bottom: 22px;
    }

    .pricing-card.popular .pricing-card-desc {
      color: rgba(255, 255, 255, 0.6);
    }

    .pricing-price {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 4px;
    }

    .pricing-price span {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-soft);
    }

    .pricing-card.popular .pricing-price span {
      color: rgba(255, 255, 255, 0.55);
    }

    .pricing-divider {
      border: none;
      border-top: 1px solid var(--line);
      margin: 20px 0;
    }

    .pricing-card.popular .pricing-divider {
      border-color: rgba(255, 255, 255, 0.15);
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 26px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pricing-features li {
      font-size: 13.5px;
      line-height: 1.5;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .pricing-features li::before {
      content: "✓";
      font-weight: 700;
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-card.popular .pricing-features li {
      color: rgba(255, 255, 255, 0.85);
    }

    .pricing-card.popular .pricing-features li::before {
      color: #a5b4fc;
    }

    .pricing-card .btn {
      margin-top: auto;
      width: 100%;
      justify-content: center;
    }

    .pricing-card.popular .btn-primary {
      background: #fff;
      color: #0b0c10;
    }

    .pricing-card.popular .btn-primary:hover {
      background: #f0f0f0;
    }

    /* Pricing table */
    .pricing-table-wrap {
      overflow-x: auto;
      margin-bottom: 60px;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    .pricing-table th,
    .pricing-table td {
      padding: 14px 18px;
      border: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .pricing-table thead {
      background: #0b0c10;
      color: #fff;
    }

    .pricing-table thead th {
      font-weight: 600;
      font-size: 13px;
    }

    .pricing-table tbody tr:nth-child(even) {
      background: var(--paper-soft);
    }

    .pricing-table tbody td:first-child {
      font-weight: 600;
    }

    @media(max-width:900px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
      .svc-section .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:600px) {

      .pricing-table th,
      .pricing-table td {
        padding: 10px 12px;
        font-size: 13px;
      }
    }

    /* Pillar cards */
    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 60px;
    }

    .pillar-card {
      background: var(--paper-soft);
      border-radius: var(--radius-lg);
      padding: 28px;
      border: 1px solid var(--line);
    }

    .pillar-card h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .pillar-card p {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    @media(max-width:700px) {
      .pillar-grid {
        grid-template-columns: 1fr;
      }
    }

    .case-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 54px;
      align-items: flex-start;
      padding: 54px 0;
    }

    .case-row+.case-row {
      border-top: 1px solid var(--line);
    }

    .case-row .case-thumb {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
      background: #fff;
    }

    .case-row .case-thumb .browser-bar {
      display: flex;
      gap: 6px;
      padding: 11px 14px;
      border-bottom: 1px solid var(--line);
    }

    .case-row .case-thumb .browser-bar i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--line);
    }

    .case-row .case-thumb .banner {
      height: 230px;
    }

    .case-row .case-text h2 {
      font-size: clamp(22px, 2.6vw, 30px);
      margin-bottom: 12px;
      line-height: 1.25;
    }

    .case-row .case-text .case-sub {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 26px;
    }

    @media(max-width:760px) {
      .case-row {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .case-row .case-thumb {
        order: -1;
      }
    }

    .case-media {
      background: var(--paper-soft);
      border-radius: 32px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 440px;
      position: relative;
      overflow: hidden;
    }

    .case-media .device-mock {
      width: 100%;
      max-width: 380px;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 30px 60px rgba(11, 12, 16, 0.16);
      overflow: hidden;
    }

    .case-media .device-bar {
      display: flex;
      gap: 6px;
      padding: 12px 14px;
      border-bottom: 1px solid var(--line);
    }

    .case-media .device-bar i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--line);
    }

    .case-media .device-body {
      padding: 22px;
    }

    .case-media .device-thumb {
      height: 160px;
      border-radius: 14px;
      margin-bottom: 16px;
    }

    .case-media .device-line {
      height: 9px;
      border-radius: 6px;
      background: var(--line);
      margin-bottom: 10px;
    }

    .case-media .device-line.w60 {
      width: 60%;
    }

    .case-media .device-line.w40 {
      width: 40%;
    }

    .case-media .tagchip {
      position: absolute;
      top: 24px;
      left: 24px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 12.5px;
      font-weight: 600;
    }

    .case-info h2 {
      font-size: clamp(26px, 3.4vw, 36px);
      margin-bottom: 10px;
    }

    .case-info .case-sub {
      color: var(--ink-soft);
      font-size: 15.5px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .case-features {
      display: flex;
      flex-direction: column;
      margin-bottom: 34px;
    }

    .case-feature {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .case-feature:first-child {
      padding-top: 0;
    }

    .case-feature .num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      color: var(--ink-faint);
      min-width: 30px;
      padding-top: 2px;
    }

    .case-feature .txt h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .case-feature .txt p {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.55;
    }

    @media(max-width:860px) {
      .case-block {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .case-block .case-media {
        order: -1 !important;
      }
    }

    /* ---------- Team profile hero ---------- */
    .profile-hero {
      position: relative;
      padding: 150px 0 90px;
      text-align: center;
      overflow: hidden;
    }

    .profile-hero .container {
      position: relative;
      z-index: 2;
    }

    .profile-photo-wrap {
      width: 280px;
      height: 360px;
      margin: 0 auto 38px;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(11, 12, 16, 0.18);
    }

    .profile-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .profile-hero h1 {
      font-size: clamp(32px, 5.2vw, 54px);
      margin-bottom: 14px;
    }

    .profile-hero .role {
      max-width: 580px;
      margin: 0 auto 32px;
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.65;
    }

    .profile-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    @media(max-width:600px) {
      .profile-photo-wrap {
        width: 220px;
        height: 280px;
        border-radius: 28px;
      }
    }

    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

/* page shell no longer used (split into real pages) but kept harmless */
.page{display:block;}
