    /* ========== FONTS ========== */
    @font-face {
      font-family: 'Gilroy';
      src: url('/fonts/gilroy-Regular.woff2') format('woff2'),
           url('/fonts/gilroy-Regular.woff') format('woff');
      font-weight: 400;
      font-display: swap;
    }
    @font-face {
      font-family: 'Gilroy';
      src: url('/fonts/gilroy-500.woff2') format('woff2'),
           url('/fonts/gilroy-500.woff') format('woff');
      font-weight: 500;
      font-display: swap;
    }
    @font-face {
      font-family: 'Gilroy';
      src: url('/fonts/gilroy-600.woff2') format('woff2'),
           url('/fonts/gilroy-600.woff') format('woff');
      font-weight: 600;
      font-display: swap;
    }
    @font-face {
      font-family: 'Gilroy';
      src: url('/fonts/gilroy-700.woff2') format('woff2'),
           url('/fonts/gilroy-700.woff') format('woff');
      font-weight: 700;
      font-display: swap;
    }

    /* ========== CSS VARIABLES ========== */
    :root {
      color-scheme: light;
      --background: #ffffff;
      --surface: #f0f3f8;
      --text-primary: #0a0a0a;
      --text-secondary: #0b3558;
      --text-muted: #737373;
      --accent: #004eba;
      --accent-bright: #006bff;
      --border: #d4e0ed;
      --border-dark: #272727;
      --neutral-400: #d4e0ed;
      --neutral-500: #a6bbd1;
      --neutral-700: #194870;
      --primary-800: #004796;
      --primary-500: #0099ff;
      --purple-700: #8247f5;
      --brand-yellow: #fbc116;
      --brand-yellow-hover: #e8ad00;
      --icon-chip-bg: #0a0a0a;
      --surface-inverse: #0a0a0a;
      --surface-inverse-text: #ffffff;
      --shadow-floating: 0px 4px 5px 0px rgba(71,103,136,0.04), 0px 4px 10px 0px rgba(71,103,136,0.03), 0px 10px 20px 0px rgba(71,103,136,0.05);
      --shadow-overlay: 0px 4px 5px 0px rgba(71,103,136,0.04), 0px 8px 15px 0px rgba(71,103,136,0.03), 0px 30px 50px 0px rgba(71,103,136,0.08);
      --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    }

    html[data-theme="dark"] {
      color-scheme: dark;
      --background: #0a1120;
      --surface: #121b2e;
      --text-primary: #e8eef8;
      --text-secondary: #a6bbd1;
      --text-muted: #7a8aa0;
      --accent: #4d93ff;
      --accent-bright: #5aa0ff;
      --border: #1c2742;
      --border-dark: #d4e0ed;
      --neutral-400: #243047;
      --neutral-500: #4a5b74;
      --neutral-700: #a6bbd1;
      --primary-800: #5aa0ff;
      --primary-500: #40aaff;
      --purple-700: #a97af8;
      --icon-chip-bg: #243047;
      --surface-inverse: #05080f;
      --surface-inverse-text: #e8eef8;
      --shadow-floating: 0px 4px 12px 0px rgba(0,0,0,0.35), 0px 2px 4px 0px rgba(0,0,0,0.25);
      --shadow-overlay: 0px 10px 40px 0px rgba(0,0,0,0.5), 0px 4px 10px 0px rgba(0,0,0,0.3);
    }

    html, body {
      transition: background-color 0.25s var(--ease-default), color 0.25s var(--ease-default);
    }

    /* ========== RESET ========== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.5;
      color: var(--text-primary);
      background: var(--background);
      overflow-x: hidden;
    }

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

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

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

    ul, ol {
      list-style: none;
    }

    /* ========== UTILITIES ========== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.6s var(--ease-default), transform 0.6s var(--ease-default);
    }

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

    /* ========== EYEBROW BANNER ========== */
    .eyebrow-banner {
      background: var(--surface-inverse);
      color: var(--surface-inverse-text);
      text-align: center;
      padding: 10px 16px;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .eyebrow-banner a {
      color: #ffffff;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .eyebrow-banner a:hover {
      opacity: 0.85;
    }

    /* ========== NAVBAR ========== */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--background);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s var(--ease-default);
    }

    .navbar.scrolled {
      box-shadow: var(--shadow-floating);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .navbar-logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }

    .navbar-logo img {
      height: 32px;
      width: auto;
      display: block;
    }

    .navbar-logo .logo-light,
    .navbar-logo .logo-dark {
      display: none;
    }

    html[data-theme="light"] .navbar-logo .logo-light { display: block; }
    html[data-theme="dark"]  .navbar-logo .logo-dark  { display: block; }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .navbar-links > a,
    .navbar-links > .nav-dropdown-trigger,
    .navbar-links > .nav-dropdown > .nav-dropdown-trigger {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 8px 16px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-secondary);
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }

    .navbar-links > a:hover,
    .navbar-links > .nav-dropdown-trigger:hover,
    .navbar-links > .nav-dropdown > .nav-dropdown-trigger:hover {
      color: var(--text-primary);
      background: var(--surface);
    }

    .nav-dropdown-trigger svg {
      width: 12px;
      height: 12px;
      transition: transform 0.3s;
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-login {
      padding: 8px 20px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-secondary);
      border-radius: 48px;
      transition: color 0.2s;
    }

    .btn-login:hover {
      color: var(--accent);
    }

    .theme-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: var(--text-secondary);
      background: transparent;
      border-radius: 999px;
      transition: color 0.2s, background 0.2s;
    }

    .theme-toggle:hover {
      color: var(--text-primary);
      background: var(--surface);
    }

    .theme-toggle svg {
      width: 20px;
      height: 20px;
    }

    .theme-toggle .icon-sun,
    .theme-toggle .icon-moon {
      display: none;
    }

    html[data-theme="light"] .theme-toggle .icon-moon {
      display: block;
    }

    html[data-theme="dark"] .theme-toggle .icon-sun {
      display: block;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a1405;
      background: var(--brand-yellow);
      border-radius: 48px;
      transition: background 0.2s var(--ease-default);
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: var(--brand-yellow-hover);
    }

    .btn-primary-large {
      padding: 16px 32px;
      font-size: 1rem;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 24px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-primary);
      background: var(--background);
      border: 1.5px solid var(--border);
      border-radius: 48px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--neutral-500);
      box-shadow: var(--shadow-floating);
    }

    .btn-secondary-large {
      padding: 16px 32px;
      font-size: 1rem;
    }

    /* ========== HERO ========== */
    .hero {
      padding: 80px 40px 60px;
      overflow: hidden;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .hero-content {
      max-width: 540px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px 6px 6px;
      background: var(--surface);
      border-radius: 48px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }

    .hero-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: var(--icon-chip-bg);
      color: var(--brand-yellow);
      border-radius: 50%;
    }

    .hero-badge-icon svg {
      width: 16px;
      height: 16px;
    }

    .hero h1 {
      font-size: 4.25rem;
      font-weight: 700;
      line-height: 1.08;
      color: var(--text-primary);
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      line-height: 1.6;
      color: var(--text-secondary);
      margin-bottom: 36px;
      max-width: 460px;
    }

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

    .hero-google-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: var(--background);
      border: 1.5px solid var(--border);
      border-radius: 48px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-primary);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .hero-google-btn:hover {
      border-color: var(--neutral-500);
      box-shadow: var(--shadow-floating);
    }

    .hero-google-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-mockup {
      position: relative;
      width: 100%;
      max-width: 520px;
    }

    /* Xota Schedule mockup */
    .schedule-card {
      background: var(--background);
      border-radius: 16px;
      box-shadow: var(--shadow-overlay);
      overflow: hidden;
      border: 1px solid var(--border);
      font-size: 0.75rem;
    }

    .schedule-tabs {
      display: flex;
      align-items: center;
      gap: 2px;
      padding: 14px 20px 0;
      border-bottom: 1px solid var(--border);
    }

    .schedule-tab {
      position: relative;
      padding: 10px 14px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .schedule-tab.active {
      color: var(--text-primary);
    }

    .schedule-tab.active::after {
      content: '';
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: -1px;
      height: 2.5px;
      background: #fbc116;
      border-radius: 2px 2px 0 0;
    }

    .schedule-weeknav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      border-bottom: 1px solid var(--border);
    }

    .schedule-weeknav-left {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .schedule-nav-btn {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      border: 1px solid var(--border);
      background: var(--background);
    }

    .schedule-week-label {
      padding: 4px 10px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-primary);
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--background);
    }

    .schedule-week-range {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: 82px repeat(5, minmax(0, 1fr));
    }

    .schedule-head,
    .schedule-row {
      display: contents;
    }

    .schedule-head > div,
    .schedule-row > div {
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
    }

    .schedule-head > div:last-child,
    .schedule-row > div:last-child {
      border-right: none;
    }

    .schedule-row:last-child > div {
      border-bottom: none;
    }

    .schedule-head > div {
      padding: 8px 6px;
      background: var(--surface);
      font-weight: 600;
      text-align: center;
    }

    .schedule-head .head-team {
      color: var(--text-muted);
      font-size: 0.625rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      text-align: left;
      padding-left: 12px;
    }

    .schedule-head .head-day {
      display: flex;
      flex-direction: column;
      gap: 1px;
      color: var(--text-primary);
      font-size: 0.6875rem;
    }

    .schedule-head .head-day small {
      color: var(--text-muted);
      font-weight: 500;
      font-size: 0.5625rem;
    }

    .schedule-member {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 10px 10px;
      background: var(--surface);
      min-height: 100px;
    }

    .schedule-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.625rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .schedule-avatar.blue { background: #3a8bff; }
    .schedule-avatar.green { background: #1fa67a; }

    .schedule-member-info {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      min-width: 0;
    }

    .schedule-member-name,
    .schedule-member-role,
    .schedule-member-shifts {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .schedule-member-name {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.1;
    }

    .schedule-member-role {
      font-size: 0.625rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .schedule-member-shifts {
      font-size: 0.5625rem;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .schedule-cell {
      padding: 4px;
      min-height: 100px;
    }

    .shift {
      border-radius: 6px;
      padding: 6px 7px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      color: #fff;
      line-height: 1.2;
    }

    .shift.green { background: #1fa67a; }
    .shift.blue { background: #3a8bff; }
    .shift.teal { background: #13836f; }

    .shift-time {
      font-size: 0.625rem;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .shift-loc {
      font-size: 0.5625rem;
      font-weight: 500;
      opacity: 0.95;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .shift-tag {
      font-size: 0.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      opacity: 0.9;
    }

    /* Floating elements around hero */
    .hero-float {
      position: absolute;
      border-radius: 12px;
      background: var(--background);
      box-shadow: var(--shadow-floating);
      padding: 12px 16px;
      font-size: 0.8125rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: float 6s ease-in-out infinite;
      border: 1px solid var(--border);
    }

    .hero-float-1 {
      top: 20px;
      right: -20px;
      animation-delay: 0s;
    }

    .hero-float-2 {
      bottom: 40px;
      left: -30px;
      animation-delay: -2s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ========== TRUST BAR ========== */
    .trust-bar {
      padding: 48px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .trust-bar-title {
      text-align: center;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 32px;
    }

    .trust-bar-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 64px;
      flex-wrap: wrap;
      padding: 0 40px;
    }

    .trust-logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      transition: opacity 0.3s, filter 0.3s;
      opacity: 0.55;
      filter: grayscale(100%);
    }

    .trust-logo img {
      height: 32px;
      width: auto;
      display: block;
    }

    .trust-logo[data-square] img {
      height: 48px;
    }

    .trust-logo-text {
      font-size: 1.375rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: var(--text-primary);
    }

    /* Source-already-white logos: invert for light mode, keep for dark */
    .trust-logo[data-white] {
      filter: invert(1) grayscale(100%);
    }

    html[data-theme="dark"] .trust-logo[data-white] {
      filter: grayscale(100%);
    }

    .trust-logo:hover {
      opacity: 1;
      filter: grayscale(0%);
    }

    html[data-theme="dark"] .trust-logo {
      filter: grayscale(100%) brightness(0) invert(1);
      opacity: 0.5;
    }

    html[data-theme="dark"] .trust-logo:hover {
      filter: brightness(0) invert(1);
      opacity: 0.85;
    }

    /* ========== SECTION HEADINGS ========== */
    .section-heading {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .section-heading h2 {
      font-size: 3.125rem;
      font-weight: 700;
      line-height: 1.15;
      color: var(--text-primary);
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .section-heading p {
      font-size: 1.125rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    /* ========== FEATURES — ACCORDION SWITCHBACK ========== */
    .features-section {
      padding: 100px 40px;
    }

    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-switchback {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 48px;
    }

    .feature-switchback:last-child {
      margin-bottom: 0;
    }

    .feature-accordion {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .feature-accordion-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .feature-accordion-trigger {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
      padding: 20px 0;
      text-align: left;
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-primary);
      transition: color 0.2s;
    }

    .feature-accordion-trigger:hover {
      color: var(--text-primary);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--text-muted);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .feature-accordion-trigger:hover .feature-icon {
      color: var(--text-primary);
      border-color: var(--text-muted);
    }

    .feature-accordion-trigger.active .feature-icon {
      background: var(--brand-yellow);
      border-color: var(--brand-yellow);
      color: #1a1405;
    }

    .feature-accordion-trigger.active {
      color: var(--text-primary);
    }

    .feature-accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease-default);
    }

    .feature-accordion-body.open {
      max-height: 200px;
    }

    .feature-accordion-body p {
      padding: 0 0 20px 60px;
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .feature-visual {
      position: relative;
      border-radius: 20px;
      background: var(--surface);
      min-height: 460px;
      padding: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mk-frame {
      display: none;
      width: 100%;
    }

    .mk-frame.active {
      display: block;
      animation: mk-fade 0.35s var(--ease-default);
    }

    @keyframes mk-fade {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .mk-card-panel {
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: var(--shadow-floating);
      overflow: hidden;
    }

    .mk-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
    }

    .mk-top-title {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .mk-crumbs {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .mk-crumbs strong {
      color: var(--text-primary);
      font-weight: 700;
    }

    .mk-btn-pill {
      padding: 6px 12px;
      background: var(--brand-yellow);
      color: #1a1405;
      border-radius: 48px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .mk-chip {
      padding: 3px 10px;
      border-radius: 48px;
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .mk-chip-green { background: rgba(31, 166, 122, 0.15); color: #1fa67a; }
    .mk-chip-yellow { background: rgba(251, 193, 22, 0.2); color: #a37a00; }
    .mk-chip-muted { background: var(--surface); color: var(--text-muted); }

    html[data-theme="dark"] .mk-chip-yellow { color: var(--brand-yellow); }

    /* List (Clients) */
    .mk-list { padding: 4px 0; }

    .mk-list-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 18px;
      border-bottom: 1px solid var(--border);
    }
    .mk-list-row:last-child { border-bottom: none; }

    .mk-initial {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.875rem;
      flex-shrink: 0;
    }
    .mk-i-blue { background: #3a8bff; }
    .mk-i-green { background: #1fa67a; }
    .mk-i-teal { background: #13836f; }
    .mk-i-yellow { background: var(--brand-yellow); color: #1a1405; }

    .mk-list-main {
      flex: 1;
      min-width: 0;
    }

    .mk-list-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.2;
    }

    .mk-list-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* Projects grid */
    .mk-grid {
      display: grid;
      gap: 10px;
      padding: 14px;
    }
    .mk-grid-2 { grid-template-columns: 1fr 1fr; }

    .mk-proj {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--background);
    }

    .mk-proj-thumb {
      height: 58px;
      background: linear-gradient(135deg, #3a8bff, #1fa67a);
    }
    .mk-thumb-1 { background: linear-gradient(135deg, #3a8bff, #8247f5); }
    .mk-thumb-2 { background: linear-gradient(135deg, #1fa67a, #13836f); }
    .mk-thumb-3 { background: linear-gradient(135deg, #4a5b74, #1c8a7a); }
    .mk-thumb-4 { background: linear-gradient(135deg, var(--brand-yellow), #f49b00); }

    .mk-proj-title {
      padding: 10px 12px 2px;
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .mk-proj-loc {
      padding: 0 12px;
      font-size: 0.6875rem;
      color: var(--text-muted);
    }

    .mk-proj-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px 12px;
    }

    .mk-stack { display: flex; }

    .mk-av {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.5625rem;
      font-weight: 700;
      border: 2px solid var(--background);
      margin-left: -6px;
    }
    .mk-av:first-child { margin-left: 0; }
    .mk-a-blue { background: #3a8bff; }
    .mk-a-green { background: #1fa67a; }
    .mk-a-teal { background: #13836f; }
    .mk-a-yellow { background: var(--brand-yellow); color: #1a1405; }

    /* Booking detail */
    .mk-booking { padding: 16px 18px 20px; }

    .mk-booking-time {
      padding: 14px 16px;
      background: linear-gradient(135deg, rgba(58,139,255,0.12), rgba(31,166,122,0.12));
      border-radius: 10px;
      margin-bottom: 14px;
    }

    .mk-booking-time-v {
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.01em;
    }

    .mk-booking-date {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .mk-detail-rows {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .mk-detail {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .mk-detail-ic {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--surface);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      flex-shrink: 0;
    }
    .mk-detail-ic svg { width: 16px; height: 16px; }

    .mk-detail-t {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .mk-detail-s {
      font-size: 0.6875rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    /* Recurring */
    .mk-recur-rule {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: linear-gradient(135deg, rgba(251,193,22,0.14), rgba(251,193,22,0.04));
      border-bottom: 1px solid var(--border);
    }

    .mk-recur-rule-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--icon-chip-bg);
      color: var(--brand-yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .mk-recur-rule-icon svg { width: 18px; height: 18px; }

    .mk-recur-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .mk-recur-sub {
      font-size: 0.6875rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .mk-mini-cal {
      padding: 14px 18px 6px;
    }

    .mk-mini-labels,
    .mk-mini-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .mk-mini-labels {
      margin-bottom: 6px;
    }

    .mk-mini-labels span {
      text-align: center;
      font-size: 0.625rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .mk-day {
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      font-size: 0.625rem;
      font-weight: 600;
      color: var(--text-primary);
      background: var(--surface);
    }
    .mk-day.muted {
      color: var(--text-muted);
      opacity: 0.5;
    }
    .mk-day.booked {
      background: var(--brand-yellow);
      color: #1a1405;
      font-weight: 700;
    }
    .mk-day.virtual {
      background: transparent;
      border: 1.5px dashed var(--brand-yellow);
      color: var(--brand-yellow);
      font-weight: 700;
    }
    html[data-theme="light"] .mk-day.virtual {
      color: #a37a00;
      border-color: #d8a000;
    }

    .mk-tpl-list {
      padding: 4px 0;
    }

    .mk-tpl-row {
      display: grid;
      grid-template-columns: 1.4fr 1.3fr 0.6fr auto;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-bottom: 1px solid var(--border);
      font-size: 0.75rem;
    }

    .mk-tpl-row:last-child {
      border-bottom: none;
    }

    .mk-tpl-name {
      font-weight: 700;
      color: var(--text-primary);
    }

    .mk-tpl-recur {
      color: var(--text-muted);
      font-size: 0.6875rem;
    }

    .mk-tpl-time {
      color: var(--text-secondary);
      font-weight: 600;
      font-size: 0.6875rem;
    }

    .mk-legend {
      display: flex;
      justify-content: center;
      gap: 18px;
      padding: 12px 0 4px;
      font-size: 0.6875rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
      margin-top: 10px;
    }

    .mk-legend-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .mk-legend-sw {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 3px;
    }
    .mk-legend-sw.booked { background: var(--brand-yellow); }
    .mk-legend-sw.virtual { background: transparent; border: 1.5px dashed var(--brand-yellow); }

    /* Mobile phone mockup */
    .mk-frame[data-mockup="mobile"] {
      display: none;
      justify-content: center;
    }
    .mk-frame[data-mockup="mobile"].active {
      display: flex;
    }

    .mk-phone {
      width: 260px;
      background: #f7f7f9;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow-overlay);
      border: 8px solid #0a0a0a;
    }

    .mk-phone-head {
      position: relative;
      background: var(--brand-yellow);
      color: #1a1405;
      padding: 20px 16px 18px;
    }

    .mk-phone-date {
      font-size: 0.625rem;
      font-weight: 600;
      opacity: 0.75;
    }

    .mk-phone-hello {
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-top: 4px;
    }

    .mk-phone-avatar {
      position: absolute;
      right: 16px;
      top: 22px;
      width: 22px;
      height: 22px;
      color: #1a1405;
    }
    .mk-phone-avatar svg { width: 22px; height: 22px; }

    .mk-phone-body {
      padding: 12px 14px;
      background: #f7f7f9;
    }

    .mk-phone-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: #ffffff;
      border: 1px solid #ececf0;
      border-radius: 10px;
      margin-bottom: 8px;
      font-size: 0.6875rem;
      color: #444;
    }
    .mk-phone-pill svg { width: 14px; height: 14px; color: #1a1405; }
    .mk-phone-pill strong { color: #0a0a0a; font-weight: 700; }

    .mk-phone-heading {
      font-size: 0.8125rem;
      font-weight: 800;
      color: #0a0a0a;
      margin: 14px 0 8px;
    }

    .mk-phone-shift {
      display: flex;
      gap: 10px;
      padding: 10px;
      background: #ffffff;
      border: 1px solid #ececf0;
      border-radius: 10px;
      margin-bottom: 8px;
    }

    .mk-phone-shift-thumb {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .mk-phone-shift-main {
      min-width: 0;
    }

    .mk-phone-shift-title {
      font-size: 0.75rem;
      font-weight: 800;
      color: #0a0a0a;
    }

    .mk-phone-shift-addr {
      font-size: 0.625rem;
      color: #555;
      margin-top: 2px;
    }

    .mk-phone-shift-meta {
      font-size: 0.625rem;
      color: #777;
      margin-top: 4px;
    }

    .mk-phone-tabs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 10px 0 14px;
      background: #ffffff;
      border-top: 1px solid #ececf0;
    }

    .mk-phone-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      color: #8a8a90;
    }
    .mk-phone-tab svg { width: 18px; height: 18px; }
    .mk-phone-tab small { font-size: 0.5625rem; font-weight: 600; }
    .mk-phone-tab.active { color: #3a8bff; }

    /* ========== AUDIENCES (Admin / Client / Operative) ========== */
    .audiences-section {
      padding: 100px 40px;
      background: var(--surface);
    }

    .audiences-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .audience-card {
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s, transform 0.3s;
    }

    .audience-card:hover {
      box-shadow: var(--shadow-floating);
      transform: translateY(-4px);
    }

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

    .audience-devices {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      background: var(--surface);
      border-radius: 999px;
      color: var(--text-secondary);
    }

    .audience-devices svg {
      width: 14px;
      height: 14px;
    }

    .audience-devices small {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .audience-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .audience-icon {
      background: var(--icon-chip-bg);
      color: var(--brand-yellow);
    }

    .audience-icon svg {
      width: 26px;
      height: 26px;
    }

    .audience-name {
      font-size: 1.375rem;
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }

    .audience-who {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 20px;
    }

    .audience-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .audience-list-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.45;
    }

    .audience-list-item svg {
      width: 16px;
      height: 16px;
      margin-top: 3px;
      flex-shrink: 0;
      color: var(--text-primary);
    }

    .audience-list-item {
      min-height: calc(1.45em * 2);
    }

    /* ========== MORE THAN SCHEDULING ========== */
    .more-section {
      padding: 100px 40px;
    }

    .more-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .more-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    }

    .more-card:hover {
      box-shadow: var(--shadow-floating);
      transform: translateY(-4px);
      border-color: var(--brand-yellow);
    }

    .more-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--icon-chip-bg);
      color: var(--brand-yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .more-card-icon svg {
      width: 24px;
      height: 24px;
    }

    .more-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .more-card p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ========== PRICING ========== */
    .pricing-section {
      padding: 100px 40px;
      background: var(--surface);
    }

    .pricing-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing-slider-card {
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px 32px;
      max-width: 640px;
      margin: 0 auto 48px;
      box-shadow: var(--shadow-floating);
    }

    .pricing-slider-label {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .pricing-slider-label-text {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .pricing-slider-count {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-primary);
    }

    .pricing-slider-count-tag {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-muted);
      margin-left: 6px;
    }

    .pricing-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: var(--surface);
      outline: none;
      border: 1px solid var(--border);
      margin-bottom: 8px;
    }

    .pricing-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--brand-yellow);
      border: 3px solid #1a1405;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      transition: transform 0.15s;
    }
    .pricing-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }

    .pricing-slider::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--brand-yellow);
      border: 3px solid #1a1405;
      cursor: pointer;
    }

    .pricing-slider-range {
      display: flex;
      justify-content: space-between;
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

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

    .pricing-card {
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-floating);
    }

    .pricing-card.popular {
      border-color: var(--brand-yellow);
      box-shadow: 0 0 0 3px rgba(251, 193, 22, 0.12);
    }

    .pricing-popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--brand-yellow);
      color: #1a1405;
      padding: 4px 16px;
      border-radius: 48px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .pricing-coming-soon-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--icon-chip-bg);
      color: var(--brand-yellow);
      padding: 4px 14px;
      border-radius: 48px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .pricing-coming-soon-badge::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--brand-yellow);
      border-radius: 50%;
      animation: cs-pulse 1.8s ease-in-out infinite;
    }

    .pricing-card.coming-soon {
      border-color: var(--border);
      opacity: 0.9;
    }

    .pricing-card.coming-soon .pricing-feature {
      color: var(--text-muted);
    }

    .pricing-card.coming-soon .pricing-feature:first-child {
      color: var(--text-secondary);
    }

    .pricing-card.coming-soon .pricing-check {
      color: var(--text-muted);
    }

    .pricing-plan {
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .pricing-plan-name {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }

    .pricing-plan-sub {
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-bottom: 22px;
      line-height: 1.4;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 4px;
    }

    .pricing-price .currency {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .pricing-price .amount {
      font-size: 2.75rem;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .pricing-price .period {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-left: 4px;
    }

    .pricing-band-info {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 22px;
    }
    .pricing-band-info strong { color: var(--text-primary); font-weight: 700; }

    .pricing-card .btn-primary {
      width: 100%;
      margin-bottom: 24px;
    }

    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 1px solid var(--border);
      padding-top: 22px;
    }

    .pricing-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.45;
    }

    .pricing-check {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      color: var(--text-primary);
      margin-top: 3px;
    }

    .pricing-trial-note {
      text-align: center;
      margin-top: 40px;
      font-size: 0.875rem;
      color: var(--text-muted);
    }
    .pricing-trial-note strong { color: var(--text-primary); font-weight: 700; }

    /* ========== CUSTOMER STORIES (Dark) ========== */
    .stories-section {
      padding: 100px 40px;
      background: var(--surface-inverse);
      color: var(--surface-inverse-text);
    }

    .stories-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .stories-heading {
      text-align: center;
      margin-bottom: 56px;
    }

    .stories-heading h2 {
      font-size: 3.125rem;
      font-weight: 700;
      line-height: 1.15;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .stories-heading p {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.65);
    }

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

    .story-card {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: background 0.3s, transform 0.3s;
    }

    .story-card:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-4px);
    }

    .story-stat {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent-bright);
      margin-bottom: 8px;
      line-height: 1.1;
    }

    .story-stat-label {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 20px;
    }

    .story-logo {
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .story-quote {
      font-size: 1.0625rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
      font-style: italic;
      margin-bottom: 20px;
    }

    /* ========== SECURITY BANNER ========== */
    .security-section {
      padding: 80px 40px;
    }

    .security-inner {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--surface);
      border-radius: 20px;
      padding: 56px 64px;
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .security-content {
      flex: 1;
    }

    .security-content h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .security-content p {
      font-size: 1.0625rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .security-badges {
      display: flex;
      align-items: center;
      gap: 24px;
      flex: 0 0 auto;
    }

    .security-badge {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: var(--background);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-floating);
    }

    .security-badge svg {
      width: 32px;
      height: 32px;
      color: var(--accent);
    }

    /* ========== CTA SECTION ========== */
    .cta-section {
      padding: 120px 40px;
      text-align: center;
      background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
    }

    .cta-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-size: 3.125rem;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 1.125rem;
      color: var(--text-secondary);
      margin-bottom: 36px;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ========== FOOTER ========== */
    .footer {
      padding: 64px 40px 32px;
      background: var(--surface-inverse);
      color: var(--surface-inverse-text);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }

    .footer-logo img {
      height: 36px;
      width: auto;
      display: block;
    }

    .footer-brand p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    .footer-downloads {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 8px;
    }

    .footer-download-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.8);
      transition: border-color 0.2s;
      width: fit-content;
    }

    .footer-download-btn:hover {
      border-color: rgba(255, 255, 255, 0.5);
    }

    .footer-download-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .footer-col h4 {
      font-size: 0.8125rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col li a {
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.2s;
    }

    .footer-col li a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-bottom-left {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.4);
    }

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

    .footer-bottom-links a {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: rgba(255, 255, 255, 0.8);
    }

    /* ========== MOBILE MENU ========== */
    .mobile-menu-btn {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: var(--text-primary);
    }

    .mobile-menu-btn svg {
      width: 24px;
      height: 24px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1200px) {
      .hero h1 { font-size: 3.5rem; }
      .section-heading h2,
      .stories-heading h2,
      .cta-section h2 { font-size: 2.5rem; }
    }

    @media (max-width: 992px) {
      .navbar-links { display: none; }
      .mobile-menu-btn { display: flex; }
      .navbar-actions .btn-login,
      .navbar-actions .btn-primary { display: none; }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-subtitle { margin-left: auto; margin-right: auto; }

      .hero-actions { justify-content: center; }

      .hero-visual { max-width: 520px; margin: 0 auto; }

      .feature-switchback {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .more-grid, .pricing-cards, .stories-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .security-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
      }

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

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .hero { padding: 48px 20px 40px; }
      .hero h1 { font-size: 2.75rem; }
      .features-section,
      .audiences-section,
      .more-section,
      .pricing-section,
      .stories-section,
      .cta-section { padding: 64px 20px; }
      .security-section { padding: 48px 20px; }
      .footer { padding: 48px 20px 24px; }
      .navbar-inner { padding: 0 20px; height: 60px; }

      .schedule-card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .schedule-grid { grid-template-columns: 84px repeat(5, minmax(76px, 1fr)); min-width: 464px; font-size: 0.625rem; }
      .schedule-cell, .schedule-member { min-height: 88px; }
      .schedule-tab { padding: 10px 10px; font-size: 0.75rem; }
      .schedule-weeknav { padding: 8px 12px; }
      .schedule-week-range { font-size: 0.75rem; }

      .section-heading h2,
      .stories-heading h2,
      .cta-section h2,
      .security-content h2 { font-size: 2rem; }

      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 2.25rem; }
      .hero-actions { flex-direction: column; width: 100%; }
      .hero-actions .btn-primary,
      .hero-actions .hero-google-btn { width: 100%; justify-content: center; }
      .cta-actions { flex-direction: column; }
      .cta-actions .btn-primary,
      .cta-actions .btn-secondary { width: 100%; }
    }

    /* ========== REDUCED MOTION ========== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ========== MOBILE MENU ========== */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 1100;
      visibility: hidden;
      pointer-events: none;
    }
    .mobile-menu.is-open {
      visibility: visible;
      pointer-events: auto;
    }
    .mobile-menu-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.5);
      opacity: 0;
      transition: opacity 0.25s var(--ease-default);
    }
    .mobile-menu.is-open .mobile-menu-backdrop { opacity: 1; }

    .mobile-menu-panel {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: min(380px, 92vw);
      background: var(--background);
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.28s var(--ease-default);
      box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
      overscroll-behavior: contain;
    }
    .mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .mobile-menu-logo { display: inline-flex; align-items: center; }
    .mobile-menu-logo img { height: 28px; width: auto; }
    .mobile-menu-logo .logo-light { display: block; }
    .mobile-menu-logo .logo-dark { display: none; }
    [data-theme="dark"] .mobile-menu-logo .logo-light { display: none; }
    [data-theme="dark"] .mobile-menu-logo .logo-dark { display: block; }

    .mobile-menu-close {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--text-primary);
    }
    .mobile-menu-close:hover { background: var(--surface); }
    .mobile-menu-close svg { width: 22px; height: 22px; }

    .mobile-menu-body {
      flex: 1;
      overflow-y: auto;
      padding: 12px 12px 24px;
    }

    .mobile-menu-link,
    .mobile-menu-group > summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 12px;
      font-size: 1.0625rem;
      font-weight: 600;
      color: var(--text-primary);
      text-decoration: none;
      border-radius: 10px;
      cursor: pointer;
      list-style: none;
    }
    .mobile-menu-group > summary::-webkit-details-marker { display: none; }
    .mobile-menu-link:hover,
    .mobile-menu-group > summary:hover { background: var(--surface); }
    .mobile-menu-group > summary svg {
      width: 12px;
      height: 8px;
      transition: transform 0.2s var(--ease-default);
      color: var(--text-muted);
    }
    .mobile-menu-group[open] > summary svg { transform: rotate(180deg); }

    .mobile-menu-sublabel {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      padding: 14px 12px 6px;
    }
    .mobile-menu-group > a {
      display: block;
      padding: 11px 12px 11px 20px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9375rem;
      border-radius: 8px;
    }
    .mobile-menu-group > a:hover {
      background: var(--surface);
      color: var(--text-primary);
    }

    .mobile-menu-footer {
      padding: 16px 20px 20px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }
    .mobile-menu-login {
      display: block;
      text-align: center;
      padding: 12px;
      color: var(--text-primary);
      font-weight: 600;
      text-decoration: none;
      border-radius: 10px;
    }
    .mobile-menu-login:hover { background: var(--surface); }

    body.menu-open { overflow: hidden; }

    /* Hide the eyebrow banner on mobile (space is tight) */
    @media (max-width: 992px) {
      .eyebrow-banner { display: none; }
    }

/* ========== NAV DROPDOWN ========== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  min-width: 400px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-overlay);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s var(--ease-default), transform 0.18s var(--ease-default), visibility 0.18s;
  z-index: 1010;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-section-label {
  padding: 6px 14px 10px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.nav-dropdown-section-label + .nav-dropdown-item {
  margin-top: 0;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 6px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-primary);
  transition: background 0.15s;
  position: relative;
}

.nav-dropdown-item:hover {
  background: var(--surface);
}

.nav-dropdown-item > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.nav-dropdown-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.nav-dropdown-icon svg {
  width: 20px;
  height: 20px;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
}

.nav-dropdown-item-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.nav-dropdown-item-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ========== PRODUCT PAGE TEMPLATE ========== */
.product-hero {
  padding: 64px 40px 80px;
  background: var(--background);
  position: relative;
}

.product-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-crumbs a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.product-crumbs a:hover { color: var(--text-primary); }

.product-crumbs strong {
  color: var(--text-primary);
}

.product-hero h1 {
  font-size: 3.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.product-hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

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

.product-hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Feature blocks */
.product-feature {
  padding: 80px 40px;
}

.product-feature:nth-of-type(odd) { background: var(--surface); }
.product-feature:nth-of-type(even) { background: var(--background); }

.product-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-feature-alt .product-feature-inner {
  grid-template-columns: 1fr 1fr;
}

.product-feature-alt .product-feature-visual { order: -1; }

.product-feature-copy {
  max-width: 520px;
}

.product-feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.product-feature h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.product-feature-copy p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.product-feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.product-feature-bullets li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--text-primary);
  margin-top: 3px;
}

.product-usp-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(251, 193, 22, 0.12);
  border: 1px solid rgba(251, 193, 22, 0.4);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 18px;
}

.product-usp-callout::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fbc116'%3E%3Cpath d='M12 2.5l1.65 6.85L20.5 11l-6.85 1.65L12 19.5l-1.65-6.85L3.5 11l6.85-1.65L12 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.product-feature-visual {
  display: flex;
  justify-content: center;
}

/* USP row */
.product-usps {
  padding: 80px 40px;
  background: var(--surface-inverse);
  color: var(--surface-inverse-text);
}

.product-usps-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product-usps-heading {
  text-align: center;
  margin-bottom: 40px;
}

.product-usps-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--surface-inverse-text);
  letter-spacing: -0.01em;
}

.product-usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-usp {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.product-usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 14px;
  background: var(--brand-yellow);
  color: #1a1405;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-usp-icon svg { width: 24px; height: 24px; }

.product-usp h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--surface-inverse-text);
  margin-bottom: 6px;
}

.product-usp p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Cross-link strip */
.product-cross {
  padding: 80px 40px;
  background: var(--background);
}

.product-cross-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product-cross-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.product-cross-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-cross-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  color: var(--text-primary);
}

.product-cross-card:hover {
  border-color: var(--brand-yellow);
  background: var(--surface);
  transform: translateY(-3px);
}

.product-cross-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-cross-card-icon svg { width: 18px; height: 18px; }

.product-cross-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.product-cross-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Product-page mockups (mp-*) */
.mp-frame {
  width: 100%;
  max-width: 540px;
}

.mp-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-floating);
  overflow: hidden;
}

.mp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.mp-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mp-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-primary);
}

.mp-chip {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mp-chip-green { background: rgba(31,166,122,0.15); color: #1fa67a; }
.mp-chip-yellow { background: rgba(251,193,22,0.2); color: #a37a00; }
html[data-theme="dark"] .mp-chip-yellow { color: var(--brand-yellow); }
.mp-chip-blue { background: rgba(58,139,255,0.15); color: #3a8bff; }
.mp-chip-muted { background: var(--surface); color: var(--text-muted); }

.mp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.mp-field-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mp-field-value {
  font-size: 0.8125rem;
  color: var(--text-primary);
  font-weight: 600;
}

.mp-tabs {
  display: flex;
  gap: 2px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.mp-tab {
  padding: 12px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

.mp-tab.active {
  color: var(--text-primary);
}

.mp-tab.active::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px; bottom: -1px;
  height: 2.5px;
  background: var(--brand-yellow);
  border-radius: 2px 2px 0 0;
}

.mp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}

.mp-row:last-child { border-bottom: none; }

.mp-initial {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: #3a8bff;
  flex-shrink: 0;
}

.mp-row-main { flex: 1; min-width: 0; }

.mp-row-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-row-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mp-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  background: rgba(31,166,122,0.12);
  color: #1fa67a;
  font-size: 0.6875rem;
  font-weight: 700;
}

.mp-toggle::before {
  content: '';
  width: 22px;
  height: 12px;
  border-radius: 999px;
  background: #1fa67a;
  position: relative;
}

.mp-toggle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  margin-left: -18px;
  margin-right: 6px;
}

/* Quotes kanban */
.mp-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-floating);
}

.mp-kanban-col {
  background: var(--surface);
  border-radius: 10px;
  padding: 10px 8px;
  min-height: 200px;
}

.mp-kanban-col-title {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding: 0 4px;
}

.mp-kanban-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 0.6875rem;
}

.mp-kanban-card-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.mp-kanban-card-amount {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 0.8125rem;
}

.mp-kanban-card-meta {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Conversion flow */
.mp-convert {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.mp-convert-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-yellow);
  padding: 4px 0;
}

.mp-convert-arrow svg {
  width: 18px;
  height: 18px;
}

/* Project hub tabs row */
.mp-hub-booking-row {
  display: grid;
  grid-template-columns: 50px 1fr 70px 70px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}

.mp-hub-booking-row:last-child { border-bottom: none; }

.mp-hub-booking-date {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.6875rem;
}

.mp-hub-booking-title {
  font-weight: 600;
  color: var(--text-primary);
}

.mp-hub-booking-member {
  color: var(--text-muted);
  font-size: 0.6875rem;
}

/* Mobile breakpoint for product pages */
@media (max-width: 900px) {
  .product-hero-inner,
  .product-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-feature-alt .product-feature-visual { order: 0; }
  .product-hero h1 { font-size: 2.5rem; }
  .product-feature h2 { font-size: 1.75rem; }
  .product-usps-grid { grid-template-columns: 1fr; }
  .product-cross-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== SCHEDULING-SPECIFIC MOCKUPS ========== */

/* Richer schedule calendar mockup (uses .mk-* primitives from home page where possible) */
.mp-sched {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-floating);
  overflow: hidden;
  font-size: 0.75rem;
}

.mp-sched-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.mp-sched-head-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-sched-weeknav-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.mp-sched-week-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.mp-sched-range {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mp-sched-grid {
  display: grid;
  grid-template-columns: 108px repeat(4, minmax(0, 1fr));
}

.mp-sched-grid-head,
.mp-sched-grid-row {
  display: contents;
}

.mp-sched-grid-head > div,
.mp-sched-grid-row > div {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.mp-sched-grid-head > div:last-child,
.mp-sched-grid-row > div:last-child {
  border-right: none;
}

.mp-sched-grid-row:last-child > div {
  border-bottom: none;
}

.mp-sched-grid-head > div {
  padding: 8px 6px;
  background: var(--surface);
  font-weight: 700;
  text-align: center;
}

.mp-sched-head-team {
  color: var(--text-muted);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left !important;
  padding-left: 12px !important;
}

.mp-sched-head-day {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--text-primary);
  font-size: 0.6875rem;
}

.mp-sched-head-day small {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.5625rem;
}

.mp-sched-head-day.bank-holiday {
  background: rgba(251, 193, 22, 0.15) !important;
  color: #a37a00;
}

html[data-theme="dark"] .mp-sched-head-day.bank-holiday {
  color: var(--brand-yellow);
}

.mp-sched-head-day.bank-holiday small {
  color: inherit;
  opacity: 0.7;
}

.mp-sched-member {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 10px;
  background: var(--surface);
  min-height: 96px;
}

.mp-sched-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mp-sched-avatar.blue { background: #3a8bff; }
.mp-sched-avatar.green { background: #1fa67a; }
.mp-sched-avatar.teal { background: #13836f; }
.mp-sched-avatar.purple { background: #8247f5; }

.mp-sched-member-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-sched-member-role {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-sched-cell {
  padding: 4px;
  min-height: 96px;
  position: relative;
}

.mp-sched-cell.weekend {
  background: rgba(58, 139, 255, 0.04);
}

.mp-sched-cell.bank-holiday {
  background: rgba(251, 193, 22, 0.08);
}

.mp-shift {
  border-radius: 6px;
  padding: 6px 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}

.mp-shift:last-child { margin-bottom: 0; }

.mp-shift.green { background: #1fa67a; }
.mp-shift.blue { background: #3a8bff; }
.mp-shift.teal { background: #13836f; }
.mp-shift.purple { background: #8247f5; }

.mp-shift.travel {
  background: linear-gradient(135deg, #13836f, #1fa67a);
  opacity: 0.85;
}

.mp-shift.absence {
  background: rgba(130, 71, 245, 0.2);
  color: #8247f5;
  border: 1px dashed rgba(130, 71, 245, 0.5);
}

html[data-theme="dark"] .mp-shift.absence {
  color: #c9b3f8;
}

.mp-shift.virtual {
  background: rgba(251, 193, 22, 0.12);
  color: #a37a00;
  border: 1.5px dashed var(--brand-yellow);
}

html[data-theme="dark"] .mp-shift.virtual {
  color: var(--brand-yellow);
}

.mp-shift.dragging {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(251, 193, 22, 0.25);
  animation: mp-pulse 2s ease-in-out infinite;
}

@keyframes mp-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(251, 193, 22, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(251, 193, 22, 0.08); }
}

.mp-shift.ghost {
  background: transparent;
  border: 2px dashed var(--brand-yellow);
  color: var(--text-muted);
  opacity: 0.85;
}

.mp-shift-time {
  font-size: 0.625rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-shift-loc {
  font-size: 0.5625rem;
  font-weight: 500;
  opacity: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-shift-tag {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

/* Drag-and-drop illustration */
.mp-drag-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--brand-yellow);
  pointer-events: none;
  z-index: 2;
}

.mp-drag-label {
  position: absolute;
  padding: 4px 10px;
  background: var(--brand-yellow);
  color: #1a1405;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-floating);
  z-index: 3;
}

/* Filter chip row on top of calendar */
.mp-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.mp-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mp-filter-pill.active {
  background: var(--icon-chip-bg);
  border-color: var(--icon-chip-bg);
  color: var(--brand-yellow);
  font-weight: 800;
}

.mp-filter-pill-star {
  color: var(--brand-yellow);
  font-size: 0.8125rem;
  line-height: 1;
}

/* Lifecycle stepper */
.mp-lifecycle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.mp-lifecycle-step {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--surface);
  color: var(--text-muted);
}

.mp-lifecycle-step.done {
  background: rgba(31, 166, 122, 0.15);
  color: #1fa67a;
}

.mp-lifecycle-step.current {
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
}

.mp-lifecycle-arrow {
  color: var(--text-muted);
  font-size: 0.625rem;
  opacity: 0.6;
}

/* Photo thumbnails row — simulated "photo of clean space" */
.mp-photos-wrap {
  padding: 14px 18px 4px;
}

.mp-photos-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mp-photos-label-text {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.mp-photos-label-count {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.mp-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mp-photo {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mp-photo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mp-photo-caption {
  position: absolute;
  left: 4px;
  bottom: 4px;
  padding: 2px 6px;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 600;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.mp-photo-caption svg {
  width: 8px;
  height: 8px;
  display: inline-block;
}

.mp-photo-add {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}

.mp-photo-add:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
}

.mp-photo-add svg {
  width: 20px;
  height: 20px;
}

/* Small features grid (3-up under main blocks) */
.product-mini-features {
  padding: 40px 40px 80px;
  background: var(--background);
}

.product-mini-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-mini-feature {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.product-mini-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-mini-feature-icon svg { width: 20px; height: 20px; }

.product-mini-feature h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.product-mini-feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .product-mini-features-inner { grid-template-columns: 1fr; }
  .mp-sched-grid { grid-template-columns: 92px repeat(4, minmax(80px, 1fr)); font-size: 0.625rem; min-width: 420px; }
  .mp-sched { overflow-x: auto; }
}

/* ========== HR & ATTENDANCE MOCKUPS ========== */

/* Reusable phone frame with modal-style content */
.mp-phone-frame {
  width: 240px;
  background: #f7f7f9;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-overlay);
  border: 8px solid #0a0a0a;
  position: relative;
  flex-shrink: 0;
}

.mp-phone-bar {
  background: var(--brand-yellow);
  color: #1a1405;
  padding: 14px 16px 12px;
  position: relative;
}

.mp-phone-bar-title {
  font-size: 0.875rem;
  font-weight: 800;
}

.mp-phone-bar-sub {
  font-size: 0.625rem;
  font-weight: 600;
  opacity: 0.7;
}

.mp-phone-bar-back {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a1405;
  opacity: 0.7;
}
.mp-phone-bar-back svg { width: 14px; height: 14px; }

.mp-phone-content {
  padding: 14px 14px 18px;
  background: #f7f7f9;
  min-height: 200px;
}

.mp-phone-field {
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.mp-phone-field-label {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a8a90;
  margin-bottom: 4px;
}

.mp-phone-field-value {
  font-size: 0.75rem;
  color: #0a0a0a;
  font-weight: 600;
}

.mp-phone-field-value-muted {
  color: #8a8a90;
  font-weight: 500;
}

.mp-phone-submit {
  display: block;
  width: 100%;
  padding: 10px;
  background: #1a1405;
  color: #fff;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  margin-top: 6px;
}

/* Leave balance "dial" card used on mobile */
.mp-phone-balance {
  padding: 18px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
}

.mp-phone-balance-big {
  font-size: 2rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mp-phone-balance-unit {
  font-size: 0.75rem;
  color: #555;
  margin-top: 2px;
}

.mp-phone-balance-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ececf0;
}

.mp-phone-balance-split-val {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #0a0a0a;
}
.mp-phone-balance-split-lab {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a8a90;
  margin-top: 2px;
}

.mp-phone-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.6875rem;
}

.mp-phone-history-main {
  color: #0a0a0a;
  font-weight: 700;
}
.mp-phone-history-sub {
  color: #8a8a90;
  font-size: 0.625rem;
  margin-top: 2px;
  font-weight: 500;
}

.mp-phone-history-chip {
  font-size: 0.5625rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mp-phone-history-chip.approved { background: rgba(31,166,122,0.15); color: #1fa67a; }
.mp-phone-history-chip.requested { background: rgba(251,193,22,0.22); color: #a37a00; }
.mp-phone-history-chip.sick { background: rgba(130,71,245,0.15); color: #8247f5; }

/* Admin Absences approval table — desktop */
.mp-absence-table-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr auto;
  gap: 8px;
  padding: 8px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.mp-absence-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr auto;
  gap: 8px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}

.mp-absence-row:last-child { border-bottom: none; }

.mp-absence-row.highlight {
  background: rgba(251, 193, 22, 0.08);
  outline: 2px solid rgba(251, 193, 22, 0.4);
  outline-offset: -2px;
}

.mp-absence-who {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-absence-type {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mp-absence-type.holiday { background: rgba(130,71,245,0.15); color: #8247f5; }
.mp-absence-type.sickness { background: rgba(234,67,53,0.15); color: #d94332; }

.mp-absence-dates {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mp-absence-days {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-absence-approve {
  padding: 5px 10px;
  background: var(--brand-yellow);
  color: #1a1405;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Overlap warning pill */
.mp-overlap-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(251, 193, 22, 0.1);
  border-top: 1px solid rgba(251, 193, 22, 0.25);
  font-size: 0.6875rem;
  color: var(--text-secondary);
}

.mp-overlap-warning svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand-yellow);
}

.mp-overlap-warning strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Approval flow (phone -> admin card, stacked vertically) */
.mp-flow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mp-flow-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-yellow);
}

.mp-flow-arrow-svg {
  width: 38px;
  height: 38px;
  background: var(--brand-yellow);
  color: #1a1405;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-floating);
}

.mp-flow-arrow-svg svg { width: 18px; height: 18px; transform: rotate(90deg); }

.mp-flow-arrow-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Absence-on-schedule small mockup */
.mp-absence-sched {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-floating);
  overflow: hidden;
}

/* ========== MOBILE APP PAGE ========== */

/* Smaller phone for the 3-role hero */
.mp-phone-mini {
  width: 170px;
  background: #f7f7f9;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-overlay);
  border: 6px solid #0a0a0a;
  position: relative;
  flex-shrink: 0;
  font-size: 10px;
}

.mp-phone-mini .mp-phone-bar {
  padding: 10px 12px 8px;
}

.mp-phone-mini .mp-phone-bar-title {
  font-size: 0.75rem;
  font-weight: 800;
}

.mp-phone-mini .mp-phone-bar-sub {
  font-size: 0.5625rem;
}

.mp-phone-mini .mp-phone-content {
  padding: 10px 8px 14px;
  min-height: 180px;
}

.mp-phone-mini-stat {
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 6px;
  padding: 7px 9px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.5625rem;
}

.mp-phone-mini-stat-label {
  color: #555;
  font-weight: 500;
}

.mp-phone-mini-stat-val {
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.75rem;
}

.mp-phone-mini-list-head {
  font-size: 0.5rem;
  font-weight: 800;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 8px 2px 4px;
}

.mp-phone-mini-item {
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 6px;
  padding: 6px 8px;
  margin-bottom: 4px;
}

.mp-phone-mini-item-title {
  font-size: 0.6125rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.1;
}

.mp-phone-mini-item-sub {
  font-size: 0.5rem;
  color: #666;
  margin-top: 2px;
  font-weight: 500;
}

/* 3-phone row */
.mp-role-trio {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.mp-role-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mp-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mp-role-tag.admin {
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
}

.mp-role-tag.operative {
  background: rgba(58, 139, 255, 0.15);
  color: #3a8bff;
}

.mp-role-tag.client {
  background: rgba(31, 166, 122, 0.15);
  color: #1fa67a;
}

/* Big clock-in button in operative mockup */
.mp-clock-in {
  background: linear-gradient(135deg, #1fa67a, #13836f);
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mp-clock-in svg {
  width: 16px;
  height: 16px;
}

.mp-clock-in-title {
  font-size: 0.8125rem;
}

.mp-clock-in-sub {
  font-size: 0.625rem;
  opacity: 0.85;
  font-weight: 600;
  margin-top: 2px;
}

/* Currently clocked-in pill (operative home) */
.mp-clocked-in-pill {
  background: linear-gradient(135deg, #1fa67a, #13836f);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 0.6875rem;
}

.mp-clocked-in-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mp-clocked-in-timer {
  font-size: 0.9375rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.mp-clocked-in-loc {
  font-size: 0.5625rem;
  opacity: 0.85;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mp-clocked-in-btn {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Role detail block layout */
.product-feature[data-role="admin"] .product-feature-eyebrow { color: var(--text-muted); }
.product-feature[data-role="operative"] .product-feature-eyebrow { color: var(--text-muted); }
.product-feature[data-role="client"] .product-feature-eyebrow { color: var(--text-muted); }

/* Three-device summary cards in hero */
.mp-role-chip-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.mp-role-chip-row .product-crumbs {
  margin: 0;
}

/* ========== CLIENT PORTAL PAGE ========== */

/* White-labeled portal card (simulated app chrome) */
.mp-portal {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-overlay);
  font-size: 0.75rem;
}

.mp-portal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.mp-portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mp-portal-brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--brand-yellow);
  color: #1a1405;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8125rem;
}

.mp-portal-brand-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.mp-portal-nav {
  display: flex;
  gap: 2px;
}

.mp-portal-nav-item {
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

.mp-portal-nav-item.active {
  color: var(--text-primary);
}

.mp-portal-nav-item.active::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -1px;
  height: 2.5px;
  background: var(--brand-yellow);
  border-radius: 2px 2px 0 0;
}

.mp-portal-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3a8bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

.mp-portal-body {
  padding: 20px;
  background: var(--surface);
}

.mp-portal-greeting {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.mp-portal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mp-portal-stat {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.mp-portal-stat-label {
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mp-portal-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.mp-portal-stat-val.accent-green { color: #1fa67a; }
.mp-portal-stat-val.accent-red { color: #d94332; }
.mp-portal-stat-val.accent-yellow { color: #a37a00; }
html[data-theme="dark"] .mp-portal-stat-val.accent-yellow { color: var(--brand-yellow); }

.mp-portal-chart {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.mp-portal-chart-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.mp-portal-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
}

.mp-portal-chart-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #3a8bff 0%, #1fa67a 80%);
  opacity: 0.92;
  min-height: 10%;
}

/* Callouts for white-label / customisation */
.mp-portal-callout {
  position: absolute;
  background: #0a0a0a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  box-shadow: var(--shadow-floating);
  white-space: nowrap;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mp-portal-callout::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-yellow);
  border-radius: 50%;
  display: inline-block;
}

.mp-portal-callout svg {
  width: 10px;
  height: 10px;
  color: var(--brand-yellow);
}

/* Portal shifts table row */
.mp-portal-shift {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}

.mp-portal-shift:last-child { border-bottom: none; }

.mp-portal-shift-date {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.6875rem;
}

.mp-portal-shift-task {
  font-weight: 700;
  color: var(--text-primary);
}

.mp-portal-shift-addr {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mp-portal-shift-photo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mp-portal-shift-photo svg { width: 14px; height: 14px; }

/* Finance summary cards */
.mp-finance-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.mp-finance-stat {
  background: var(--surface);
  border-radius: 8px;
  padding: 10px 12px;
}

.mp-finance-stat-label {
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mp-finance-stat-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.mp-finance-stat-val.big { font-size: 1.125rem; }
.mp-finance-stat-val.outstanding { color: #d94332; }
.mp-finance-stat-val.paid { color: #1fa67a; }

.mp-invoice-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  gap: 10px;
}

.mp-invoice-row:last-child { border-bottom: none; }

.mp-invoice-num {
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-invoice-overdue {
  font-size: 0.5625rem;
  font-weight: 800;
  color: #fff;
  background: #d94332;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mp-invoice-date {
  color: var(--text-secondary);
  font-size: 0.6875rem;
}

.mp-invoice-amt {
  font-weight: 800;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .mp-portal-stats { grid-template-columns: 1fr 1fr; }
  .mp-finance-stats { grid-template-columns: 1fr; }
  .mp-portal-nav { flex-wrap: wrap; }
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "slide";
}

.hero-slide {
  grid-area: slide;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-default), visibility 0.5s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.hero-dot {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease-default), width 0.3s var(--ease-default);
}

.hero-dot.active {
  background: var(--text-primary);
  width: 56px;
}

.hero-dot:hover:not(.active) {
  background: var(--text-muted);
}

/* Slide 2 — messages compound (phone + message bubbles) */
.hero-messages-compound {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-msg-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
}

.hero-msg {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow-floating);
  font-size: 0.8125rem;
  color: var(--text-primary);
  position: relative;
  animation: hero-msg-pop 0.4s var(--ease-default) backwards;
}

.hero-msg.left {
  border-bottom-left-radius: 4px;
}

.hero-msg.right {
  border-bottom-right-radius: 4px;
  background: var(--brand-yellow);
  color: #1a1405;
  border-color: var(--brand-yellow);
  align-self: flex-end;
}

.hero-msg-sender {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-msg.right .hero-msg-sender { color: rgba(26,20,5,0.65); }

.hero-msg-time {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-msg.right .hero-msg-time { color: rgba(26,20,5,0.55); }

@keyframes hero-msg-pop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide[data-slide="1"].active .hero-msg:nth-child(1) { animation-delay: 0.1s; }
.hero-slide[data-slide="1"].active .hero-msg:nth-child(2) { animation-delay: 0.4s; }
.hero-slide[data-slide="1"].active .hero-msg:nth-child(3) { animation-delay: 0.7s; }

@media (max-width: 900px) {
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-dot.active { width: 48px; }
  .hero-messages-compound { flex-direction: column; }
  .hero-msg-stack { max-width: 100%; align-items: center; }
  .hero-msg.right { align-self: center; }
}

/* ========== FINANCE PAGE ========== */

/* Quote line items */
.mp-qline {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}

.mp-qline:last-child {
  border-bottom: none;
}

.mp-qline-desc {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.mp-qline-type {
  font-size: 0.5625rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mp-qline-type.oneoff { background: rgba(58,139,255,0.15); color: #3a8bff; }
.mp-qline-type.recurring { background: rgba(251,193,22,0.2); color: #a37a00; }
html[data-theme="dark"] .mp-qline-type.recurring { color: var(--brand-yellow); }

.mp-qline-price {
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.mp-quote-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mp-quote-total-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mp-quote-total-val {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* Signature area */
.mp-sig {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: rgba(251, 193, 22, 0.08);
}

.mp-sig-label {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mp-sig-pad {
  padding: 14px 18px;
  background: var(--background);
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mp-sig-signature {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 1.375rem;
  color: var(--text-primary);
  line-height: 1;
}

.mp-sig-stamp {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.3;
}

.mp-sig-stamp strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Invoice line (from booking) */
.mp-iline {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}

.mp-iline:last-child { border-bottom: none; }

.mp-iline-date {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 1px;
}

.mp-iline-main {
  min-width: 0;
}

.mp-iline-task {
  font-weight: 700;
  color: var(--text-primary);
}

.mp-iline-meta {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mp-iline-photo-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.5625rem;
  font-weight: 800;
  color: var(--brand-yellow);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mp-iline-photo-link svg { width: 10px; height: 10px; }

.mp-iline-price {
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* Purchase row */
.mp-po-row {
  display: grid;
  grid-template-columns: 70px 1fr 100px auto;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}

.mp-po-row:last-child { border-bottom: none; }

.mp-po-num {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 0.6875rem;
}

.mp-po-main {
  min-width: 0;
}

.mp-po-supplier {
  font-weight: 700;
  color: var(--text-primary);
}

.mp-po-alloc {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mp-po-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mp-po-chip.project { background: rgba(58,139,255,0.12); color: #3a8bff; }
.mp-po-chip.stock { background: rgba(251,193,22,0.15); color: #a37a00; }
html[data-theme="dark"] .mp-po-chip.stock { color: var(--brand-yellow); }

.mp-po-amt {
  font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* Margin grid (report) */
.mp-margin-grid {
  display: grid;
  grid-template-columns: 1fr 80px 80px 80px 60px;
  gap: 10px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  align-items: center;
}

.mp-margin-grid.head {
  background: var(--surface);
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 8px 18px;
}

.mp-margin-name { font-weight: 700; color: var(--text-primary); }
.mp-margin-val { font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.mp-margin-pct {
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
  background: rgba(31,166,122,0.15);
  color: #1fa67a;
}

.mp-margin-pct.low {
  background: rgba(234,67,53,0.15);
  color: #d94332;
}

/* ========== COMING SOON ========== */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.coming-soon-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-yellow);
  border-radius: 50%;
  animation: cs-pulse 1.8s ease-in-out infinite;
}

@keyframes cs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.coming-soon-notify {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin-top: 12px;
}

.coming-soon-notify input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 48px;
  border: 1.5px solid var(--border);
  background: var(--background);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.coming-soon-notify input[type="email"]:focus {
  border-color: var(--brand-yellow);
}

.coming-soon-notify input[type="email"]::placeholder {
  color: var(--text-muted);
}

.coming-soon-preview {
  position: relative;
}

.coming-soon-preview::after {
  content: 'Preview';
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(251, 193, 22, 0.2);
  color: #a37a00;
  border: 1px solid rgba(251, 193, 22, 0.4);
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

html[data-theme="dark"] .coming-soon-preview::after {
  color: var(--brand-yellow);
}

/* Certification mockup */
.mp-cert-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}

.mp-cert-row:last-child { border-bottom: none; }

.mp-cert-member {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-cert-name {
  color: var(--text-secondary);
  font-weight: 600;
}

.mp-cert-expiry {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.mp-cert-status {
  font-size: 0.5625rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mp-cert-status.valid { background: rgba(31,166,122,0.15); color: #1fa67a; }
.mp-cert-status.expiring { background: rgba(251,193,22,0.2); color: #a37a00; }
html[data-theme="dark"] .mp-cert-status.expiring { color: var(--brand-yellow); }
.mp-cert-status.expired { background: rgba(217,67,50,0.15); color: #d94332; }

/* ========== PRICING PAGE ========== */

.pricing-compare-section {
  padding: 80px 40px;
  background: var(--background);
}

.pricing-compare-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-compare-heading {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-compare-heading h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.pricing-compare-heading p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-floating);
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-compare-table th {
  background: var(--surface);
  font-weight: 800;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}

.pricing-compare-table th.plan {
  text-align: center;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
}

.pricing-compare-table th.plan small {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.pricing-compare-table th.plan.popular {
  background: rgba(251, 193, 22, 0.08);
  color: var(--text-primary);
  position: relative;
}

.pricing-compare-table th.plan.popular::after {
  content: 'Most popular';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  background: var(--brand-yellow);
  color: #1a1405;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-transform: uppercase;
}

.pricing-compare-table th.plan.popular small {
  padding-top: 16px;
}

.pricing-compare-group td {
  background: var(--surface);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  padding: 10px 18px !important;
}

.pricing-compare-feature {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-compare-feature-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.pricing-compare-yes,
.pricing-compare-no {
  text-align: center;
  width: 120px;
}

.pricing-compare-yes svg {
  width: 18px;
  height: 18px;
  color: #1fa67a;
}

.pricing-compare-no {
  color: var(--text-muted);
  font-size: 1.25rem;
  opacity: 0.5;
}

.pricing-compare-soon {
  font-size: 0.5625rem;
  font-weight: 800;
  padding: 2px 8px;
  background: var(--icon-chip-bg);
  color: var(--brand-yellow);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}

/* FAQ */
.pricing-faq {
  padding: 80px 40px;
  background: var(--surface);
}

.pricing-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-faq-heading h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.pricing-faq-item {
  padding: 24px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.pricing-faq-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pricing-faq-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-faq-item p a {
  color: var(--text-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--brand-yellow);
}

/* Pricing-page hero (lighter than product page hero) */
.pricing-page-hero {
  padding: 56px 40px 20px;
  background: var(--background);
  text-align: center;
}

.pricing-page-hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text-primary);
  margin: 0 auto 16px;
  max-width: 800px;
}

.pricing-page-hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }
  .pricing-compare-table {
    font-size: 0.8125rem;
  }
  .pricing-compare-table th,
  .pricing-compare-table td {
    padding: 10px 12px;
  }
  .pricing-compare-yes,
  .pricing-compare-no {
    width: 64px;
  }
}
