/* =========================
   VARIABLES (from home.css)
========================= */
:root {
    --white: #ffffff;
    --off: #f7f8fc;
    --light: #eef1f8;
    --border: #e2e6f0;
    --black: #08090f;
    --dark: #111320;
    --muted: #6b7280;
    --blue: #1a56ff;
    --blue-light: #e8edff;
    --blue-mid: #4f75ff;
    --cyan: #00d4ff;
    --live: #10b981;
  }
  
  /* =========================
     HERO
  ========================= */
  .hiw-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 40px 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .hiw-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% -10%, rgba(26,86,255,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 30% at 80% 80%, rgba(0,212,255,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .hiw-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
    pointer-events: none;
  }
  
  .hiw-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
  }
  
  .hiw-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 36px;
    box-shadow: 0 2px 12px rgba(26,86,255,0.08);
    font-weight: 500;
  }
  
  .hiw-label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue);
    animation: blink 2s infinite;
    flex-shrink: 0;
  }
  
  .hiw-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -2.5px;
    color: var(--dark);
    margin-bottom: 24px;
  }
  
  .hiw-hero h1 .highlight {
    color: var(--blue);
    position: relative;
  }
  
  .hiw-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 2px;
    opacity: 0.4;
  }
  
  .hiw-hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 48px;
    font-weight: 300;
  }
  
  /* =========================
     HERO PILL SELECTOR
  ========================= */
  .hiw-hero-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  
  .hiw-hero-hint {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  
  .hiw-hero-pills {
    display: flex;
    gap: 8px;
    background: var(--off);
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: 14px;
  }
  
  .hiw-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hiw-pill:hover { color: var(--dark); }
  
  .hiw-pill.active {
    background: var(--white);
    color: var(--blue);
    box-shadow: 0 4px 20px rgba(26,86,255,0.12);
  }
  
  .hiw-pill i {
    font-size: 16px;
    transition: transform 0.3s;
  }
  
  .hiw-pill.active i { transform: scale(1.1); }
  
  /* =========================
     BEFORE vs AFTER
  ========================= */
  .hiw-compare {
    background: var(--dark);
    padding: clamp(48px, 6vw, 80px) clamp(1.5rem, 6vw, 64px);
  }
  
  .hiw-compare-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
  
  .hiw-compare-card {
    border-radius: 16px;
    padding: clamp(24px, 3vw, 36px);
    position: relative;
  }
  
  .hiw-compare-old {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  .hiw-compare-new {
    background: rgba(26,86,255,0.08);
    border: 1px solid rgba(26,86,255,0.25);
  }
  
  .hiw-compare-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 16px 16px 0 0;
  }
  
  .hiw-compare-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }
  
  .hiw-compare-header i { font-size: 18px; }
  
  .hiw-compare-header-new { color: var(--cyan); }
  
  .hiw-compare-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  
  .hiw-cmp-item {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    font-weight: 300;
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.15);
  }
  
  .hiw-cmp-new {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    background: rgba(26,86,255,0.1);
  }
  
  .hiw-cmp-auto {
    color: var(--white);
    text-decoration: none;
    background: rgba(26,86,255,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
  }
  
  .hiw-cmp-auto i {
    color: var(--cyan);
    font-size: 14px;
  }
  
  .hiw-compare-time {
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
  }
  
  .hiw-compare-time-new {
    background: rgba(26,86,255,0.15);
  }
  
  .hiw-time-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    display: block;
    letter-spacing: -1px;
  }
  
  .hiw-compare-time-new .hiw-time-num {
    color: var(--cyan);
  }
  
  .hiw-time-unit {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .hiw-compare-time-new .hiw-time-unit { color: rgba(255,255,255,0.6); }
  
  .hiw-compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(16px, 3vw, 28px);
  }
  
  .hiw-compare-vs span {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* =========================
     JOURNEY SECTIONS
  ========================= */
  .hiw-journey {
    padding: clamp(60px, 8vw, 100px) clamp(1.5rem, 6vw, 64px);
    background: var(--off);
    display: none;
  }
  
  .hiw-journey.active {
    display: block;
    animation: fadeUp 0.5s ease;
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hiw-journey-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  
  .hiw-journey-head { margin-bottom: 40px; }
  
  .hiw-journey-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .hiw-tag-company { background: var(--blue-light); color: var(--blue); }
  .hiw-tag-staffing { background: rgba(0,212,255,0.1); color: #00a8cc; }
  .hiw-tag-individual { background: rgba(249,115,22,0.08); color: #f97316; }
  
  .hiw-journey-head h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--dark);
    line-height: 1.12;
  }
  
  .hiw-journey-head h2 span { color: var(--blue); }
  
  /* =========================
     ROLES BAR
  ========================= */
  .hiw-roles-bar {
    margin-bottom: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: clamp(20px, 3vw, 28px);
  }
  
  .hiw-roles-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 14px;
  }
  
  .hiw-roles-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .hiw-role-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--off);
    transition: all 0.2s;
  }
  
  .hiw-role-chip:hover {
    border-color: var(--blue);
    transform: translateY(-1px);
  }
  
  .hiw-role-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
  }
  
  .hiw-dot-muted { background: var(--muted); opacity: 0.4; }
  .hiw-dot-cyan { background: var(--cyan); }
  
  .hiw-role-chip strong { font-size: 13px; color: var(--dark); font-weight: 600; }
  .hiw-role-chip span { font-size: 12px; color: var(--muted); font-weight: 300; }
  
  /* =========================
     TIMELINE
  ========================= */
  .hiw-timeline {
    position: relative;
    padding-left: 48px;
    margin-bottom: 40px;
  }
  
  .hiw-timeline-track {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hiw-timeline-track.grow { transform: scaleY(1); }
  
  /* Step */
  .hiw-tl-step {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 2vw, 18px);
    margin-bottom: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .hiw-tl-step.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Marker */
  .hiw-tl-marker {
    position: absolute;
    left: -48px;
    top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
  }
  
  .hiw-tl-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    position: relative;
    z-index: 2;
    transition: all 0.3s;
  }
  
  .hiw-tl-step:hover .hiw-tl-dot {
    border-color: var(--blue);
    background: var(--blue-light);
  }
  
  .hiw-dot-glow {
    border-color: var(--blue) !important;
    background: var(--blue) !important;
    box-shadow: 0 0 16px rgba(26,86,255,0.4);
  }
  
  /* Step Number */
  .hiw-tl-num {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--border);
    min-width: 28px;
    padding-top: 26px;
    transition: color 0.3s;
    flex-shrink: 0;
  }
  
  .hiw-tl-step:hover .hiw-tl-num { color: var(--blue-mid); }
  .hiw-num-glow { color: var(--blue) !important; }
  
  /* Card */
  .hiw-tl-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(22px, 3vw, 30px);
    display: flex;
    gap: clamp(14px, 2vw, 20px);
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .hiw-tl-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 40px rgba(26,86,255,0.08);
    transform: translateX(4px);
  }
  
  /* AI Card */
  .hiw-tl-card-ai {
    border-color: rgba(26,86,255,0.3);
    box-shadow: 0 8px 32px rgba(26,86,255,0.1);
  }
  
  .hiw-tl-card-ai::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
  }
  
  .hiw-tl-card-ai::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(26,86,255,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .hiw-tl-card-ai:hover {
    box-shadow: 0 16px 48px rgba(26,86,255,0.15);
  }
  
  /* Card Icon */
  .hiw-tl-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue);
    flex-shrink: 0;
    transition: all 0.3s;
  }
  
  .hiw-tl-card:hover .hiw-tl-icon { background: var(--blue-light); }
  
  .hiw-tl-icon-ai {
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: var(--white);
  }
  
  .hiw-tl-card-ai:hover .hiw-tl-icon-ai {
    box-shadow: 0 4px 16px rgba(26,86,255,0.3);
  }
  
  /* Card Body */
  .hiw-tl-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
  }
  
  .hiw-tl-body p {
    font-size: clamp(13px, 1.4vw, 14px);
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
  }
  
  /* Card Tags */
  .hiw-tl-tag {
    position: absolute;
    top: 14px; right: 14px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--muted);
    background: var(--off);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 6px;
  }
  
  .hiw-tl-tag-result {
    color: var(--live);
    background: rgba(16,185,129,0.06);
    border-color: rgba(16,185,129,0.2);
  }
  
  .hiw-tl-auto-badge {
    position: absolute;
    top: 14px; right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--live);
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    padding: 3px 10px;
    border-radius: 6px;
  }
  
  .hiw-auto-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--live);
    animation: pulse 2s infinite;
  }
  
  /* Divider */
  .hiw-tl-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s ease;
  }
  
  .hiw-tl-divider.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hiw-tl-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0.3;
  }
  
  .hiw-tl-divider-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Syne', sans-serif;
  }
  
  /* =========================
     CLOUD PILLS
  ========================= */
  .hiw-cloud-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
  }
  
  .hiw-cloud-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    background: var(--off);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s;
  }
  
  .hiw-cloud-pill:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-1px);
  }
  
  .hiw-cloud-pill i { font-size: 14px; color: var(--blue); }
  
  /* =========================
     AGENTS USED PER TYPE
  ========================= */
  .hiw-agents-used {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: clamp(20px, 3vw, 28px);
    margin-bottom: 40px;
  }
  
  .hiw-agents-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 14px;
  }
  
  .hiw-agents-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .hiw-agent-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--off);
    font-size: 13px;
    font-weight: 400;
    color: var(--dark);
    transition: all 0.2s;
  }
  
  .hiw-agent-chip:hover {
    border-color: var(--blue);
    transform: translateY(-1px);
  }
  
  .hiw-agent-live {
    border-color: rgba(16,185,129,0.3);
    background: rgba(16,185,129,0.04);
  }
  
  .hiw-agent-status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--live);
    animation: pulse 2s infinite;
  }
  
  .hiw-agent-badge {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--live);
    background: rgba(16,185,129,0.1);
    padding: 2px 8px;
    border-radius: 4px;
  }
  
  .hiw-agent-soon {
    color: var(--muted);
    background: var(--light);
  }
  
  /* =========================
     JOURNEY CTA
  ========================= */
  .hiw-journey-cta { text-align: center; }
  
  .hiw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(26,86,255,0.3);
    transition: all 0.25s;
  }
  
  .hiw-btn:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26,86,255,0.35);
    color: #fff;
    text-decoration: none;
  }
  
  .hiw-btn i { transition: transform 0.3s; }
  .hiw-btn:hover i { transform: translateX(4px); }
  
  /* =========================
     TRUST
  ========================= */
  .hiw-trust {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: clamp(48px, 6vw, 80px) clamp(1.5rem, 6vw, 64px);
  }
  
  .hiw-trust-inner { max-width: 900px; margin: 0 auto; }
  
  .hiw-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .hiw-trust-card {
    text-align: center;
    padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--off);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
  }
  
  .hiw-trust-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hiw-trust-card:nth-child(2) { transition-delay: 0.1s; }
  .hiw-trust-card:nth-child(3) { transition-delay: 0.2s; }
  
  .hiw-trust-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 28px rgba(26,86,255,0.06);
    transform: translateY(-3px);
  }
  
  .hiw-trust-card i {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 16px;
    display: block;
  }
  
  .hiw-trust-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }
  
  .hiw-trust-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
  }
  
  /* =========================
     CTA
  ========================= */
  .hiw-cta {
    background: var(--dark);
    padding: clamp(80px, 10vw, 140px) clamp(1.5rem, 6vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hiw-cta-bg {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: min(700px, 90vw); height: 500px;
    background: radial-gradient(ellipse, rgba(26,86,255,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .hiw-cta-content { position: relative; z-index: 1; }
  
  .hiw-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(26,86,255,0.4);
    background: rgba(26,86,255,0.08);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b9fff;
    margin-bottom: 36px;
  }
  
  .hiw-cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  
  .hiw-cta h2 span { color: var(--cyan); }
  
  .hiw-cta p {
    font-size: clamp(15px, 2vw, 17px);
    color: #8899bb;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 300;
  }
  
  .hiw-btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.2s;
    text-decoration: none;
  }
  
  .hiw-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    text-decoration: none;
    color: var(--dark);
  }
  
  .hiw-cta small {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    color: #445;
  }
  
  /* =========================
     KEYFRAMES
  ========================= */
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
  @keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.4); }
  }
  
  /* =========================
     RESPONSIVE — 1200px
  ========================= */
  @media (max-width: 1200px) {
    .hiw-compare-inner { max-width: 760px; }
  }
  
  /* =========================
     RESPONSIVE — 1024px
  ========================= */
  @media (max-width: 1024px) {
    .hiw-compare-inner {
      grid-template-columns: 1fr;
      gap: 16px;
      max-width: 480px;
    }
  
    .hiw-compare-vs {
      padding: 4px 0;
      justify-content: center;
    }
  }
  
  /* =========================
     RESPONSIVE — 768px
  ========================= */
  @media (max-width: 768px) {
    .hiw-hero {
      padding: 120px 24px 64px;
      min-height: auto;
    }
  
    .hiw-hero h1 { letter-spacing: -1.5px; }
  
    .hiw-hero-pills {
      flex-direction: column;
      width: 100%;
      max-width: 300px;
    }
  
    .hiw-pill { justify-content: center; }
  
    .hiw-timeline { padding-left: 36px; }
    .hiw-tl-marker { left: -36px; }
  
    .hiw-tl-card {
      flex-direction: column;
      gap: 12px;
    }
  
    .hiw-tl-tag,
    .hiw-tl-auto-badge {
      position: static;
      align-self: flex-start;
      margin-top: 4px;
    }
  
    .hiw-tl-num { display: none; }
  
    .hiw-roles-row { flex-direction: column; }
    .hiw-agents-row { flex-direction: column; }
    .hiw-trust-grid { grid-template-columns: 1fr; }
  
    .hiw-tl-divider { margin-left: -36px; padding-left: 36px; }
  }
  
  /* =========================
     RESPONSIVE — 480px
  ========================= */
  @media (max-width: 480px) {
    .hiw-hero {
      padding: 100px 20px 48px;
    }
  
    .hiw-hero h1 { letter-spacing: -1px; }
  
    .hiw-hero-pills { max-width: 100%; }
  
    .hiw-compare {
      padding: 40px 1rem;
    }
  
    .hiw-compare-card {
      padding: 20px 16px;
    }
  
    .hiw-journey {
      padding: 48px 1rem;
    }
  
    .hiw-timeline { padding-left: 28px; }
    .hiw-tl-marker { left: -28px; }
  
    .hiw-tl-card { padding: 20px 16px; }
  
    .hiw-tl-divider { margin-left: -28px; padding-left: 28px; }
  
    .hiw-trust { padding: 40px 1rem; }
  
    .hiw-cta { padding: 64px 1.5rem; }
  
    .hiw-btn-white {
      width: 100%;
      text-align: center;
    }
  
    .hiw-btn {
      width: 100%;
      justify-content: center;
    }
  
    .hiw-cta h2 { letter-spacing: -1px; }
  
    .hiw-cloud-row { flex-direction: column; }
  
    .hiw-agent-chip { width: 100%; }
  }
  
  /* =========================
     RESPONSIVE — 360px
  ========================= */
  @media (max-width: 360px) {
    .hiw-hero {
      padding: 90px 16px 40px;
    }
  
    .hiw-hero h1 {
      font-size: 32px;
      letter-spacing: -0.5px;
    }
  
    .hiw-hero p { font-size: 14px; }
  
    .hiw-pill {
      padding: 10px 16px;
      font-size: 13px;
    }
  
    .hiw-compare-card { padding: 16px 14px; }
  
    .hiw-tl-card { padding: 16px 14px; }
  
    .hiw-roles-bar { padding: 16px; }
    .hiw-agents-used { padding: 16px; }
  }
  
  /* =========================
     ULTRA WIDE — 1600px+
  ========================= */
  @media (min-width: 1600px) {
    .hiw-journey-inner,
    .hiw-trust-inner,
    .hiw-compare-inner {
      max-width: 1000px;
    }
  }