  /* ============================================
     PREMIUM FONTS - La Réserve Paris Style
     ============================================
     REQUIRED LICENSES:
     1. Canela-Light (Commercial Type)
     2. Avenir Next LT W04 Condensed (Linotype)
     3. Avenir Next LT W04 Bold Condensed (Linotype)
     
     To activate: Upload font files to /fonts/ directory
     and uncomment @font-face declarations below
  ============================================ */
  
  /* CANELA-LIGHT - Primary Serif for Quote Overlay */
  @font-face {
    font-family: 'Canela-Light';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/nc_assets/fonts/Canela/Canela-Light.eot');
    src: url('/nc_assets/fonts/Canela/Canela-Light.eot?#iefix') format('embedded-opentype'),
         url('/nc_assets/fonts/Canela/Canela-Light.woff2') format('woff2'),
         url('/nc_assets/fonts/Canela/Canela-Light.woff') format('woff'),
         url('/nc_assets/fonts/Canela/Canela-Light.ttf') format('truetype'),
         url('/nc_assets/fonts/Canela/Canela-Light.svg#Canela-Light') format('svg');
  }
  
  /* AVENIR NEXT LT W04 CONDENSED - Labels */
  @font-face {
    font-family: 'Avenir Next LT W04 Condensed';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/nc_assets/fonts/Avenir/AvenirNextLTW04Cond.eot');
    src: url('/nc_assets/fonts/Avenir/AvenirNextLTW04Cond.eot?#iefix') format('embedded-opentype'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04Cond.woff2') format('woff2'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04Cond.woff') format('woff'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04Cond.ttf') format('truetype'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04Cond.svg#AvenirNextLTW04Cond') format('svg');
  }
  
  /* AVENIR NEXT LT W04 BOLD CONDENSED - Buttons */
  @font-face {
    font-family: 'Avenir Next LT W04 Bold Cond';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/nc_assets/fonts/Avenir/AvenirNextLTW04BoldCond.eot');
    src: url('/nc_assets/fonts/Avenir/AvenirNextLTW04BoldCond.eot?#iefix') format('embedded-opentype'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04BoldCond.woff2') format('woff2'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04BoldCond.woff') format('woff'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04BoldCond.ttf') format('truetype'),
         url('/nc_assets/fonts/Avenir/AvenirNextLTW04BoldCond.svg#AvenirNextLTW04BoldCond') format('svg');
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    /* Page-width convention: --shell-width for chrome (header/footer),
       --content-width for body sections. institutions-ribbon is the
       one deliberate exception and stays full-bleed. */
    --shell-width: 1300px;
    --content-width: 900px;
    --space-blue: #0f172a;
    --space-blue-light: #1e293b;
    --royal-blue: #1e3a5f;
    --royal-blue-light: #2d4a6f;
    --gold: #E8C547;
    --gold-deep: #cc9933;

    /* Second token vocabulary used by category-fit / proof-ledger modules —
       these were referenced throughout the file but never defined, so every
       card using them was silently rendering with no background, no border,
       and collapsed padding. Aliased onto the primary tokens so both
       vocabularies resolve to the same actual design. */
    --ink: var(--space-blue);
    --ink-soft: var(--text-secondary);
    --rule: var(--border);
    --border-light: var(--border);
    --bg-public: rgba(254, 254, 254, 0.7);
    --bg-subtle: #eef2f7;
    --font-label: var(--font-body);
    --font-quote-sans: var(--font-body);
    --heritage-gold: var(--gold-deep);
    --s-1: 0.25rem;
    --s-2: 0.5rem;
    --s-3: 0.75rem;
    --s-4: 1rem;
    --s-5: 1.25rem;
    --s-6: 1.5rem;
    --s-7: 2rem;
    --s-8: 2.5rem;
    --s-9: 3rem;
    --s-10: 4rem;
    --s-11: 5rem;
    --s-12: 6rem;
    --gold-light: #d4b43a;
    --ocean-white: #e0f2fe;
    --ocean-light: #f0f9ff;
    --bg: #f7f7f7;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --border: #e2e8f0;
    
    /* Homepage Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'IBM Plex Sans', system-ui, sans-serif;
    
    /* Quote Overlay Fonts - La Réserve Paris Style */
    --font-quote-serif: 'Canela-Light', 'Playfair Display', Calibri, Georgia, serif;
    --font-quote-label: 'Avenir Next LT W04 Condensed', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-quote-button: 'Avenir Next LT W04 Bold Cond', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Heritage Background - centered, scale until an edge touches (no overscan) */
  .heritage-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f7f7f7;
    background-image: radial-gradient(circle at 20% 30%, rgba(224, 242, 254, 0.45) 0%, transparent 55%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
    pointer-events: none;
  }

  .heritage-background.visible {
    opacity: 0.08;
  }

  @media (max-width: 968px) {
    .heritage-background {
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
    }

    /* Mobile Header Adjustments */
    header {
      padding: 1rem 1.5rem;
    }

    header.header-scrolled {
      padding: 0.875rem 1.5rem;
    }

    .header-right {
      gap: 0.75rem;
    }

    /* Hide Contact Icons on Mobile (keep language selector visible) */
    .contact-icon-btn {
      display: none;
    }

    .contact-divider {
      display: none;
    }

    /* Show Only Quote Now Button on Mobile */
    .quote-now-btn {
      padding: 0.5rem 1.125rem;
      font-size: 0.75rem;
      letter-spacing: 1px;
    }

    .header-logo {
      font-size: 1.1rem;
    }
  }

  /* Narrow mobile: drop BEGIN TRANSLATING button to its own row */
  @media (max-width: 483px) {
    .header-inner > .quote-now-btn {
      flex-basis: 100%;
      order: 3;
      margin: 0.25rem 0 0 0;
      text-align: center;
      font-size: 0.75rem;
      padding: 0.5rem 1rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-logo {
      order: 2;
      flex-basis: 100%;
      margin: 0.25rem 0;
    }

    .header-right {
      order: 3;
    }
  }

  /* Minimal Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 3rem;
    background: transparent;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
  }

  /* Header states */
  header.header-hidden {
    transform: translateY(-100%);
  }

  header.header-scrolled {
    background: #7fa6dd2e;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    padding: 1.25rem 3rem;
  }

  .header-inner {
    max-width: var(--shell-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem 2rem;
  }

  /* Hamburger Menu Button */
  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-self: start;
    transition: opacity 0.2s ease;
  }

  .hamburger-btn:hover {
    opacity: 0.7;
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--space-blue);
    transition: all 0.3s ease;
  }

  /* Centered homepage backlink */
  .header-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--space-blue);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .header-logo:hover {
    opacity: 0.7;
  }

  /* Right Side: Language + CTA */
  .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
  }

  /* Language Selector - Icon Only (matches contact icons) */
  .language-selector {
    position: relative;
  }

  .language-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
  }

  .language-button:hover {
    background: rgba(15, 23, 42, 0.03);
  }

  /* Language Globe Icon */
  .language-icon {
    color: var(--space-blue);
    transition: all 0.3s ease;
  }

  .language-button:hover .language-icon {
    color: #3474cd;
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.15));
  }

  /* Flag Icons in Dropdown */
  .flag-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
  }


  .language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
  }

  .language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
  }

  .language-option:last-child {
    border-bottom: none;
  }

  .language-option:hover {
    background: rgba(224, 242, 254, 0.3);
  }

  .language-name {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 400;
  }

  /* Premium Contact Icons & Quote Button */
  .header-contact-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .contact-icon-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
  }

  .contact-icon {
    color: var(--space-blue);
    transition: all 0.3s ease;
  }

  .contact-icon-btn:hover .contact-icon {
    color: #3474cd;
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.15));
  }

  .message-tooltip {
    font-size: 0.65rem;
    font-weight: 600;
    margin-left: 0.35rem;
    color: var(--space-blue);
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .contact-divider {
    width: 1px;
    height: 24px;
    background: rgba(15, 23, 42, 0.15);
  }

  /* Quote Now Button - Premium Outlined Style */
  .quote-now-btn {
    padding: 0.625rem 1.5rem;
    background: transparent;
    border: 1.5px solid var(--space-blue);
    color: var(--space-blue);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
  }

  .quote-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--space-blue);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .quote-now-btn:hover {
    color: white;
    border-color: var(--space-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  }

  .quote-now-btn:hover::before {
    left: 0;
  }

  .quote-now-btn:active {
    transform: translateY(0);
  }

  /* Fullscreen Quote Overlay */
  .quote-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f3ef;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
  }

  .quote-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .quote-overlay-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
  }

  .quote-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: transparent;
    border: 1.5px solid #E8C547;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .quote-close svg {
    color: #E8C547;
    transition: color 0.3s ease;
  }

  .quote-close:hover {
    border-color: #d4a574;
    background: rgba(232, 197, 71, 0.05);
  }

  .quote-close:hover svg {
    color: #d4a574;
  }

  .quote-form-container {
    max-width: 1100px;
    width: 100%;
  }

  .quote-title {
    font-family: var(--font-quote-serif);
    font-size: 3.5rem;  /* 56px - matches La Réserve Paris */
    font-weight: 400;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .quote-subtitle {
    font-family: var(--font-quote-label);
    font-size: 0.875rem;  /* 14px */
    font-weight: 400;
    text-align: center;
    color: rgba(15, 23, 42, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }

  /* Upload Section */
  .quote-upload-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: center;
  }

  .quote-upload-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 1.5px solid var(--space-blue);
    color: var(--space-blue);
    font-family: var(--font-quote-button);
    font-size: 0.8125rem;  /* 13px */
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .quote-upload-btn:hover {
    background: var(--space-blue);
    color: white;
  }

  .quote-upload-btn svg {
    flex-shrink: 0;
  }

  .quote-dropzone {
    flex: 1;
    max-width: 400px;
    padding: 1rem 2rem;
    border: 1.5px dashed rgba(148, 110, 85, 0.4);
    border-radius: 2px;
    text-align: center;
    font-family: var(--font-quote-label);
    font-size: 0.8125rem;  /* 13px */
    color: rgba(15, 23, 42, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(148, 110, 85, 0.02);
  }

  .quote-dropzone.dragover {
    border-color: rgba(148, 110, 85, 0.8);
    background: rgba(148, 110, 85, 0.05);
    color: rgba(15, 23, 42, 0.8);
  }

  .quote-dropzone.has-file {
    border-color: #E8C547;
    background: rgba(232, 197, 71, 0.05);
    color: var(--text-primary);
  }

  /* Upload Progress Bar */
  .quote-upload-progress {
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
  }

  .progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(148, 110, 85, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  .progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #E8C547 0%, #d4a574 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
  }

  .progress-text {
    font-family: var(--font-quote-label);
    font-size: 0.75rem;
    color: rgba(15, 23, 42, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Upload Success Checkmark */
  .quote-upload-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: rgba(232, 197, 71, 0.08);
    border: 1px solid #E8C547;
    border-radius: 2px;
    max-width: 600px;
    animation: slideDown 0.4s ease;
  }

  .quote-upload-success svg {
    color: #E8C547;
    flex-shrink: 0;
  }

  .quote-upload-success span {
    font-family: var(--font-quote-label);
    font-size: 0.8125rem;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Option 3: Add Document One-by-One */
  .quote-documents-list {
    margin: 2rem 0;
  }

  .quote-add-document-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 2px dashed #E8C547;
    color: var(--text-primary);
    font-family: var(--font-quote-button);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin: 0 auto 3rem;
    display: flex;
  }

  .quote-add-document-btn:hover {
    border-color: #d4a574;
    background: rgba(232, 197, 71, 0.05);
  }

  .quote-add-document-btn svg {
    flex-shrink: 0;
  }

  /* Document Card (Option 3) */
  .document-card-opt3 {
    background: white;
    border: 1px solid rgba(148, 110, 85, 0.25);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
  }

  .document-card-opt3:hover {
    border-color: #E8C547;
    box-shadow: 0 4px 12px rgba(232, 197, 71, 0.15);
  }

  .document-card-header-opt3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(232, 197, 71, 0.2);
  }

  .document-card-number {
    font-family: var(--font-quote-label);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.5);
    font-weight: 700;
  }

  .document-card-remove-opt3 {
    background: transparent;
    border: none;
    color: rgba(15, 23, 42, 0.3);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
  }

  .document-card-remove-opt3:hover {
    color: #dc2626;
  }

  .document-upload-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(232, 197, 71, 0.04);
    border: 1.5px dashed rgba(232, 197, 71, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .document-upload-area:hover {
    border-color: #E8C547;
    background: rgba(232, 197, 71, 0.08);
  }

  .document-upload-area.has-file {
    border-color: #E8C547;
    border-style: solid;
    background: rgba(232, 197, 71, 0.12);
  }

  .upload-icon {
    color: rgba(232, 197, 71, 0.7);
    flex-shrink: 0;
  }

  .document-upload-area.has-file .upload-icon {
    color: #E8C547;
  }

  .upload-text {
    flex: 1;
    font-family: var(--font-quote-label);
    font-size: 0.8125rem;
    color: rgba(15, 23, 42, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .document-upload-area.has-file .upload-text {
    color: var(--text-primary);
    font-family: var(--font-quote-serif);
    text-transform: none;
    font-size: 0.9375rem;
  }

  /* Elegant File List */
  .file-list-container {
    margin-bottom: 1.5rem;
  }

  .file-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .file-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: rgba(232, 197, 71, 0.08);
    border: 1px solid rgba(232, 197, 71, 0.3);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-primary);
  }

  .file-item svg {
    flex-shrink: 0;
    color: var(--gold);
  }

  .file-item .file-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .file-item .file-remove {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }

  .file-item .file-remove:hover {
    color: #dc2626;
  }

  .add-more-files-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1.5px dashed rgba(30, 58, 95, 0.3);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--royal-blue);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .add-more-files-btn:hover {
    border-color: var(--royal-blue);
    background: rgba(30, 58, 95, 0.04);
  }

  .document-card-fields-opt3 {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr) minmax(110px, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .document-card-price-opt3 {
    text-align: right;
    font-family: var(--font-quote-serif);
    font-size: 1.125rem;
    color: #9b7355;
    padding-top: 0.5rem;
  }

  .document-card-price-opt3 strong {
    font-weight: 600;
    color: var(--text-primary);
  }

  /* Shared Settings Section (Option 3) */
  .quote-shared-settings-opt3 {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 2px solid rgba(148, 110, 85, 0.2);
  }

  .shared-settings-title {
    font-family: var(--font-quote-serif);
    font-size: 0.875rem;
    text-align: center;
    color: rgba(15, 23, 42, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 400;
  }

  /* User Information Section */
  .quote-user-info {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 2px solid rgba(148, 110, 85, 0.2);
  }

  .quote-total-pages-display {
    font-family: var(--font-quote-serif);
    font-size: 1.375rem;  /* 22px - matches TOTAL PRICE */
    font-weight: 400;
    color: #9b7355;
    border-bottom: 1px solid rgba(148, 110, 85, 0.4);
    padding: 0.75rem 0;
    min-height: 3.375rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
  }

  /* Total Section (Option 3) */
  .quote-total-section-opt3 {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(232, 197, 71, 0.05);
    border: 1px solid #E8C547;
    border-radius: 2px;
  }

  .quote-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .quote-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .quote-field-small {
    grid-column: span 1;
  }

  .quote-label {
    font-family: var(--font-quote-label);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3em;
    line-height: 1.45em;
    text-transform: uppercase;
    color: #1c1c1a;
    text-align: center;
  }

  .quote-select,
  .quote-input {
    font-family: var(--font-quote-serif);
    font-size: 1.375rem;  /* 22px - matches La Réserve Paris booking inputs */
    font-weight: 400;
    color: #9b7355;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(148, 110, 85, 0.4);
    padding: 0.75rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    min-width: 0;
    width: 100%;
    background-image: url('/nc_assets/img/icons/dropdown.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px 20px;
    padding-right: 2.5rem;
    line-height: 1.4;
  }

  .quote-input {
    background-image: none;
    padding-right: 0;
  }

  /* Hide default number input spinners */
  .quote-input[type="number"]::-webkit-inner-spin-button,
  .quote-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .quote-input[type="number"] {
    -moz-appearance: textfield;
  }

  /* Custom number input container */
  .quote-number-input {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(148, 110, 85, 0.4);
    min-width: 0;
  }

  .quote-number-input .quote-input {
    border-bottom: none;
    flex: 1;
    padding-right: 0;
    min-width: 0;
  }

  /* Hide native number spinners so custom arrows fit */
  .pages-opt3::-webkit-outer-spin-button,
  .pages-opt3::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .pages-opt3 {
    -moz-appearance: textfield;
  }

  /* Custom arrow buttons */
  .quote-number-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(148, 110, 85, 0.6);
    transition: color 0.3s ease;
    margin-left: 8px;
  }

  .quote-number-btn img {
    width: 20px;
    height: 20px;
    display: block;
  }

  .quote-number-btn:hover {
    color: rgba(148, 110, 85, 1);
  }

  .quote-number-btn:active {
    transform: scale(0.95);
  }

  /* Rotate dropdown.svg arrows to point left and right */
  .quote-number-decrease img {
    transform: rotate(90deg);  /* Rotate 90° clockwise → points left < */
  }

  .quote-number-increase img {
    transform: rotate(-90deg);  /* Rotate 90° counter-clockwise → points right > */
  }

  .quote-select:focus,
  .quote-input:focus {
    outline: none;
    border-bottom-color: #9b7355;
  }

  /* Urgency Note - URGENT Availability Messages */
  .urgency-note {
    margin-top: 0.75rem;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 4px;
    text-align: center;
  }

  .urgency-note.available {
    background: rgba(11, 107, 47, 0.08);
    border: 1px solid rgba(11, 107, 47, 0.2);
    color: #0b6b2f;
  }

  .urgency-note.unavailable {
    background: rgb(85 136 255 / 8%);
    border: 1px solid rgba(254, 254, 254, 0.7);
    color: #186b41;
  }

  .urgency-note strong {
    font-weight: 600;
  }

  .quote-price {
    font-family: var(--font-quote-serif);
    font-size: 1.375rem;  /* 22px - matches inputs */
    font-weight: 400;
    color: #9b7355;
    border-bottom: 1px solid rgba(148, 110, 85, 0.4);
    padding: 0.75rem 0;
    min-height: 3.375rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
  }

  .quote-currency-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .quote-currency-toggle.visible {
    display: flex;
  }
  .quote-currency-toggle .currency-label {
    font-family: var(--font-quote-label);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5d4a3a;
  }
  .quote-currency-toggle .currency-btn {
    font-family: var(--font-quote-label);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(148, 110, 85, 0.4);
    background: transparent;
    color: #5d4a3a;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
  }
  .quote-currency-toggle .currency-btn.active {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
  }
  .quote-currency-toggle .currency-btn:not(.active):hover {
    border-color: #1e3a5f;
    color: #1e3a5f;
  }

  .quote-turkey-law {
    display: none;
    margin: 0.75rem 0 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(30, 58, 95, 0.06);
    border-left: 3px solid #1e3a5f;
    border-radius: 2px;
  }
  .quote-turkey-law.visible {
    display: block;
  }
  .quote-turkey-law p {
    margin: 0 0 0.35rem;
    font-family: var(--font-quote-sans);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #1e3a5f;
    text-align: center;
  }
  .quote-turkey-law p:last-child {
    margin-bottom: 0;
  }

  /* Volume Discount Display */
  .volume-discount-display {
    margin: 1.5rem auto 0;
    padding: 0.875rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    max-width: 500px;
  }

  .volume-discount-display.active {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 1px solid #81c784;
    color: #2e7d32;
  }

  .volume-discount-display.hint {
    background: rgba(232, 197, 71, 0.08);
    border: 1px dashed rgba(232, 197, 71, 0.5);
    color: var(--text-secondary);
    font-weight: 400;
  }

  /* Upload Info Modal */
  .upload-info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .upload-info-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .upload-info-modal {
    background: #fbfeff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }

  .upload-info-modal-overlay.active .upload-info-modal {
    transform: scale(1);
  }

  .upload-info-modal .info-message {
    font-family: 'Canela-Light', Georgia, serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .upload-info-modal .info-formats {
    font-family: 'Avenir Next LT W04 Condensed', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2rem;
  }

  .upload-info-modal .continue-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: #2daf68;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    min-width: 160px;
  }

  .upload-info-modal .continue-btn:hover {
    background: linear-gradient(135deg, var(--royal-blue-light) 0%, var(--royal-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 95, 0.4);
  }

  .upload-info-modal .continue-btn:active {
    transform: translateY(0);
  }

  /* Custom Confirmation Modal - 1.2x larger than upload modal */
  .confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .confirm-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .confirm-modal {
    background: #fbfeff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.3);
  }

  .confirm-modal-overlay.active .confirm-modal {
    transform: scale(1);
  }

  .confirm-modal-title {
    font-family: var(--font-quote-serif);
    font-size: 1.5rem;
    color: var(--space-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    flex-shrink: 0;
  }

  .confirm-modal-content {
    font-family: var(--font-quote-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    white-space: pre-line;
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
  }

  .confirm-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-shrink: 0;
  }

  .confirm-modal-btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: var(--font-quote-label);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 140px;
  }

  .confirm-modal-btn.primary {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
    color: white;
  }

  .confirm-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 95, 0.4);
  }

  .confirm-modal-btn.secondary {
    background: transparent;
    color: var(--space-blue);
    border: 2px solid var(--border-light);
  }

  .confirm-modal-btn.secondary:hover {
    border-color: var(--space-blue);
    background: rgba(30, 58, 95, 0.05);
  }

  @media (max-width: 640px) {
    .confirm-modal {
      padding: 1.5rem;
    }
    .confirm-modal-title {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
    .confirm-modal-content {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .confirm-modal-btn {
      padding: 0.75rem 1.5rem;
    }
  }

  .quote-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
  }

  .quote-add-notes {
    font-family: var(--font-quote-label);
    font-size: 0.875rem;  /* 14px */
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--space-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
  }

  .quote-add-notes:hover {
    color: #3474cd;
  }

  .quote-submit {
    padding: 1rem 3rem;
    background: transparent;
    border: 1.5px solid var(--space-blue);
    color: var(--space-blue);
    font-size: 0.8125rem;  /* 13px */
    font-weight: 700;
    letter-spacing: 0.3em;  /* Wide tracking like La Réserve Paris */
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    font-family: var(--font-quote-button);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }

  .quote-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--space-blue);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .quote-submit:hover {
    color: white;
  }

  .quote-submit:hover::before {
    left: 0;
  }

  .quote-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(15, 23, 42, 0.2);
    color: rgba(15, 23, 42, 0.3);
  }

  .quote-submit:disabled:hover {
    color: rgba(15, 23, 42, 0.3);
  }

  .quote-submit:disabled::before {
    display: none;
  }

  /* Quote Footer Help Link - Subtle Large Volume Option */
  .quote-footer-help {
    display: block;
    text-align: center;
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(148, 110, 85, 0.12);
    margin-top: 2.5rem;
    width: 100%;
    max-width: 100%;
    clear: both;
  }

  .help-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    display: block;
  }

  .help-link {
    color: var(--heritage-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .help-link:hover {
    border-bottom-color: var(--heritage-gold);
    color: #d4a574;
  }

  /* Phone Input with Country Code */
  .phone-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .phone-country-select {
    font-family: var(--font-quote-label);
    font-size: 0.9375rem;
    padding: 0.75rem 0.5rem;
    border: none;
    border-bottom: 1px solid rgba(148, 110, 85, 0.4);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    min-width: 100px;
    flex-shrink: 0;
  }

  .phone-country-select:focus {
    outline: none;
    border-bottom-color: #9b7355;
  }

  .phone-number-input {
    font-family: var(--font-quote-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: #9b7355;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(148, 110, 85, 0.4);
    padding: 0.75rem 0;
    flex: 1;
  }

  .phone-number-input:focus {
    outline: none;
    border-bottom-color: #9b7355;
  }

  .phone-number-input::placeholder {
    color: rgba(148, 110, 85, 0.4);
  }

  /* Notes Section */
  .quote-notes-section {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .quote-add-notes {
    font-family: var(--font-quote-label);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--space-blue);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;
    padding: 0;
  }

  .quote-add-notes:hover {
    color: #3474cd;
  }

  .quote-notes-field {
    margin-top: 1.5rem;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .quote-notes-textarea {
    width: 100%;
    font-family: var(--font-quote-serif);
    font-size: 0.9375rem;
    color: var(--text-primary);
    border: 1px solid rgba(148, 110, 85, 0.4);
    border-radius: 2px;
    padding: 0.875rem;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
  }

  .quote-notes-textarea:focus {
    outline: none;
    border-color: var(--space-blue);
  }

  .quote-notes-textarea::placeholder {
    color: rgba(15, 23, 42, 0.3);
    font-style: italic;
  }

  .quote-save-note {
    margin-top: 0.75rem;
    padding: 0.625rem 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(148, 110, 85, 0.4);
    color: #9b7355;
    font-family: var(--font-quote-label);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-weight: 600;
  }

  .quote-save-note:hover {
    background: rgba(148, 110, 85, 0.05);
    border-color: #9b7355;
  }

  .quote-save-note.saved {
    background: rgba(45, 175, 104, 0.1);
    border-color: #2daf68;
    color: #2daf68;
  }

  .quote-save-note.saved:hover {
    background: rgba(45, 175, 104, 0.15);
  }

  /* Verification Section Wrapper - Groups slider and submit button */
  .quote-verification-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  /* Human Verification */
  .quote-verification {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  /* Slide to Continue Verification */
  .slide-verify-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
  }

  .slide-verify-track {
    position: relative;
    height: 60px;
    background: rgba(232, 197, 71, 0.08);
    border: 1.5px solid rgba(148, 110, 85, 0.3);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .slide-verify-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(232, 197, 71, 0.15), rgba(232, 197, 71, 0.25));
    transition: width 0.1s ease-out;
    pointer-events: none;
  }

  .slide-verify-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-quote-label);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: #9b7355;
    text-transform: uppercase;
    font-weight: 500;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
  }

  .slide-verify-handle {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #E8C547, #d4a574);
    border-radius: 50%;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }

  .slide-verify-handle:active {
    cursor: grabbing;
    transform: scale(1.05);
  }

  .slide-verify-handle svg {
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  }

  .slide-verify-container.verified .slide-verify-track {
    background: rgba(232, 197, 71, 0.15);
    border-color: #E8C547;
  }

  .slide-verify-container.verified .slide-verify-fill {
    width: 100% !important;
    background: linear-gradient(90deg, rgba(232, 197, 71, 0.2), rgba(232, 197, 71, 0.3));
  }

  .slide-verify-container.verified .slide-verify-text {
    color: white;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(232, 197, 71, 0.6), 
                 0 0 16px rgba(232, 197, 71, 0.4);
  }

  .slide-verify-container.verified .slide-verify-handle {
    background: linear-gradient(135deg, #E8C547, #FFD700);
    box-shadow: 0 4px 12px rgba(232, 197, 71, 0.4);
  }

  /* Corporate Overlay Sections */
  .corporate-section {
    margin-bottom: 2.5rem;
  }

  .corporate-section-title {
    font-family: var(--font-quote-serif);
    font-size: 1.125rem;
    color: #2E5C8A;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(46, 92, 138, 0.2);
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .verification-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
  }

  .verification-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(148, 110, 85, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background: white;
    position: relative;
  }

  .verification-checkbox input[type="checkbox"]:checked {
    background: #2E5C8A;
    border-color: #2E5C8A;
  }

  .verification-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
  }

  .verification-text {
    font-family: var(--font-quote-label);
    font-size: 0.8125rem;
    color: rgba(15, 23, 42, 0.7);
    letter-spacing: 0.05em;
  }

  /* Mobile Responsive */
  @media (max-width: 968px) {
    .quote-overlay-content {
      padding: 4rem 1.5rem 3rem;
    }

    .quote-close {
      top: 1.5rem;
      right: 1.5rem;
      width: 40px;
      height: 40px;
    }

    .quote-title {
      font-size: 2.25rem;
      margin-bottom: 2.5rem;
    }

    .quote-row {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .quote-field-small {
      grid-column: span 1;
    }

    .quote-select,
    .quote-input,
    .quote-price {
      font-size: 1.25rem;
    }

    /* Document card fields stack on mobile */
    .document-card-fields-opt3 {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .document-card-price-opt3 {
      text-align: left;
      margin-top: 0.5rem;
    }

    .quote-actions {
      flex-direction: column;
      gap: 1.5rem;
      align-items: stretch;
    }

    /* Phone input on mobile */
    .phone-input-wrapper {
      flex-direction: column;
      gap: 0.5rem;
    }

    .phone-country-select {
      width: 100%;
      min-width: auto;
    }

    .phone-number-input {
      width: 100%;
    }

    .quote-notes-section {
      max-width: 100%;
    }

    .quote-verification-section {
      gap: 1.5rem;
    }

    .quote-verification {
      margin: 0;
      justify-content: flex-start;
    }

    .quote-submit {
      width: 100%;
      padding: 1.125rem 2rem;
    }
  }

  /* Slide-in Menu */
  .slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0s 0.3s;
  }

  .slide-menu.active {
    visibility: visible;
    transition: visibility 0s;
  }

  .slide-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .slide-menu.active .slide-menu-overlay {
    opacity: 1;
  }

  .slide-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: min(400px, 33.333vw);
    height: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .slide-menu.active .slide-menu-content {
    transform: translateX(0);
  }

  .slide-menu-header {
    padding: 2rem 2rem 1rem 2rem;
    display: flex;
    justify-content: flex-end;
  }

  .slide-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--space-blue);
    padding: 0.5rem;
    transition: opacity 0.2s ease;
  }

  .slide-menu-close:hover {
    opacity: 0.7;
  }

  .slide-menu-links {
    padding: 1rem 0;
  }

  .slide-menu-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
  }

  .slide-menu-link:hover {
    background: rgba(224, 242, 254, 0.3);
    border-left-color: var(--space-blue);
    color: var(--space-blue);
  }

  /* Main Container */
  main {
    position: relative;
    z-index: 2;
    padding-top: 0;
  }

  .container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
  }

  .wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Hero - Zen Simplicity */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--header-height, 112px) + 2rem) 0 7rem;
    background: transparent;
  }

  .hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
  }

  .hero-logo-icon {
    width: 120px;
    height: 120px;
    opacity: 0.9;
  }

  .hero-logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--space-blue);
    letter-spacing: 4px;
  }

  .hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #3474cd;
    margin-bottom: 0px;
    font-weight: 500;
    width: 90%;
    max-width: var(--content-width);
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--space-blue);
    margin-bottom: 3rem;
    max-width: var(--content-width);
  }

  .hero-line {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.35em;
    flex-wrap: wrap;
  }

  .hero-slot {
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .hero-slot.fade-out {
    opacity: 0;
    transform: translateY(0.08em);
  }

  .hero-slot:empty,
  .hero-slot.hero-slot-empty {
    display: none;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #3d5a81;
    margin-bottom: 0.625rem;
    max-width: 1000px;
    font-weight: 350;
    text-shadow: 0 0 12px rgba(253, 255, 220, 0.55),
                 0 0 20px rgba(255, 255, 255, 0.44);
  }

  /* Hero Translation Selectors */
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: transparent;
    border: 1.5px solid #2E5C8A;
    color: #2E5C8A;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .hero-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .hero-cta:hover svg {
    transform: translateX(3px);
  }

  .hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2E5C8A, #4A7BA7);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .hero-cta:hover {
    color: white;
    border-color: #2E5C8A;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(46, 92, 138, 0.3);
  }

  .hero-cta:hover::before {
    left: 0;
  }

  /* Hero CTAs Container */
  .hero-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    justify-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto 0;
    width: 100%;
    max-width: var(--content-width);
  }

  .hero-cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
  }

  .hero-cta-divider {
    width: 1px;
    min-height: 100%;
    justify-self: center;
    align-self: center;
    background: linear-gradient(180deg, transparent, var(--gold-deep, #cc9933), transparent);
    opacity: 0.35;
  }

  .hero-cta-grid .hero-verify-form {
    margin-top: 0;
    align-items: center;
    width: 100%;
  }

  .hero-cta-grid .hero-verify-input,
  .hero-cta-grid .hero-cta--verify {
    width: 100%;
    max-width: 48ch;
  }

  .hero-cta-grid .hero-cta-tertiary,
  .hero-cta-grid .hero-cta-diploma {
    margin-top: 0;
    text-align: center;
  }

  /* Value Bar - Transparent Pricing with Glassmorphism */
  .value-bar {
    padding: 2rem 2rem;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-top: 1px solid rgba(226, 232, 240, 0.3);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    text-align: center;
  }

  .value-bar-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
  }

  /* Currency switch (EUR / TRY) */
  .currency-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    user-select: none;
  }

  .currency-switch[hidden] {
    display: none;
  }

  .currency-switch-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-tertiary);
    transition: color 0.2s ease, font-weight 0.2s ease;
  }

  .currency-switch-text.active {
    color: var(--space-blue);
    font-weight: 700;
  }

  .currency-switch input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .currency-switch-slider {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    background: #e2e8f0;
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: background 0.25s ease;
    flex-shrink: 0;
  }

  .currency-switch-slider::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
    transition: transform 0.25s ease;
  }

  .currency-switch input[type="checkbox"]:checked ~ .currency-switch-slider {
    background: var(--space-blue);
    border-color: var(--space-blue);
  }

  .currency-switch input[type="checkbox"]:checked ~ .currency-switch-slider::before {
    transform: translateX(18px);
  }

  .currency-switch input[type="checkbox"]:focus-visible ~ .currency-switch-slider {
    outline: 2px solid var(--space-blue);
    outline-offset: 2px;
  }

  .value-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 1rem;
    font-size: 1rem;
  }

  .value-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .value-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .value-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--space-blue);
    font-family: var(--font-display);
  }

  .free-badge {
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }

  .star-icon {
    font-size: 1rem;
  }

  .value-note-bottom {
    font-size: 0.85rem;
    color: #3d5a81;
    font-weight: 800;
    font-style: italic;
  }

  .value-divider {
    color: var(--border);
    font-size: 1.5rem;
    font-weight: 300;
  }

  /* Why EnLatin - Asymmetric brick-wall reveal */
  .why-enlatin {
    padding: 6rem 2rem;
    background: transparent;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .why-card {
    padding: 2rem 1.5rem;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 8px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    transition:
      opacity var(--brick-duration, 0.9s) var(--brick-ease, cubic-bezier(0.22, 1.5, 0.36, 1)),
      transform var(--brick-duration, 0.9s) var(--brick-ease, cubic-bezier(0.22, 1.5, 0.36, 1)),
      border-color 0.3s ease,
      box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(80px) rotateX(8deg) scale(0.96);
    transition-delay: var(--brick-delay, 0ms);
    will-change: transform, opacity;
  }

  .why-card.is-visible {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }

  .why-hero {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .why-brick.brick-1 { grid-column: 1 / 8; }
  .why-brick.brick-2 { grid-column: 8 / 13; }
  .why-brick.brick-3 { grid-column: 1 / 5; }
  .why-brick.brick-4 { grid-column: 5 / 9; }
  .why-brick.brick-5 { grid-column: 9 / 13; }

  .why-brick.brick-3,
  .why-brick.brick-4,
  .why-brick.brick-5 {
    min-height: 250px;
  }

  .why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(232, 197, 71, 0.03) 40px,
      rgba(232, 197, 71, 0.03) 42px
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
  }

  .why-card:hover::before {
    opacity: 0.6;
  }

  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: var(--ocean-white);
  }

  .why-card.is-visible:hover {
    transform: translateY(-4px) rotateX(0) scale(1);
  }

  .why-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--space-blue);
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    transition: margin-bottom 0.3s ease;
  }

  .why-detail {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .why-card:hover .why-detail {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
  }

  .why-card:hover .why-title {
    margin-bottom: 0.5rem;
  }

  /* Stats Dashboard */
  .stats-section {
    padding: 4rem 2rem;
    background: transparent;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .stat-card {
    text-align: center;
  }

  .stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--space-blue);
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .stat-beko-line {
    display: block;
    margin: 0.5rem auto 0;
    opacity: 0.8;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #3474cd;
    font-weight: 350;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(253, 255, 220, 0.55),
                 0 0 20px rgba(255, 255, 255, 0.44);
  }

  /* Certifications & Memberships */
  .certifications-section {
    padding: 4rem 2rem;
    background: transparent;
    border-top: 1px solid var(--border);
  }

  .certifications-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .certifications-label {
    display: none;
  }

  .badges-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    /* Fixed column: the badge NAME wraps within this width rather than
       setting it. Without this, a longer name (e.g. "ELIA Membership
       Pending") widens its item and pushes the fifth badge onto row two.
       5 x 150px + 4 x 2.5rem gap = 910px, inside the 1100px container. */
    flex: 0 0 150px;
    width: 150px;
  }

  .badge-item:hover {
    opacity: 1;
  }

  .badge-logo {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #E8C547;
    border-radius: 50%;
    padding: 4px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(232, 197, 71, 0.15);
  }

  .badge-item:hover .badge-logo {
    border-color: #D4AF37;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
  }

  .badge-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }

  .badge-item:hover .badge-logo img {
    opacity: 1;
  }

  .badge-name {
    font-size: 0.75rem;
    color: #3474cd;
    font-weight: 350;
    letter-spacing: 0.5px;
    text-transform: none;
    text-align: center;
    line-height: 1.5;
    max-width: 150px;
    text-shadow: 0 0 12px rgba(253, 255, 220, 0.55),
                 0 0 20px rgba(255, 255, 255, 0.44);
  }

  a.badge-item {
    text-decoration: none;
    color: inherit;
  }

  /* The Promise - Emotional Core */
  .promise {
    padding: 8rem 2rem;
    background: transparent;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }

  .promise-quote {
    font-family: 'Calibri', 'Calibri Light', var(--font-display);
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0 0 2.5rem 0;
    font-weight: 300;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }

  .promise-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3d5a81;
    margin: 0 0 2rem 0;
    font-weight: 350;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 12px rgba(253, 255, 220, 0.55),
                 0 0 20px rgba(255, 255, 255, 0.44);
  }

  .promise-attribution {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
  }

  .promise-attribution strong {
    color: var(--space-blue);
    font-weight: 600;
  }

  /* Institutions Ribbon - Triple Row with Logos */
  .institutions-ribbon {
    padding: 4rem 0;
    background: transparent;
    overflow: hidden;
  }

  .institutions-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .institutions-title {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0;
  }

  .institutions-row {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .institutions-row:last-child {
    margin-bottom: 0;
  }

  .institutions-track {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
  }

  .institutions-left {
    animation: scrollLeft 60s linear infinite;
  }

  .institutions-right {
    animation: scrollRight 80s linear infinite;
  }

  /* Pause animation on hover to reduce CPU load */
  .institutions-track:hover {
    animation-play-state: paused;
  }

  .institution-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(148, 163, 184, 0.15);
    border-left: 3px solid rgba(232, 197, 71, 0.4);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transform: translateZ(0);
  }

  .institution-item:hover {
    border-left-color: #E8C547;
    border-color: rgba(226, 232, 240, 0.3);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transform: translate3d(0, -2px, 0);
    background: rgba(255, 255, 255, 0.9);
  }

  .institution-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .institution-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.65);
    transition: filter 0.3s ease;
  }

  .institution-item:hover .institution-logo img {
    filter: grayscale(0%) opacity(1);
  }

  .institution-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 450;
    color: #64748b;
    text-align: center;
    max-width: 160px;
    line-height: 1.25;
    transition: color 0.3s ease;
  }

  .institution-item:hover .institution-label {
    color: #475569;
  }

  @keyframes scrollLeft {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
  }

  @keyframes scrollRight {
    0% {
      transform: translate3d(-50%, 0, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }

  /* How It Works - The Reveal */
  .how-it-works {
    padding: 6rem 2rem;
    background: transparent;
  }

  .section-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--space-blue);
    margin-bottom: 4rem;
  }

  .brand-name {
    font-family: var(--font-display);
    font-style: italic;
    letter-spacing: 4px;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .step {
    padding: 0;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 8px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .step:hover {
    border-color: var(--ocean-white);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  }

  .step.active {
    background: rgba(254, 254, 254, 0.85);
    border-color: var(--space-blue);
  }

  .step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
  }

  .step.active .step-header {
    padding-bottom: 1.5rem;
  }

  .step-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .step-number {
    position: static;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--space-blue);
    opacity: 0.3;
    line-height: 1;
    transition: all 0.3s ease;
  }

  .step.active .step-number {
    opacity: 1;
    color: #D4AF37;
  }

  .step-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--space-blue);
    margin: 0;
  }

  .step-icon {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
  }

  .step.active .step-icon {
    transform: rotate(-90deg);
    color: #D4AF37;
  }

  .step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .step.active .step-content {
    max-height: 2000px;
    padding: 0 2.5rem 2rem 2.5rem;
  }

  .step-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0;
  }

  /* Portfolio & Trust Section - Premium Redesign */
  .portfolio-trust-section {
    padding: 6rem 2rem;
    background: transparent;
    border-top: 1px solid var(--border);
  }

  .experience-master-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--space-blue);
    text-align: center;
    margin-bottom: 4rem;
  }

  .portfolio-trust-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.75rem;
  }

  /* Testimonial Carousel - Unified Design */
  .testimonial-carousel {
    padding: 3rem 2.5rem;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 8px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
  }

  .testimonial-carousel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: var(--ocean-white);
  }

  .carousel-heading {
    display: none;
  }

  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    flex: 1;
  }

  .carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .carousel-slide.active {
    opacity: 1;
  }

  .testimonial-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .doc-preview {
    display: none;
  }

  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0;
    font-weight: 400;
    quotes: """ """;
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
  }

  .testimonial-quote::before {
    content: open-quote;
  }

  .testimonial-quote::after {
    content: close-quote;
  }

  .testimonial-author {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 3rem;
  }

  .carousel-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 2px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;
  }

  .carousel-btn:hover {
    background: white;
    border-color: var(--space-blue);
    color: var(--space-blue);
    transform: scale(1.1);
  }

  .carousel-dots {
    display: none;
  }

  .dot {
    display: none;
  }

  /* Live Review Carousel - Two independent lanes */
  .reviews-carousel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    height: auto;
    overflow: hidden;
  }
  .reviews-lane {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    min-height: 0;
    padding: 0.25rem 0;
  }
  .reviews-lane-track {
    position: relative;
    width: 100%;
    height: auto;
    transition: height 0.3s ease;
  }
  .reviews-lane-track .review-card-quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-primary);
  }
  .reviews-lane-track .review-card-quote.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  .reviews-lane-divider {
    height: 1px;
    background: rgba(226, 232, 240, 0.6);
    margin: 0.75rem 0;
    flex-shrink: 0;
  }
  .reviews-lane-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.25rem 0;
    gap: 0.5rem;
  }
  .reviews-lane-info {
    flex: 1 1 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 0.72rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }
  .reviews-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .reviews-info-author {
    text-align: center;
    margin-top: 0.05rem;
  }
  .reviews-lane-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 2px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  .reviews-lane-btn:hover {
    background: white;
    border-color: var(--space-blue);
    color: var(--space-blue);
    transform: scale(1.1);
  }
  .review-card-stars { color: #E8C547; letter-spacing: 1px; font-size: 0.85rem; }
  .review-card-name {
    font-weight: 600;
    color: var(--space-blue);
    text-transform: none;
    letter-spacing: 0;
  }
  .review-card-name::before {
    content: '✓ ';
    color: var(--success, #0b6b2f);
  }
  .review-card-verified::before {
    content: '✓ ';
    color: var(--success, #0b6b2f);
  }
  .reviews-fallback { display: none; height: 100%; }

  /* Document Samples Carousel - Continuous Smooth Scroll */
  .trust-indicators {
    padding: 3rem 2.5rem;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 8px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .trust-indicators:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: var(--ocean-white);
  }

  .trust-heading {
    display: none;
  }

  .doc-samples-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
  }

  .doc-samples-wrapper::before,
  .doc-samples-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 5;
  }

  .doc-samples-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, 
      rgba(254, 254, 254, 1) 0%, 
      rgba(254, 254, 254, 0) 100%);
  }

  .doc-samples-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, 
      rgba(254, 254, 254, 1) 0%, 
      rgba(254, 254, 254, 0) 100%);
  }

  .doc-samples-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: continuousScroll 60s linear infinite;
  }

  .doc-samples-track.paused {
    animation-play-state: paused;
  }

  @keyframes continuousScroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }

  .doc-sample {
    width: 100%;
    height: 280px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, z-index 0s;
    cursor: pointer;
  }

  .doc-sample:hover {
    transform: scale(1.05);
    z-index: 10;
  }

  .doc-sample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
  }

  .doc-sample:hover img {
    transform: scale(1.1);
  }

  .doc-sample-placeholder,
  .doc-sample-text,
  .doc-sample-seal {
    display: none;
  }

  .trust-grid,
  .trust-item,
  .trust-icon,
  .trust-label,
  .trust-badge,
  .badge-label,
  .badge-text {
    display: none;
  }

  /* For Whom - Audience */
  .audience {
    padding: 6rem 2rem;
    background: transparent;
    border-top: 1px solid var(--border);
  }

  .audience-grid {
    display: grid;
    /* minmax(0, 1fr) lets tracks shrink below their content's intrinsic
       minimum; plain 1fr cannot, which is what caused the overflow. */
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
  }

  .audience-card {
    min-width: 0;
    text-align: left;
    padding: 2.5rem 2rem;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 8px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
  }

  .audience-card:hover {
    border-color: var(--ocean-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  }

  .audience-ornament {
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    line-height: 1;
  }

  .audience-ornament svg {
    display: none;
  }

  .audience-ornament img {
    width: 96px;
    height: 96px;
    display: block;
    margin: 0 auto;
  }

  .audience-card:hover .audience-ornament {
    opacity: 0.75;
  }

  .audience-card:hover .audience-ornament svg {
    stroke: #D4AF37;
  }

  .audience-icon {
    display: none;
  }

  .audience-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--space-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .audience-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
  }

  /* Final CTA - Elegant Invitation */
  .final-cta {
    padding: 8rem 2rem;
    background: transparent;
    text-align: center;
  }

  .final-cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--space-blue);
    margin-bottom: 3rem;
  }

  .final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
  }

  .final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 4rem;
    background: var(--space-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  }

  .final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.3);
  }

  /* Footer - Minimal */
  /* Footer - Elegant Multi-Column */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 5rem 0 0 0;
    margin-top: 8rem;
  }

  .footer-container {
    max-width: var(--shell-width);
    margin: 0 auto;
    padding: 0 3rem;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
  }

  .footer-column h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--space-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin-bottom: 0.875rem;
  }

  .footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-block;
  }

  .footer-column ul li a:hover {
    color: var(--space-blue);
  }

  .footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
  }

  .footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-contact a:hover {
    color: var(--space-blue);
  }

  .footer-office {
    margin-top: 1.5rem;
  }

  .footer-office-label {
    font-weight: 600;
    color: var(--space-blue);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 3rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    font-style: italic;
    color: var(--space-blue);
    letter-spacing: 4px;
  }

  .footer-brand-tagline {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-style: italic;
  }

  .footer-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .trust-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
  }

  .trust-carousel img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .trust-band {
    max-height: 56px;
  }

  .trust-ssl {
    max-height: 48px;
  }

  .footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .footer-legal a,
  .footer-legal button {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 0;
  }

  .footer-legal a:hover,
  .footer-legal button:hover {
    color: var(--space-blue);
  }

  .footer-legal-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
  }

  .footer-copyright {
    text-align: center;
    padding: 2rem 0 3rem 0;
    border-top: 1px solid var(--border);
  }

  .footer-copyright p {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin: 0;
  }

  .footer-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    font-weight: 450;
  }

  .security-badge {
    stroke: var(--heritage-gold);
    opacity: 0.7;
  }

  .footer-security:hover .security-badge {
    opacity: 1;
  }

  /* Responsive */
  @media (max-width: 968px) {
    /* Mobile Performance: Disable backdrop-filter (GPU-intensive) */
    .value-bar,
    .category-fit,
    .proof-ledger-stack .proof-ledger-card,
    .why-card,
    .step,
    .audience-card,
    .testimonial-carousel,
    .trust-indicators,
    header.stopped {
      backdrop-filter: none;
      background: rgba(254, 254, 254, 0.95);
    }

    header.scrolling {
      backdrop-filter: none;
      background: rgba(254, 254, 254, 0.98);
    }

    .heritage-background {
      width: 95%;
    }

    .hero-title {
      font-size: 3rem;
      width: 95%;
    }

    .hero-label {
      width: 95%;
    }

    .hero-logo-icon {
      width: 80px;
      height: 80px;
    }

    .hero-logo-text {
      font-size: 2rem;
    }

    .hero-logo-container {
      margin-bottom: 2rem;
    }

    .steps {
      grid-template-columns: 1fr;
    }

    .audience-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .value-bar {
      padding: 1.5rem 1.5rem;
    }

    .value-items {
      flex-direction: column;
      gap: 1.25rem;
      margin-bottom: 1rem;
    }

    .value-divider {
      display: none;
    }

    .value-price {
      font-size: 1.2rem;
    }

    .value-note-bottom {
      font-size: 0.8rem;
    }

    .why-grid {
      grid-template-columns: 1fr;
      gap: 0.625rem;
    }

    .why-hero,
    .why-brick.brick-1,
    .why-brick.brick-2,
    .why-brick.brick-3,
    .why-brick.brick-4,
    .why-brick.brick-5 {
      grid-column: 1 / -1;
      min-height: 180px;
    }

    .why-brick.brick-3,
    .why-brick.brick-4,
    .why-brick.brick-5 {
      min-height: 220px;
    }

    .why-card {
      padding: 1.5rem;
    }

    .why-detail {
      max-height: none;
      opacity: 1;
      margin-top: 0.5rem;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .stat-number {
      font-size: 2.5rem;
    }

    .badges-grid {
      gap: 2rem;
    }

    .badge-logo {
      width: 80px;
      height: 80px;
    }

    .badge-name {
      font-size: 0.7rem;
    }

    .promise {
      padding: 5rem 1.5rem;
    }

    .promise-quote {
      font-size: 1.75rem;
      line-height: 1.3;
      margin-bottom: 2rem;
    }

    .promise-body {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.75rem;
    }

    .step-header {
      padding: 1.5rem;
    }

    .step.active .step-header {
      padding-bottom: 1rem;
    }

    .step.active .step-content {
      padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .step-number {
      font-size: 2rem;
    }

    .step-title {
      font-size: 1.15rem;
    }

    .step-icon {
      font-size: 1.25rem;
    }

    .step-description {
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .portfolio-trust-container {
      grid-template-columns: 1fr;
      gap: 0.625rem;
    }

    .experience-master-title {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }

    .testimonial-carousel,
    .trust-indicators {
      padding: 2rem 1.5rem;
    }

    .carousel-wrapper {
      height: 240px;
    }

    .testimonial-quote {
      font-size: 1.15rem;
    }

    .testimonial-author {
      margin-bottom: 2.5rem;
      font-size: 0.85rem;
    }

    .doc-samples-wrapper {
      height: 240px;
    }

    .doc-sample {
      height: 240px;
    }

    .doc-sample img {
      object-fit: contain;
      width: 100%;
    }

    .doc-sample:hover {
      transform: none;
    }

    .doc-sample:hover img {
      transform: none;
    }

    .carousel-btn {
      width: 32px;
      height: 32px;
      font-size: 1.1rem;
    }

    .audience-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .audience-card {
      padding: 2rem 1.5rem;
    }

    .audience-title {
      font-size: 1.1rem;
    }

    .audience-description {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .final-cta {
      padding: 5rem 2rem;
    }

    .final-cta-title {
      font-size: 2.5rem;
      margin-bottom: 2.5rem;
    }

    .final-cta-button {
      padding: 1.25rem 3rem;
      font-size: 1.1rem;
    }

    header {
      padding: 1rem 1.5rem;
    }

    .header-inner {
      gap: 0.5rem 1rem;
    }

    .nav-links {
      display: none;
    }

    .language-selector {
      margin-left: 0;
    }

    .mobile-menu-btn {
      display: block;
    }

    .header-cta {
      padding: 0.35rem 0.75rem;
      font-size: 0.8rem;
    }

    .cta-arrow {
      width: 12px;
      height: 12px;
    }

    .logo-icon {
      width: 28px;
      height: 28px;
    }

    .logo {
      font-size: 1.25rem;
    }

    /* Footer Mobile */
    footer {
      padding: 3rem 0 0 0;
      margin-top: 4rem;
    }

    .footer-container {
      padding: 0 1.5rem;
    }

    .footer-columns {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
    }

    .footer-bottom {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding-bottom: 2rem;
    }

    .footer-brand {
      text-align: center;
    }

    .footer-trust {
      margin: 0 auto;
    }

    .trust-carousel {
      max-width: 260px;
    }

    .footer-legal {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal-divider {
      display: none;
    }

    .footer-copyright {
      padding: 1.5rem 0 2rem 0;
    }

    .slide-menu-content {
      width: min(320px, 80vw);
    }
  }

  /* Narrow phones: proportional scale-down below 540px */
  @media (max-width: 540px) {
    header {
      padding: 0.75rem 1rem;
    }

    .header-inner {
      gap: 0.35rem 0.5rem;
    }

    .hero {
      padding: calc(var(--header-height, 90px) + 1.5rem) 0 4.5rem;
    }

    .hero-logo-icon {
      width: 60px;
      height: 60px;
    }

    .hero-logo-text {
      font-size: 1.6rem;
    }

    .hero-logo-container {
      margin-bottom: 1.5rem;
    }

    .hero-label {
      font-size: 0.68rem;
      letter-spacing: 2px;
    }

    .hero-title {
      font-size: 2.15rem;
    }

    .hero-subtitle {
      font-size: 0.9rem;
    }

    .hero-cta {
      padding: 1rem 1.75rem;
      font-size: 1rem;
    }

    .hero-verify-input,
    .hero-cta--verify {
      width: 100%;
    }
  }

  @media (max-width: 760px) {
    .hero-cta-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .hero-cta-divider {
      display: none;
    }
  }

  /* Smooth Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
  }

  /* ============================================================
     COOKIE CONSENT BANNER — styled (was previously unstyled)
     Quiet, fixed to the bottom, EnLatin register.
     ============================================================ */
  .cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(160%);
    width: min(960px, calc(100% - 2.5rem));
    background: #f5f3ef;
    border: 1px solid #e6e1d4;
    border-top: 3px solid var(--royal-blue);
    border-radius: 3px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.16);
    padding: 1.25rem 1.5rem;
    z-index: 4000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  }
  .cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cookie-banner-text {
    flex: 1;
    min-width: 280px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  .cookie-banner-text strong {
    font-family: var(--font-quote-label);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.6875rem;
    color: var(--royal-blue);
    display: inline-block;
    margin-right: 0.25rem;
  }
  .cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
  }
  .cookie-btn {
    font-family: var(--font-quote-button);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.625rem 1.125rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.25px solid transparent;
    white-space: nowrap;
  }
  .cookie-btn-primary {
    background: var(--royal-blue);
    color: #fff;
    border-color: var(--royal-blue);
  }
  .cookie-btn-primary:hover { background: var(--space-blue); border-color: var(--space-blue); }
  .cookie-btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: #d4cdb8;
  }
  .cookie-btn-secondary:hover { background: var(--text-secondary); color: #f5f3ef; border-color: var(--text-secondary); }
  .cookie-btn-link {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    text-decoration: underline;
    text-underline-offset: 3px;
    letter-spacing: 0.08em;
  }
  .cookie-btn-link:hover { color: var(--royal-blue); }
  .cookie-details {
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .cookie-details.visible {
    max-height: 600px;
    padding-top: 1rem;
    margin-top: 0.25rem;
    border-top: 1px solid #e6e1d4;
  }
  .cookie-details h4 {
    font-family: var(--font-quote-label);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--royal-blue);
    margin: 0 0 0.625rem;
  }
  .cookie-details ul { margin: 0 0 0.75rem; padding-left: 1.125rem; }
  .cookie-details li {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
  }
  .cookie-details p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
  }
  @media (max-width: 640px) {
    .cookie-banner { bottom: 0; left: 0; transform: translateY(160%); width: 100%; border-radius: 0; border-left: none; border-right: none; }
    .cookie-banner.visible { transform: translateY(0); }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn-primary, .cookie-btn-secondary { flex: 1; }
  }

  /* ============================================================
     VISITOR CHAT — message-icon overlay (client-facing, La Réserve register)
     A docked panel sibling of the quote overlay: cream surface,
     gold accents, Canela/Avenir, 2px squared geometry.
     ============================================================ */
  .chat-launcher-veil {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.18);
    z-index: 3400;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
  }
  .chat-launcher-veil.active { opacity: 1; visibility: visible; }

  .chat-panel {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: min(420px, calc(100% - 2rem));
    height: min(620px, calc(100% - 3rem));
    background: #f5f3ef;
    border: 1px solid #e6e1d4;
    border-top: 3px solid var(--royal-blue);
    border-radius: 3px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24);
    z-index: 3500;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(0.98);
    transform-origin: bottom right;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  }
  .chat-panel.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

  .chat-head {
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid #e6e1d4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
  }
  .chat-head-title {
    font-family: var(--font-quote-serif);
    font-size: 1.5rem;
    color: var(--space-blue);
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0;
  }
  .chat-head-sub {
    font-family: var(--font-quote-label);
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
  }
  .chat-close {
    flex-shrink: 0;
    background: transparent;
    border: 1.25px solid #d4cdb8;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
  }
  .chat-close:hover { background: var(--space-blue); color: #f5f3ef; border-color: var(--space-blue); }

  .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Gate (name / email / reason) */
  .chat-gate { display: flex; flex-direction: column; gap: 1rem; }
  .chat-gate-intro {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  .chat-field label {
    display: block;
    font-family: var(--font-quote-label);
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
  }
  .chat-field input,
  .chat-field select,
  .chat-input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background: #fff;
    border: 1px solid #e6e1d4;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--space-blue);
    outline: none;
    transition: border-color 0.2s ease;
  }
  .chat-field input:focus,
  .chat-field select:focus,
  .chat-input:focus { border-color: var(--royal-blue); }
  .chat-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%231e3a5f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
  }
  .chat-reason-note {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-tertiary);
    font-style: italic;
    margin-top: 0.375rem;
    display: none;
  }
  .chat-reason-note.active { display: block; }
  .chat-gate-privacy {
    font-size: 0.6875rem;
    line-height: 1.55;
    color: var(--text-tertiary);
  }
  .chat-start-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--royal-blue);
    color: #fff;
    border: 1.25px solid var(--royal-blue);
    font-family: var(--font-quote-button);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .chat-start-btn:hover { background: var(--space-blue); border-color: var(--space-blue); }
  .chat-start-btn:disabled { opacity: 0.5; cursor: not-allowed; }

  /* Conversation view */
  .chat-reassure {
    background: rgba(232, 197, 71, 0.10);
    border-left: 2px solid var(--gold);
    border-radius: 2px;
    padding: 0.75rem 0.875rem;
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
  }
  .chat-msg {
    max-width: 82%;
    padding: 0.625rem 0.875rem;
    border-radius: 3px;
    font-size: 0.875rem;
    line-height: 1.5;
    word-break: break-word;
  }
  .chat-msg-visitor {
    align-self: flex-end;
    background: var(--royal-blue);
    color: #fff;
  }
  .chat-msg-staff {
    align-self: flex-start;
    background: #fff;
    border: 1px solid #e6e1d4;
    color: var(--space-blue);
  }
  .chat-msg-meta {
    font-family: var(--font-quote-label);
    font-size: 0.5625rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.25rem;
  }

  .chat-foot {
    border-top: 1px solid #e6e1d4;
    padding: 0.875rem 1rem;
    display: none;
    flex-direction: column;
    gap: 0.625rem;
  }
  .chat-foot.active { display: flex; }
  .chat-compose {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
  }
  .chat-input {
    resize: none;
    min-height: 42px;
    max-height: 120px;
    font-family: var(--font-body);
  }
  .chat-send {
    flex-shrink: 0;
    background: var(--royal-blue);
    border: 1.25px solid var(--royal-blue);
    color: #fff;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .chat-send:hover { background: var(--space-blue); border-color: var(--space-blue); }
  .chat-end {
    background: transparent;
    border: none;
    font-family: var(--font-quote-label);
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    cursor: pointer;
    align-self: center;
    padding: 0.25rem;
  }
  .chat-end:hover { color: var(--royal-blue); text-decoration: underline; }
  .chat-ended-note {
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 1.5rem 1rem;
  }
  .chat-ended-note strong { color: var(--space-blue); }
  .chat-unconfirmed-banner {
    background: #fff8e1;
    border: 1px solid #E8C547;
    border-radius: 6px;
    padding: 0.625rem 0.875rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #7c5c00;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .chat-unconfirmed-banner a {
    color: var(--royal-blue);
    font-weight: 500;
    text-decoration: underline;
  }

  @media (max-width: 640px) {
    .chat-panel {
      bottom: 0; right: 0; left: 0;
      width: 100%; height: 100%;
      border-radius: 0; border-left: none; border-right: none; border-top: none;
    }
  }

  /* PayPal processing overlay */
  .paypal-processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .paypal-processing-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .paypal-processing-overlay .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #E8C547;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  .paypal-processing-overlay p {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
  }
  .paypal-processing-overlay p.sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 400;
  }

  /* Document upload overlay */
  .upload-processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .upload-processing-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .upload-processing-overlay .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #E8C547;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  .upload-processing-overlay p {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    max-width: 320px;
    line-height: 1.4;
  }
  .upload-processing-overlay p.sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 400;
  }
  .upload-processing-overlay .upload-counter {
    color: #E8C547;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.25rem;
  }
  /* Lazy-loaded below-fold images: invisible until loaded, then fade in */
  .lazy-logo,
  .lazy-sample {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .lazy-logo.loaded,
  .lazy-sample.loaded {
    opacity: 1;
  }

  .quick-answers .audience-ornament img,
.quick-answers .audience-ornament svg {
  display: block;
  margin: 0 auto;
  color: var(--royal-blue);
}
.quick-answers .audience-ornament img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.quick-answers .audience-card:hover .audience-ornament svg {
  color: #D4AF37;
}
.quick-answers .audience-card:hover .audience-ornament img {
  transform: scale(1.08);
}
.quick-answers .audience-description a {
  color: var(--royal-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.quick-answers .audience-description a:hover {
  border-bottom-color: var(--royal-blue);
}


/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .why-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Lenis smooth-scroll base */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ==========================================================================
   Phase 6 additions
   ========================================================================== */

/* Screen-reader only announcements */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header verify form */
.header-verify {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  margin: 0 1.5rem;
}

.header-verify-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 560px;
  min-width: 0;
}

.header-verify-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 52ch;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 2px;
  background: #4677AA;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #fff;
  transition: max-width 0.3s ease;
}

.header-verify-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.header-verify-input:focus {
  outline: none;
}

.header-verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  background: transparent;
  border: 1.5px solid var(--space-blue);
  border-radius: 2px;
  color: var(--space-blue);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-verify-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--space-blue);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.header-verify-btn:hover {
  color: #fff;
  border-color: var(--space-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.header-verify-btn:hover::before {
  left: 0;
}

.header-verify-btn:active {
  transform: translateY(0);
}

.header-verify-short {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--space-blue);
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-verify {
    display: none;
  }
}

/* Hero CTAs */
.hero-verify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 8px;
}

