    /* ── Typography (IBM Plex Sans) ── */
    @font-face {
      font-family: 'IBM Plex Sans';
      src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-Thin.ttf') format('truetype');
      font-weight: 100;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Sans';
      src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLight.ttf') format('truetype');
      font-weight: 200;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Sans';
      src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Sans';
      src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Sans';
      src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-Medium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Sans';
      src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'IBM Plex Sans';
      src: url('./fonts/IBM_Plex_Sans/IBMPlexSans-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    /* ── CSS Reset & Design Tokens ── */
    :root {
      /* Brand Colors - from brand guide */
      --idura-purple: #604FED;
      --idura-purple-light: #8072FA;
      --idura-purple-dark: #4633DF;
      --idura-purple-ghost: #F5F4FE;
      --idura-black: #1A1A24;

      /* Neutrals */
      --gray-50: #F9F9FA;
      --gray-100: #F2F2F5;
      --gray-200: #E4E4EB;
      --gray-400: #9E9EB0;
      --gray-600: #6B6B80;
      --gray-800: #2C2C3D;
      --gray-900: #161621;
      --white: #FFFFFF;

      /* Typography Setup */
      --font-primary: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
      --tracking-tight: -0.035em;
      --tracking-normal: -0.015em;
      --leading-heading: 1.05;
      --leading-body: 1.6;

      /* Spacing Scale */
      --space-2: 8px;
      --space-4: 16px;
      --space-6: 24px;
      --space-8: 32px;
      --space-10: 40px;
      --space-12: 48px;
      --space-16: 64px;
      --space-20: 80px;
      --space-24: 96px;
      --space-32: 128px;
      --space-40: 160px;

      /* Shadows */
      --shadow-sm: 0 2px 8px rgba(26, 26, 36, 0.04), 0 1px 2px rgba(26, 26, 36, 0.02);
      --shadow-md: 0 4px 16px rgba(26, 26, 36, 0.06), 0 2px 4px rgba(26, 26, 36, 0.03);
      --shadow-lg: 0 12px 32px rgba(26, 26, 36, 0.08), 0 4px 8px rgba(26, 26, 36, 0.04);
      --shadow-purple: 0 12px 28px rgba(96, 79, 237, 0.25), 0 4px 12px rgba(96, 79, 237, 0.15);
      --shadow-purple-hover: 0 16px 40px rgba(96, 79, 237, 0.35), 0 8px 16px rgba(96, 79, 237, 0.2);

      /* Radius */
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 32px;
      --radius-full: 9999px;

      /* Transitions */
      --spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.2);
      --ease: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

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

    html {
      font-family: var(--font-primary);
      color: var(--idura-black);
      background-color: var(--white);
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      position: relative;
    }

    /* Background noise texture (Premium depth) */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

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

    ul {
      list-style: none;
    }

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

    /* ── Utilities ── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-6);
    }

    .text-center {
      text-align: center;
    }

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--idura-black) 0%, var(--gray-600) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .gradient-purple-text {
      background: linear-gradient(135deg, var(--idura-purple) 0%, var(--idura-purple-dark) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    /* ── UI Components ── */

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--font-primary);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: var(--tracking-normal);
      padding: 16px 36px;
      border-radius: var(--radius-full);
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform var(--spring), box-shadow var(--ease), background var(--ease), color var(--ease);
      text-decoration: none;
      outline: none;
      user-select: none;
    }

    .btn:focus-visible {
      box-shadow: 0 0 0 4px var(--idura-purple-light);
    }

    .btn:active {
      transform: scale(0.96) !important;
      /* Force override spring on active */
    }

    .btn-primary {
      background-color: var(--idura-purple);
      color: var(--white);
      box-shadow: var(--shadow-purple);
    }

    .btn-primary:hover {
      background-color: var(--idura-purple-dark);
      box-shadow: var(--shadow-purple-hover);
      transform: translateY(-3px);
    }

    .btn-primary svg {
      transition: transform var(--spring);
    }

    .btn-primary:hover svg {
      transform: translateX(4px);
    }

    .btn-secondary {
      background-color: var(--white);
      color: var(--idura-black);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-200);
    }

    .btn-secondary:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
      border-color: var(--gray-400);
    }

    .btn-ghost {
      background-color: transparent;
      color: var(--gray-800);
      padding: 12px 24px;
    }

    .btn-ghost:hover {
      background-color: var(--gray-100);
      color: var(--idura-black);
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 14px;
    }

    /* ── Header / Nav ── */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: var(--space-4) 0;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(228, 228, 235, 0.6);
      transition: padding 0.3s ease, background 0.3s ease;
    }

    /* Javascript class for scrolled state */
    .site-header.scrolled {
      padding: 12px 0;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow-sm);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      transition: opacity var(--ease);
    }

    .brand-logo:hover {
      opacity: 0.8;
    }

    .brand-logo img {
      height: 26px;
      /* Sizing the wide "IDURA" logo nicely */
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--space-8);
    }

    .nav-link {
      font-weight: 500;
      color: var(--gray-600);
      font-size: 15px;
      transition: color var(--ease);
      position: relative;
    }

    .nav-link:hover {
      color: var(--idura-black);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: var(--space-4);
    }

    /* ── Hero Section ── */
    .hero {
      position: relative;
      padding-top: calc(var(--space-40) + 60px);
      /* Account for fixed header */
      padding-bottom: var(--space-24);
      background: radial-gradient(circle at 50% -20%, var(--idura-purple-ghost) 0%, var(--white) 70%);
      overflow: hidden;
    }

    /* Decorative glowing orbs in hero background */
    .hero::before,
    .hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 0;
      opacity: 0.4;
      pointer-events: none;
    }

    .hero::before {
      width: 600px;
      height: 600px;
      background: var(--idura-purple-ghost);
      top: -100px;
      left: -200px;
    }

    .hero::after {
      width: 500px;
      height: 500px;
      background: rgba(96, 79, 237, 0.05);
      bottom: -100px;
      right: -100px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    .pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      color: var(--idura-purple);
      box-shadow: var(--shadow-sm);
      margin-bottom: var(--space-8);
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .pill-badge svg {
      color: #10B981;
      /* Success green for checkmark */
    }

    .hero h1 {
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 700;
      line-height: var(--leading-heading);
      letter-spacing: var(--tracking-tight);
      margin-bottom: var(--space-6);
      color: var(--idura-black);
    }

    .hero p.lead {
      font-size: clamp(18px, 2vw, 22px);
      line-height: var(--leading-body);
      color: var(--gray-600);
      max-width: 640px;
      margin: 0 auto var(--space-10);
      font-weight: 400;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--space-4);
      margin-bottom: var(--space-16);
    }

    /* Hero interface preview (Glassmorphic document shape) */
    .hero-visual {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      z-index: 2;
      border-radius: var(--radius-xl);
      padding: 12px;
      background: rgba(255, 255, 255, 0.4);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), var(--shadow-lg);
      transform: perspective(1000px) rotateX(2deg) translateY(0);
      transition: transform 0.8s ease;
    }

    .hero-visual:hover {
      transform: perspective(1000px) rotateX(0deg) translateY(-10px);
    }

    /* The actual "app" mockup inside the visual */
    .hero-app-mockup {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--gray-200);
      overflow: hidden;
      aspect-ratio: 16/9;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .mockup-header {
      height: 48px;
      border-bottom: 1px solid var(--gray-100);
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 12px;
      background: var(--gray-50);
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gray-200);
    }

    .mockup-dot:nth-child(1) {
      background: #FF5F56;
    }

    .mockup-dot:nth-child(2) {
      background: #FFBD2E;
    }

    .mockup-dot:nth-child(3) {
      background: #27C93F;
    }

    .mockup-body {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-50);
      background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
      background-size: 20px 20px;
    }

    .mockup-upload-zone {
      width: 60%;
      max-width: 400px;
      background: var(--white);
      border: 2px dashed var(--gray-200);
      border-radius: var(--radius-md);
      padding: 40px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }

    .mockup-upload-zone svg {
      margin: 0 auto 16px;
      color: var(--idura-purple);
    }

    .mockup-upload-zone h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .mockup-upload-zone p {
      color: var(--gray-400);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .mockup-btn {
      display: inline-block;
      padding: 10px 24px;
      background: var(--idura-purple);
      color: white;
      border-radius: var(--radius-full);
      font-weight: 500;
      font-size: 14px;
    }

    /* ── Features / How it works ── */
    .features {
      padding: var(--space-24) 0;
      background: var(--white);
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto var(--space-20);
    }

    .section-tag {
      font-size: 14px;
      font-weight: 600;
      color: var(--idura-purple);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-4);
      display: block;
    }

    .section-header h2 {
      font-size: clamp(36px, 4vw, 48px);
      font-weight: 700;
      line-height: var(--leading-heading);
      letter-spacing: var(--tracking-tight);
      color: var(--idura-black);
      margin-bottom: var(--space-4);
    }

    .section-header p {
      font-size: 18px;
      color: var(--gray-600);
      line-height: var(--leading-body);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-8);
      position: relative;
    }

    /* Connecting line between steps */
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 48px;
      /* half of icon height */
      left: 16%;
      right: 16%;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--gray-200) 10%, var(--gray-200) 90%, transparent 100%);
      z-index: 0;
    }

    .step-card {
      position: relative;
      z-index: 1;
      padding: var(--space-8);
      background: var(--white);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(228, 228, 235, 0.5);
      transition: transform var(--spring), box-shadow var(--ease);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .step-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--idura-purple-light);
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      background: var(--idura-purple-ghost);
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-6);
      color: var(--idura-purple);
      box-shadow: 0 0 0 8px var(--white);
      /* knock out the connecting line */
      transition: transform var(--spring), background var(--ease);
    }

    .step-card:hover .icon-wrapper {
      background: var(--idura-purple);
      color: var(--white);
      transform: scale(1.1);
    }

    .step-number {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 32px;
      height: 32px;
      background: var(--idura-black);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      box-shadow: var(--shadow-sm);
      border: 3px solid var(--white);
    }

    .step-card h3 {
      font-size: 22px;
      font-weight: 600;
      color: var(--idura-black);
      margin-bottom: var(--space-4);
      letter-spacing: var(--tracking-tight);
    }

    .step-card p {
      font-size: 15px;
      color: var(--gray-600);
      line-height: var(--leading-body);
    }

    /* ── Pricing Section ── */
    .pricing {
      padding: var(--space-24) 0;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }

    .pricing-container {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-12);
      align-items: center;
    }

    .pricing-content h2 {
      font-size: 40px;
      font-weight: 700;
      line-height: var(--leading-heading);
      letter-spacing: var(--tracking-tight);
      margin-bottom: var(--space-6);
    }

    .pricing-content p {
      font-size: 18px;
      color: var(--gray-600);
      line-height: var(--leading-body);
      margin-bottom: var(--space-8);
    }

    .pricing-features {
      margin-bottom: var(--space-8);
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: var(--idura-black);
      margin-bottom: 16px;
      font-weight: 500;
    }

    .pricing-features li svg {
      color: var(--idura-purple);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pricing-card {
      background: var(--idura-black);
      color: var(--white);
      padding: var(--space-10);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--idura-purple-dark) 0%, transparent 70%);
      opacity: 0.5;
      border-radius: 50%;
      pointer-events: none;
    }

    .pricing-card-header {
      margin-bottom: var(--space-6);
      position: relative;
      z-index: 1;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .price-currency {
      font-size: 24px;
      font-weight: 600;
      color: var(--gray-400);
    }

    .price-amount {
      font-size: 72px;
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
      line-height: 1;
    }

    .price-period {
      font-size: 18px;
      color: var(--gray-400);
      font-weight: 400;
    }

    .pricing-card-body {
      position: relative;
      z-index: 1;
    }

    .pricing-card-body p {
      color: var(--gray-200);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: var(--space-8);
    }

    .btn-pricing {
      width: 100%;
      background: var(--idura-purple);
      color: var(--white);
      padding: 16px;
      border-radius: var(--radius-full);
      font-weight: 600;
      font-size: 16px;
      text-align: center;
      transition: background var(--ease), transform var(--spring);
      display: block;
    }

    .btn-pricing:hover {
      background: var(--idura-purple-light);
      transform: translateY(-2px);
    }

    /* ── Trust / Logos ── */
    .trust-section {
      padding: var(--space-16) 0;
      background: var(--white);
      text-align: center;
    }

    /* ── Prose / Content (Privacy Policy, etc) ── */
    .prose h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; color: var(--idura-black); }
    .prose h2 { font-size: 24px; font-weight: 600; margin-top: 32px; margin-bottom: 16px; color: var(--idura-black); }
    .prose h3 { font-size: 18px; font-weight: 600; margin-top: 24px; margin-bottom: 12px; color: var(--idura-black); }
    .prose p { line-height: 1.6; color: var(--gray-600); margin-bottom: 16px; font-size: 16px; }
    .prose .meta { color: var(--gray-400); margin-bottom: 32px; font-size: 14px; }
    .prose ul { margin-left: 20px; margin-bottom: 16px; list-style-type: disc; }
    .prose li { margin-bottom: 8px; line-height: 1.5; font-size: 15px; color: var(--gray-600); }
    .prose a { color: var(--idura-purple); text-decoration: none; }
    .prose a:hover { text-decoration: underline; color: var(--idura-purple-dark); }

    .trust-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-16);
      flex-wrap: wrap;
    }

    /* Using textual placeholders styled strongly until actual svgs are available */
    .trust-logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--gray-400);
      letter-spacing: var(--tracking-tight);
      filter: grayscale(100%);
      opacity: 0.6;
      transition: opacity var(--ease), filter var(--ease), color var(--ease);
      display: flex;
      align-items: center;
      gap: 8px;
    }

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

    /* ── CTA Banner ── */
    .cta-banner {
      padding: var(--space-20) 0;
      background: var(--idura-black);
      color: var(--white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(96, 79, 237, 0.2) 0%, transparent 100%);
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-banner h2 {
      font-size: clamp(32px, 4vw, 42px);
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
      margin-bottom: var(--space-4);
    }

    .cta-banner p {
      font-size: 18px;
      color: var(--gray-200);
      margin-bottom: var(--space-8);
    }

    /* ── Footer ── */
    .footer {
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      padding: var(--space-12) 0 var(--space-6);
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-10);
    }

    .footer-logo img {
      height: 24px;
      opacity: 0.8;
    }

    .footer-links {
      display: flex;
      gap: var(--space-6);
    }

    .footer-links a {
      color: var(--gray-600);
      font-size: 14px;
      font-weight: 500;
      transition: color var(--ease);
    }

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

    .footer-bottom {
      border-top: 1px solid var(--gray-100);
      padding-top: var(--space-6);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--gray-400);
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }

      .steps-grid::before {
        display: none;
        /* Hide connecting line on mobile */
      }

      .pricing-container {
        grid-template-columns: 1fr;
        max-width: 500px;
      }

      .pricing-content.text-center {
        text-align: center;
      }

      .pricing-features li {
        justify-content: flex-start;
      }

      .trust-logos {
        gap: var(--space-8);
      }
    }

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

      .hero-app-mockup {
        aspect-ratio: auto;
      }

      .hero-cta {
        flex-direction: column;
      }

      .hero-cta .btn {
        width: 100%;
      }

      .footer-top {
        flex-direction: column;
        gap: var(--space-6);
      }

      .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
      }
    }

    /* Reveal Animation Utility */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .delay-100 {
      transition-delay: 100ms;
    }

    .delay-200 {
      transition-delay: 200ms;
    }

    .delay-300 {
      transition-delay: 300ms;
    }

    /* ── App Shell (Dashboard, Wizard) ── */
    .app-shell {
      padding-top: 120px;
      padding-bottom: var(--space-16);
      min-height: 100vh;
      background: var(--gray-50);
    }

    .app-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: var(--space-8);
    }

    .app-header h1 {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
      color: var(--idura-black);
    }

    /* ── Tab Navigation ── */
    .tab-nav {
      display: flex;
      gap: 4px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-full);
      padding: 4px;
      width: fit-content;
      margin-bottom: var(--space-8);
      box-shadow: var(--shadow-sm);
    }

    .tab-btn {
      padding: 10px 24px;
      font-family: var(--font-primary);
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      background: transparent;
      border: none;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: color var(--ease), background var(--ease);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tab-btn:hover {
      color: var(--idura-black);
    }

    .tab-btn.active {
      background: var(--idura-purple);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(96, 79, 237, 0.25);
    }

    .tab-count {
      font-size: 12px;
      font-weight: 600;
      background: rgba(0, 0, 0, 0.08);
      padding: 2px 8px;
      border-radius: var(--radius-full);
      min-width: 24px;
      text-align: center;
    }

    .tab-btn.active .tab-count {
      background: rgba(255, 255, 255, 0.2);
    }

    .tab-panel {
      display: none;
    }

    .tab-panel.active {
      display: block;
    }

    /* ── Order Cards ── */
    .order-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .order-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: var(--space-6);
      box-shadow: var(--shadow-sm);
      transition: transform var(--spring), box-shadow var(--ease), border-color var(--ease);
      cursor: pointer;
    }

    .order-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--idura-purple-light);
    }

    .order-card-main {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--space-6);
      align-items: center;
    }

    .order-card-info {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      min-width: 0;
    }

    .order-icon {
      width: 44px;
      height: 44px;
      background: var(--idura-purple-ghost);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--idura-purple);
    }

    .order-details {
      min-width: 0;
    }

    .order-filename {
      font-size: 16px;
      font-weight: 600;
      color: var(--idura-black);
      letter-spacing: var(--tracking-normal);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .order-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 4px;
      font-size: 13px;
      color: var(--gray-400);
    }

    .order-meta-sep {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--gray-400);
      flex-shrink: 0;
    }

    .order-card-right {
      display: flex;
      align-items: center;
      gap: var(--space-6);
    }

    /* Progress chip */
    .progress-chip {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
    }

    .progress-chip--pending {
      background: var(--idura-purple-ghost);
      color: var(--idura-purple);
    }

    .progress-chip--complete {
      background: #EEFBF4;
      color: #2D8B5F;
    }

    .progress-chip--voided {
      background: var(--gray-100);
      color: var(--gray-600);
    }

    .progress-bar-mini {
      width: 48px;
      height: 4px;
      background: rgba(0, 0, 0, 0.08);
      border-radius: 2px;
      overflow: hidden;
    }

    .progress-bar-mini-fill {
      height: 100%;
      border-radius: 2px;
      transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .progress-chip--pending .progress-bar-mini-fill {
      background: var(--idura-purple);
    }

    .progress-chip--complete .progress-bar-mini-fill {
      background: #2D8B5F;
    }

    .order-actions-toggle {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm);
      background: var(--white);
      color: var(--gray-600);
      cursor: pointer;
      transition: background var(--ease), color var(--ease), border-color var(--ease);
    }

    .order-actions-toggle:hover {
      background: var(--gray-50);
      border-color: var(--gray-400);
      color: var(--idura-black);
    }

    /* Expanded signer detail */
    .order-expand {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .order-card.expanded .order-expand {
      max-height: 600px;
    }

    .order-expand-inner {
      padding-top: var(--space-6);
      margin-top: var(--space-6);
      border-top: 1px solid var(--gray-100);
    }

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

    .signer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      background: var(--gray-50);
      border-radius: var(--radius-md);
    }

    .signer-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .signer-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
    }

    .signer-avatar--pending {
      background: var(--idura-purple-ghost);
      color: var(--idura-purple);
    }

    .signer-avatar--signed {
      background: #EEFBF4;
      color: #2D8B5F;
    }

    .signer-phone {
      font-size: 14px;
      font-weight: 500;
      color: var(--idura-black);
    }

    .signer-status {
      font-size: 13px;
      font-weight: 500;
    }

    .signer-status--pending {
      color: var(--idura-purple);
    }

    .signer-status--signed {
      color: #2D8B5F;
    }

    .signer-status-time {
      font-size: 12px;
      color: var(--gray-400);
      margin-top: 2px;
    }

    .order-expand-actions {
      display: flex;
      gap: 12px;
      margin-top: var(--space-6);
    }

    .btn-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      font-family: var(--font-primary);
      font-size: 14px;
      font-weight: 500;
      border-radius: var(--radius-full);
      border: 1px solid var(--gray-200);
      background: var(--white);
      color: var(--gray-800);
      cursor: pointer;
      transition: transform var(--spring), box-shadow var(--ease), border-color var(--ease), background var(--ease);
    }

    .btn-action:hover {
      background: var(--gray-50);
      border-color: var(--gray-400);
      transform: translateY(-1px);
      box-shadow: var(--shadow-sm);
    }

    .btn-action:focus-visible {
      box-shadow: 0 0 0 4px var(--idura-purple-light);
    }

    .btn-action:active {
      transform: scale(0.97);
    }

    .btn-action--primary {
      background: var(--idura-purple);
      color: var(--white);
      border-color: transparent;
      box-shadow: var(--shadow-purple);
    }

    .btn-action--primary:hover {
      background: var(--idura-purple-dark);
      box-shadow: var(--shadow-purple-hover);
    }

    .btn-action--danger {
      color: #DC2626;
      border-color: #FECACA;
    }

    .btn-action--danger:hover {
      background: #FEF2F2;
      border-color: #F87171;
    }

    /* ── Empty State ── */
    .empty-state {
      text-align: center;
      padding: var(--space-16) var(--space-8);
    }

    .empty-state-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto var(--space-6);
      background: var(--idura-purple-ghost);
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--idura-purple);
    }

    .empty-state h3 {
      font-size: 20px;
      font-weight: 600;
      color: var(--idura-black);
      margin-bottom: 8px;
    }

    .empty-state p {
      font-size: 15px;
      color: var(--gray-600);
      max-width: 360px;
      margin: 0 auto var(--space-8);
      line-height: var(--leading-body);
    }

    /* ── Wizard Stepper ── */
    .wizard-stepper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: var(--space-10);
    }

    .wizard-step {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .wizard-step-circle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      border: 2px solid var(--gray-200);
      color: var(--gray-400);
      background: var(--white);
      transition: background var(--ease), border-color var(--ease), color var(--ease);
      flex-shrink: 0;
    }

    .wizard-step-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-400);
      transition: color var(--ease);
      white-space: nowrap;
    }

    .wizard-step--active .wizard-step-circle {
      background: var(--idura-purple);
      border-color: var(--idura-purple);
      color: var(--white);
    }

    .wizard-step--active .wizard-step-label {
      color: var(--idura-black);
      font-weight: 600;
    }

    .wizard-step--completed .wizard-step-circle {
      background: #2D8B5F;
      border-color: #2D8B5F;
      color: var(--white);
    }

    .wizard-step--completed .wizard-step-label {
      color: var(--gray-600);
    }

    .wizard-step-connector {
      width: 48px;
      height: 2px;
      background: var(--gray-200);
      margin: 0 12px;
      flex-shrink: 0;
      transition: background var(--ease);
    }

    .wizard-step-connector--completed {
      background: #2D8B5F;
    }

    /* ── Wizard Content ── */
    .wizard-content {
      max-width: 660px;
      margin: 0 auto;
    }

    .wizard-panel {
      display: none;
    }

    .wizard-panel.active {
      display: block;
    }

    .wizard-title {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
      color: var(--idura-black);
      margin-bottom: 8px;
    }

    .wizard-desc {
      font-size: 16px;
      color: var(--gray-600);
      line-height: var(--leading-body);
      margin-bottom: var(--space-8);
    }

    /* ── Form Components ── */
    .form-group {
      margin-bottom: var(--space-6);
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--idura-black);
      margin-bottom: 8px;
    }

    .form-hint {
      font-size: 13px;
      color: var(--gray-400);
      margin-top: 6px;
    }

    .form-input {
      width: 100%;
      padding: 12px 16px;
      font-family: var(--font-primary);
      font-size: 15px;
      color: var(--idura-black);
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      outline: none;
      transition: border-color var(--ease), box-shadow var(--ease);
    }

    .form-input::placeholder {
      color: var(--gray-400);
    }

    .form-input:hover {
      border-color: var(--gray-400);
    }

    .form-input:focus {
      border-color: var(--idura-purple);
      box-shadow: 0 0 0 3px rgba(96, 79, 237, 0.12);
    }

    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      font-family: var(--font-primary);
      font-size: 15px;
      color: var(--idura-black);
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      outline: none;
      resize: vertical;
      min-height: 100px;
      transition: border-color var(--ease), box-shadow var(--ease);
    }

    .form-textarea::placeholder {
      color: var(--gray-400);
    }

    .form-textarea:hover {
      border-color: var(--gray-400);
    }

    .form-textarea:focus {
      border-color: var(--idura-purple);
      box-shadow: 0 0 0 3px rgba(96, 79, 237, 0.12);
    }

    .form-char-count {
      text-align: right;
      font-size: 12px;
      color: var(--gray-400);
      margin-top: 4px;
    }

    .form-select {
      padding: 12px 12px;
      font-family: var(--font-primary);
      font-size: 15px;
      color: var(--idura-black);
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md) 0 0 var(--radius-md);
      outline: none;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239E9EB0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      padding-right: 30px;
      min-width: 90px;
      transition: border-color var(--ease);
    }

    .form-select:hover {
      border-color: var(--gray-400);
    }

    .form-select:focus {
      border-color: var(--idura-purple);
      box-shadow: 0 0 0 3px rgba(96, 79, 237, 0.12);
    }

    .form-phone-group {
      display: flex;
    }

    .form-phone-group .form-select {
      border-right: none;
      flex-shrink: 0;
    }

    .form-phone-group .form-input {
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }

    .form-phone-group .form-input:focus {
      z-index: 1;
    }

    /* Checkbox */
    .form-checkbox-wrapper {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      padding: 16px 20px;
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      transition: border-color var(--ease), background var(--ease);
    }

    .form-checkbox-wrapper:hover {
      border-color: var(--gray-400);
    }

    .form-checkbox-wrapper input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 1px;
      accent-color: var(--idura-purple);
      flex-shrink: 0;
      cursor: pointer;
    }

    .form-checkbox-label {
      font-size: 15px;
      font-weight: 500;
      color: var(--idura-black);
    }

    .form-checkbox-desc {
      font-size: 13px;
      color: var(--gray-400);
      margin-top: 2px;
    }

    /* Inline checkbox (no card bg) */
    .form-checkbox-inline {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      cursor: pointer;
    }

    .form-checkbox-inline input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--idura-purple);
      flex-shrink: 0;
      cursor: pointer;
    }

    .form-checkbox-inline label {
      font-size: 14px;
      color: var(--gray-600);
      cursor: pointer;
    }

    .form-checkbox-inline label a {
      color: var(--idura-purple);
      text-decoration: underline;
    }

    .form-checkbox-inline label a:hover {
      color: var(--idura-purple-dark);
    }

    /* ── Upload Zone ── */
    .upload-zone {
      border: 2px dashed var(--gray-200);
      border-radius: var(--radius-lg);
      padding: var(--space-12) var(--space-8);
      text-align: center;
      cursor: pointer;
      transition: border-color var(--ease), background var(--ease);
      position: relative;
    }

    .upload-zone:hover {
      border-color: var(--gray-400);
      background: var(--gray-50);
    }

    .upload-zone--dragover {
      border-color: var(--idura-purple);
      background: var(--idura-purple-ghost);
    }

    .upload-zone-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto var(--space-4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--idura-purple);
    }

    .upload-zone h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--idura-black);
      margin-bottom: 4px;
    }

    .upload-zone p {
      font-size: 14px;
      color: var(--gray-400);
    }

    .upload-zone input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }

    /* Uploaded file display */
    .uploaded-file {
      display: flex;
      align-items: center;
      gap: var(--space-4);
      padding: var(--space-4) var(--space-6);
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

    .uploaded-file-icon {
      width: 40px;
      height: 40px;
      background: #FEF2F2;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #DC2626;
      flex-shrink: 0;
    }

    .uploaded-file-info {
      flex: 1;
      min-width: 0;
    }

    .uploaded-file-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--idura-black);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .uploaded-file-size {
      font-size: 13px;
      color: var(--gray-400);
    }

    .uploaded-file-remove {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: transparent;
      color: var(--gray-400);
      cursor: pointer;
      border-radius: var(--radius-sm);
      transition: color var(--ease), background var(--ease);
    }

    .uploaded-file-remove:hover {
      color: #DC2626;
      background: #FEF2F2;
    }

    /* ── Signer Rows ── */
    .signer-rows {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: var(--space-4);
    }

    .wizard-signer-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .wizard-signer-row .form-phone-group {
      flex: 1;
    }

    .signer-remove-btn {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--gray-200);
      background: var(--white);
      color: var(--gray-400);
      cursor: pointer;
      border-radius: var(--radius-sm);
      flex-shrink: 0;
      transition: color var(--ease), background var(--ease), border-color var(--ease);
    }

    .signer-remove-btn:hover {
      color: #DC2626;
      background: #FEF2F2;
      border-color: #FECACA;
    }

    .add-signer-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-primary);
      font-size: 14px;
      font-weight: 600;
      color: var(--idura-purple);
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 0;
      transition: color var(--ease);
    }

    .add-signer-btn:hover {
      color: var(--idura-purple-dark);
    }

    /* Price display */
    .price-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      text-align: right;
      margin-bottom: 4px;
    }

    .price-running {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding: 16px 0;
      border-top: 1px solid var(--gray-200);
      margin-top: var(--space-6);
    }

    .price-running-label {
      font-size: 14px;
      color: var(--gray-600);
    }

    .price-running-amount {
      font-size: 20px;
      font-weight: 700;
      color: var(--idura-black);
    }

    /* ── Review Sections ── */
    .review-section {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      overflow: hidden;
    }

    .review-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: var(--gray-50);
      border-bottom: 1px solid var(--gray-100);
    }

    .review-section-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-600);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .review-section-action {
      font-size: 14px;
      font-weight: 500;
      color: var(--idura-purple);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: color var(--ease);
    }

    .review-section-action:hover {
      color: var(--idura-purple-dark);
      text-decoration: underline;
    }

    .review-section-body {
      padding: 16px 20px;
    }

    .review-file-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-file-icon {
      width: 36px;
      height: 36px;
      background: #FEF2F2;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #DC2626;
      flex-shrink: 0;
    }

    .review-signer-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
    }

    .review-signer-item:not(:last-child) {
      border-bottom: 1px solid var(--gray-100);
    }

    .review-signer-num {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--idura-purple-ghost);
      color: var(--idura-purple);
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .review-signer-phone {
      font-size: 15px;
      font-weight: 500;
      color: var(--idura-black);
    }

    .review-signer-price {
      margin-left: auto;
      font-size: 14px;
      color: var(--gray-400);
    }

    .review-message-text {
      font-size: 15px;
      color: var(--gray-600);
      line-height: var(--leading-body);
      font-style: italic;
    }

    /* Price summary */
    .price-summary {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 20px;
      margin-bottom: var(--space-6);
    }

    .price-line {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: var(--gray-600);
      margin-bottom: 12px;
    }

    .price-total {
      display: flex;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid var(--gray-200);
      font-weight: 700;
      color: var(--idura-black);
    }

    .price-total-label {
      font-size: 16px;
    }

    .price-total-amount {
      font-size: 22px;
    }

    /* ── Wizard Navigation ── */
    .wizard-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: var(--space-10);
      padding-top: var(--space-6);
      border-top: 1px solid var(--gray-200);
    }

    .wizard-nav .btn {
      flex: 1;
    }

    .wizard-nav .btn:disabled,
    .wizard-nav .btn[disabled] {
      opacity: 0.4;
      pointer-events: none;
    }

    .wizard-nav-hint {
      text-align: center;
      font-size: 13px;
      color: var(--gray-400);
      margin-top: 12px;
    }

    .wizard-nav-hint svg {
      display: inline;
      vertical-align: -2px;
      margin-right: 4px;
    }

    /* ── Payment Success Banner ── */
    .success-banner {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: #EEFBF4;
      border: 1px solid #B8E6CE;
      border-radius: var(--radius-md);
      padding: 18px 20px;
      margin-bottom: var(--space-6);
      animation: successSlideIn 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    @keyframes successSlideIn {
      from {
        opacity: 0;
        transform: translateY(-12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .success-banner-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      border-radius: 50%;
      background: #2D8B5F;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .success-banner-content {
      flex: 1;
      min-width: 0;
    }

    .success-banner-title {
      font-weight: 600;
      font-size: 15px;
      color: #1A5E3B;
      margin-bottom: 4px;
    }

    .success-banner-text {
      font-size: 14px;
      color: #2D8B5F;
      line-height: 1.5;
    }

    .success-banner-dismiss {
      background: none;
      border: none;
      cursor: pointer;
      color: #2D8B5F;
      padding: 4px;
      border-radius: var(--radius-sm);
      opacity: 0.6;
      transition: opacity var(--ease);
      flex-shrink: 0;
    }

    .success-banner-dismiss:hover {
      opacity: 1;
    }

    .success-banner-dismiss:focus-visible {
      outline: 2px solid #2D8B5F;
      outline-offset: 2px;
    }

    /* ── Responsive: App pages ── */
    @media (max-width: 768px) {
      .app-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
      }

      .order-card-main {
        grid-template-columns: 1fr;
        gap: var(--space-4);
      }

      .order-card-right {
        justify-content: space-between;
      }

      .order-expand-actions {
        flex-wrap: wrap;
      }

      .wizard-step-label {
        display: none;
      }

      .wizard-step-connector {
        width: 32px;
        margin: 0 8px;
      }

      .wizard-nav {
        flex-direction: column;
      }

      .wizard-nav .btn {
        width: 100%;
      }
    }

    /* ── Voucher Section ── */
    .voucher-section {
      margin-bottom: var(--space-6);
    }

    .voucher-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--idura-purple);
      cursor: pointer;
      padding: 6px 0;
      transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .voucher-toggle:hover {
      color: var(--idura-purple-dark);
    }

    .voucher-toggle svg {
      flex-shrink: 0;
    }

    .voucher-input-row {
      display: flex;
      gap: 10px;
      margin-top: 12px;
      align-items: stretch;
    }

    .voucher-code-input {
      flex: 1;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      font-size: 15px !important;
    }

    .voucher-apply-btn {
      padding: 12px 24px !important;
      white-space: nowrap;
      font-size: 14px !important;
    }

    .voucher-error {
      margin-top: 10px;
      font-size: 13px;
      font-weight: 500;
      color: #D93025;
      padding: 10px 14px;
      background: #FEF0EF;
      border: 1px solid #FCCFCB;
      border-radius: var(--radius-sm);
    }

    .voucher-applied {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 12px;
      padding: 12px 16px;
      background: #ECFDF5;
      border: 1px solid #A7F3D0;
      border-radius: var(--radius-md);
    }

    .voucher-applied-info {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #065F46;
    }

    .voucher-applied-info svg {
      color: #059669;
      flex-shrink: 0;
    }

    .voucher-remove-btn {
      background: none;
      border: none;
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      color: #DC2626;
      cursor: pointer;
      padding: 4px 8px;
      border-radius: var(--radius-sm);
      transition: background 0.15s ease;
    }

    .voucher-remove-btn:hover {
      background: rgba(220, 38, 38, 0.08);
    }

    .voucher-remove-btn:focus-visible {
      outline: 2px solid #DC2626;
      outline-offset: 2px;
    }