.hero-verify-input {
  width: 48ch;
  max-width: 100%;
  padding: 0rem 1.25rem;
  border: 1.5px solid var(--gold-deep);
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gold-deep);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-verify-input::placeholder {
  color: rgba(204, 153, 51, 0.55);
}

.hero-verify-input:focus {
  outline: none;
  background: rgba(71, 85, 105, 0.08);
}

.hero-cta--verify {
  width: 48ch;
  max-width: 100%;
  padding: 0.25rem 0.25rem;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 16px;
  border-color: #4677AA;
  color: #4677AA;
}

.hero-cta--verify::before {
  background: var(--gold-deep);
}

.hero-cta--verify:hover {
  border-color: var(--gold-deep);
  color: #fff;
}

.hero-cta-tertiary {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hero-cta-tertiary a {
  color: var(--space-blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  margin-left: 0.35rem;
}

.hero-cta-tertiary a:hover {
  color: var(--royal-blue);
}

/* Certifications container below hero */
.certifications-container--below {
  margin-bottom: 24px;
}

.hero-cta-secondary a:hover {
  color: var(--royal-blue);
}

/* Certifications container inside hero */
.certifications-container--hero {
  margin-top: 24px;
}

.certifications-label--hero {
  display: none;
}

/* Category-fit block */
.category-fit {
  padding: var(--s-12) var(--s-6);
  background: rgba(254, 254, 254, 0.7);
  backdrop-filter: blur(12px) saturate(150%);
  border-top: 1px solid rgba(226, 232, 240, 0.3);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.category-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-6);
  max-width: 1200px;
  margin: 0 auto;
}

.category-fit-card {
  background: var(--bg-public);
  backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: var(--s-7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-fit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 45, 70, 0.06);
}

.category-fit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--space-blue);
  margin-bottom: var(--s-4);
}

.category-fit-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--s-5);
}

.category-fit-link {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--space-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--space-blue);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease;
}

.category-fit-link:hover {
  color: var(--royal-blue);
  border-color: var(--royal-blue);
}

/* Proof ledger */
.proof-ledger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  max-width: 1200px;
  margin: 0 auto;
}

.proof-ledger-card {
  background: var(--bg-public);
  backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: var(--s-7);
}

.proof-ledger-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--space-blue);
  margin-bottom: var(--s-5);
}

.proof-ledger-note {
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--rule);
}

.proof-ledger-note:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.proof-ledger-note blockquote {
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--s-3);
}

.source-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: 2px;
  background: var(--bg-subtle);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
}

.proof-ledger-claims .proof-table-wrap {
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}

.proof-ledger-claims .proof-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.proof-ledger-claims .proof-table th,
.proof-ledger-claims .proof-table td {
  padding: var(--s-3) var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.proof-ledger-claims .proof-table th {
  background: var(--space-blue);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-ledger-claims .proof-table tr:last-child td {
  border-bottom: none;
}

.proof-ledger-claims .proof-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.proof-ledger-claims .proof-table td {
  color: var(--ink-soft);
}

/* Proof Ledger stack — unifies The Experience (2-col), Claims register (1-col),
   and Acceptance & Remedy / Third-party ratings (2-col) into one snapped column */
.proof-ledger-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-ledger-stack .proof-ledger-card {
  min-width: 0;
}

.proof-ledger-row-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
}

@media (max-width: 968px) {
  .proof-ledger-row-2col {
    grid-template-columns: 1fr;
  }
}

/* Portfolio & Trust Section — desktop styles (mirrors the mobile-only block) */
@media (min-width: 969px) {
  .portfolio-trust-section {
    padding: 6rem 2rem;
    background: transparent;
    border-top: 1px solid var(--border);
  }

  .experience-master-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--space-blue);
    text-align: center;
    margin-bottom: 4rem;
  }

  .portfolio-trust-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.75rem;
  }

  /* Testimonial Carousel - Unified Design */
  .testimonial-carousel {
    padding: 3rem 2.5rem;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 8px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
  }

  .testimonial-carousel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: var(--ocean-white);
  }

  .carousel-heading {
    display: none;
  }

  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    flex: 1;
  }

  .carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .carousel-slide.active {
    opacity: 1;
  }

  .testimonial-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .doc-preview {
    display: none;
  }

  .testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0;
    font-weight: 400;
    quotes: """ """;
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
  }

  .testimonial-quote::before {
    content: open-quote;
  }

  .testimonial-quote::after {
    content: close-quote;
  }

  .testimonial-author {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 3rem;
  }

  .carousel-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 2px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: all;
  }

  .carousel-btn:hover {
    background: white;
    border-color: var(--space-blue);
    color: var(--space-blue);
    transform: scale(1.1);
  }

  .carousel-dots {
    display: none;
  }

  .dot {
    display: none;
  }

  /* Live Review Carousel - Two independent lanes */
  .reviews-carousel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    height: auto;
    overflow: hidden;
  }
  .reviews-lane {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    min-height: 0;
    padding: 0.25rem 0;
  }
  .reviews-lane-track {
    position: relative;
    width: 100%;
    height: auto;
    transition: height 0.3s ease;
  }
  .reviews-lane-track .review-card-quote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-primary);
  }
  .reviews-lane-track .review-card-quote.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  .reviews-lane-divider {
    height: 1px;
    background: rgba(226, 232, 240, 0.6);
    margin: 0.75rem 0;
    flex-shrink: 0;
  }
  .reviews-lane-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.25rem 0;
    gap: 0.5rem;
  }
  .reviews-lane-info {
    flex: 1 1 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 0.72rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }
  .reviews-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .reviews-info-author {
    text-align: center;
    margin-top: 0.05rem;
  }
  .reviews-lane-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 2px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  .reviews-lane-btn:hover {
    background: white;
    border-color: var(--space-blue);
    color: var(--space-blue);
    transform: scale(1.1);
  }
  .review-card-stars { color: #E8C547; letter-spacing: 1px; font-size: 0.85rem; }
  .review-card-name {
    font-weight: 600;
    color: var(--space-blue);
    text-transform: none;
    letter-spacing: 0;
  }
  .review-card-name::before {
    content: '✓ ';
    color: var(--success, #0b6b2f);
  }
  .review-card-verified::before {
    content: '✓ ';
    color: var(--success, #0b6b2f);
  }
  .reviews-fallback { display: none; height: 100%; }

  /* Document Samples Carousel - Continuous Smooth Scroll */
  .trust-indicators {
    padding: 3rem 2.5rem;
    background: rgba(254, 254, 254, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    border-radius: 8px;
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .trust-indicators:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: var(--ocean-white);
  }

  .trust-heading {
    display: none;
  }

  .doc-samples-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
  }

  .doc-samples-wrapper::before,
  .doc-samples-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 5;
  }

  .doc-samples-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom,
      rgba(254, 254, 254, 1) 0%,
      rgba(254, 254, 254, 0) 100%);
  }

  .doc-samples-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top,
      rgba(254, 254, 254, 1) 0%,
      rgba(254, 254, 254, 0) 100%);
  }

  .doc-samples-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: continuousScroll 60s linear infinite;
  }

  .doc-samples-track.paused {
    animation-play-state: paused;
  }

  .doc-sample {
    width: 100%;
    height: 280px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, z-index 0s;
    cursor: pointer;
  }

  .doc-sample:hover {
    transform: scale(1.05);
    z-index: 10;
  }

  .doc-sample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
  }

  .doc-sample:hover img {
    transform: scale(1.1);
  }

  .doc-sample-placeholder,
  .doc-sample-text,
  .doc-sample-seal {
    display: none;
  }

  .trust-grid,
  .trust-item,
  .trust-icon,
  .trust-label,
  .trust-badge,
  .badge-label,
  .badge-text {
    display: none;
  }
}

/* Persona icon for Scholars */
.audience-icon {
  width: 80px;
  height: 80px;
  color: var(--gold-deep);
}

/* ============ Persona cards: stretched card button + inline link ============ */
.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Push the button to the bottom so all four align across the row. */
.audience-card .audience-description {
  flex: 1 1 auto;
}

/* Visible button. Its ::after stretches over the whole card, so the entire
   card is clickable while remaining a single, correctly-labelled link. */
.audience-card-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1.5px solid #2E5C8A;
  border-radius: 8px;
  color: #2E5C8A;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  /* Was nowrap — that made the button unshrinkable and overflowed the grid.
     Wrapping keeps the label intact at any width. */
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #2E5C8A, #4A7BA7);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stretches the click target across the entire card. */
.audience-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.audience-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.audience-card:hover .audience-card-link,
.audience-card-link:hover,
.audience-card-link:focus-visible {
  color: #fff;
  border-color: #2E5C8A;
}

.audience-card:hover .audience-card-link::before,
.audience-card-link:hover::before,
.audience-card-link:focus-visible::before {
  transform: translateX(0);
}

.audience-card:hover .audience-card-link svg,
.audience-card-link:hover svg {
  transform: translateX(3px);
}

.audience-card-link:focus-visible {
  outline: 2px solid var(--gold-deep, #cc9933);
  outline-offset: 3px;
}

/* Inline links in card copy sit above the stretched overlay so they stay
   independently clickable. */
.audience-description a {
  position: relative;
  z-index: 1;
  color: var(--royal-blue, #1e3a5f);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(204, 153, 51, 0.55);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.audience-description a:hover {
  color: var(--space-blue, #0f172a);
  border-bottom-color: var(--gold-deep, #cc9933);
}

@media (max-width: 968px) {
  .audience-card-link {
    align-self: stretch;
    justify-content: center;
    margin-top: 1.25rem;
  }
}

/* ============ Hero: Latin diploma quick path ============
   Deliberately identical to .audience-card-link so the two read as one
   button language across the page — same border, radius, type scale,
   uppercase treatment, gradient sweep and easing. */
.hero-cta-diploma {
  margin-top: 1.25rem;
}

.hero-cta-diploma a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: transparent;
  border: 1.5px solid #2E5C8A;
  border-radius: 8px;
  color: #2E5C8A;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-diploma a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #2E5C8A, #4A7BA7);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-diploma a:hover,
.hero-cta-diploma a:focus-visible {
  color: #fff;
  border-color: #2E5C8A;
}

.hero-cta-diploma a:hover::before,
.hero-cta-diploma a:focus-visible::before {
  transform: translateX(0);
}

.hero-cta-diploma svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.hero-cta-diploma a:hover svg {
  transform: translateX(3px);
}

.hero-cta-diploma a:focus-visible {
  outline: 2px solid var(--gold-deep, #cc9933);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .hero-cta-diploma a {
    justify-content: center;
  }
}

.rating-link { text-decoration: none; color: inherit; display: block; }
.rating-link:hover .rating-score { color: var(--royal-blue, #1e3a5f); }

/* Very narrow phones: stack hero title words only below 430px */
@media (max-width: 430px) {
  .hero-title {
    line-height: 0.95;
    text-align: center;
  }

  .hero-line {
    display: block;
    line-height: 0.95;
    text-align: center;
    width: 100%;
  }

  .hero-slot {
    display: block;
    line-height: 0.95;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
}
