@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-500.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-600.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-700.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url("../fonts/newsreader-300.ttf") format("truetype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url("../fonts/newsreader-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url("../fonts/newsreader-500.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }

:root {
      --ink: #234b46;
      --ink-soft: #5a7772;
      --cream: #f5f1ed;
      --paper: #fffdfb;
      --sage: #e6f2ec;
      --sage-strong: #cbe4d9;
      --mint: #9bd6be;
      --rose: #eedbd5;
      --rose-strong: #d7a99c;
      --line: rgba(23, 59, 58, .14);
      --glass: rgba(255, 253, 251, .72);
      --shadow: 0 24px 70px rgba(43, 70, 66, .12);
      --serif: "Newsreader", Georgia, serif;
      --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; width: 100%; }
    a { color: inherit; }
    button, input { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    :focus-visible { outline: 3px solid rgba(140, 199, 177, .7); outline-offset: 3px; }
    section[id] { scroll-margin-top: 110px; }
    [hidden] { display: none !important; }

    .shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
    .serif { font-family: var(--serif); }
    .muted { color: var(--ink-soft); }

    .site-header {
      position: sticky;
      top: 16px;
      z-index: 10;
      width: min(1180px, calc(100% - 32px));
      margin: 16px auto 0;
      border: 1px solid rgba(255, 255, 255, .72);
      border-radius: 22px;
      background: rgba(255, 253, 251, .76);
      backdrop-filter: blur(18px) saturate(130%);
      box-shadow: 0 10px 35px rgba(43, 70, 66, .08);
    }
    .nav-wrap { height: 70px; display: flex; align-items: center; gap: 34px; padding: 0 22px; }
    .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
    .brand-logo-mark { width: 35px; height: 35px; object-fit: contain; }
    .brand-logo-wordmark { width: 116px; height: auto; object-fit: contain; }
    .main-nav { display: flex; align-items: center; gap: 26px; margin-left: 12px; }
    .main-nav a { color: var(--ink-soft); font-size: 14px; font-weight: 600; text-decoration: none; }
    .main-nav a:hover { color: var(--ink); }
    .header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
    .login { color: var(--ink-soft); font-size: 14px; font-weight: 600; text-decoration: none; }
    .cart-button {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 44px;
      padding: 0 18px;
      border: 0;
      border-radius: 999px;
      color: white;
      background: var(--ink);
      cursor: pointer;
      font-size: 14px;
      font-weight: 700;
    }
    .cart-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
    .cart-dot.empty { display: none; }

    .hero { padding: 44px 0 90px; }
    .hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(36px, 6vw, 82px); align-items: center; }
    .hero-copy { padding: 36px 0 18px; }
    .hero h1 {
      max-width: 720px;
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(58px, 7.2vw, 98px);
      font-weight: 300;
      line-height: .91;
      letter-spacing: -.055em;
      text-wrap: balance;
    }
    .hero h1 em { color: #799e90; font-weight: 300; }
    .hero-lead { max-width: 540px; margin: 30px 0 32px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
    .cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .button {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 25px;
      border-radius: 999px;
      border: 1px solid var(--ink);
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-primary { color: white; background: var(--ink); }
    .button-secondary { background: rgba(255, 255, 255, .3); }
    .button-light { color: var(--ink); background: #fff; border-color: #fff; }
    .hero-note { display: flex; gap: 22px; margin-top: 28px; color: var(--ink-soft); font-size: 13px; }
    .hero-note span { display: flex; align-items: center; gap: 7px; }
    .hero-note span::before { content: "✓"; color: #629a84; font-weight: 800; }

    .hero-visual { position: relative; min-height: 680px; }
    .hero-photo {
      position: absolute;
      inset: 0 0 0 44px;
      overflow: hidden;
      border-radius: 46% 46% 28px 28px / 34% 34% 28px 28px;
      background: var(--sage);
      box-shadow: var(--shadow);
    }
    .hero-photo img { height: 100%; object-fit: cover; object-position: 50% 28%; }
    .hero-search-card {
      width: min(440px, 100%);
      margin-top: 24px;
      padding: 18px;
      border: 1px solid rgba(255,255,255,.82);
      border-radius: 22px;
      background: rgba(255,253,251,.7);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 48px rgba(35,75,70,.1);
    }
    .hero-search-card label { display: block; margin: 0 0 10px 3px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .search-line { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: white; }
    .search-line input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; }
    .search-result { display: flex; align-items: center; gap: 11px; margin-top: 12px; padding: 10px 11px; border-radius: 14px; background: var(--sage); }
    .result-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: none; border-radius: 10px; background: white; font-size: 16px; }
    .search-result strong { display: block; font-size: 12px; }
    .search-result small { color: var(--ink-soft); font-size: 10px; }
    .hero-chat {
      display: grid;
      grid-template-columns: .62fr 1.38fr;
      gap: clamp(28px, 5vw, 68px);
      align-items: center;
      margin-top: 34px;
      padding: clamp(24px, 4vw, 42px);
      border: 1px solid rgba(255,255,255,.78);
      border-radius: 30px;
      background: rgba(255,253,251,.62);
      backdrop-filter: blur(16px);
      box-shadow: 0 22px 62px rgba(35,75,70,.09);
    }
    .chat-intro small { display: block; margin-bottom: 10px; color: #6f9187; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .chat-intro h2 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(31px, 3.2vw, 45px); font-weight: 400; line-height: 1.02; }
    .chat-intro p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
    .chat-thread { display: grid; gap: 12px; }
    .chat-message { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
    .chat-message.reply { grid-template-columns: 1fr; margin-left: 54px; }
    .chat-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #52736e; background: #dce7e4; font-size: 12px; font-weight: 700; }
    .chat-bubble { padding: 16px 19px; border-radius: 19px; background: white; box-shadow: 0 13px 34px rgba(35,75,70,.08); }
    .reply .chat-bubble { background: #def1e9; box-shadow: none; }
    .chat-name { display: block; margin-bottom: 5px; color: #79908d; font-size: 11px; }
    .reply .chat-name { color: #38846f; }
    .chat-bubble p { margin: 0; font-size: 15px; line-height: 1.5; }

    .survey { padding: 0 0 92px; }
    .survey-card { width: min(1500px, calc(100% - 40px)); display: grid; grid-template-columns: minmax(360px, .72fr) minmax(620px, 1.28fr); gap: clamp(34px, 4vw, 64px); align-items: center; padding: clamp(34px, 4vw, 62px); border-radius: 34px; background: #dfeee7; box-shadow: var(--shadow); }
    .survey-copy h2 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 66px); font-weight: 300; line-height: .98; letter-spacing: -.035em; }
    .survey-copy > p { max-width: 650px; margin: 24px 0 30px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
    .survey-frame { min-height: 330px; display: grid; align-content: center; justify-items: center; padding: 34px; border: 1px solid rgba(255,255,255,.78); border-radius: 28px; text-align: center; background: rgba(255,253,251,.72); }
    .survey-number { font-family: var(--serif); font-size: 110px; font-weight: 300; line-height: .75; color: #799e90; }
    .survey-frame strong { margin-top: 26px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
    .survey-frame p { max-width: 320px; margin: 12px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
    .survey-frame-cta { margin-top: 24px; }
    .survey-fallback { margin-top: 13px; color: var(--ink-soft); font-size: 12px; text-underline-offset: 3px; }
    .survey-fallback:hover { color: var(--ink); }

    .proof { padding-bottom: 92px; }
    .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .proof-item { padding: 32px 34px; }
    .proof-item + .proof-item { border-left: 1px solid var(--line); }
    .proof-value { margin-bottom: 6px; font-family: var(--serif); font-size: 38px; font-weight: 400; }
    .proof-item p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

    .shop { padding: 42px 0 58px; background: #e5f1eb; }
    .shop-details { border: 1px solid rgba(35,75,70,.13); border-radius: 28px; background: rgba(255,253,251,.72); box-shadow: 0 18px 48px rgba(43,70,66,.07); }
    .shop-details summary { display: flex; justify-content: space-between; align-items: center; gap: 30px; min-height: 116px; padding: 28px clamp(24px, 4vw, 46px); cursor: pointer; list-style: none; }
    .shop-details summary::-webkit-details-marker { display: none; }
    .shop-details summary small { display: block; margin-bottom: 5px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .shop-details summary strong { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 44px); font-weight: 400; line-height: 1; }
    .shop-toggle { width: 48px; height: 48px; display: grid; place-items: center; flex: none; border-radius: 50%; color: white; background: var(--ink); font-size: 27px; font-weight: 300; transition: transform .25s ease; }
    .shop-details[open] .shop-toggle { transform: rotate(45deg); }
    .shop-content { padding: 12px clamp(24px, 4vw, 46px) 44px; border-top: 1px solid rgba(35,75,70,.1); }
    .shop-content .shop-top { padding-top: 42px; }
    .shop-top { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 38px; }
    .shop-top h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 300; line-height: 1; letter-spacing: -.035em; }
    .shop-top p { max-width: 490px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
    .product-search {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      margin-bottom: 24px;
      padding: 15px 18px;
      border: 1px solid rgba(255,255,255,.78);
      border-radius: 18px;
      background: rgba(255,255,255,.58);
      backdrop-filter: blur(12px);
    }
    .product-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 16px; }
    .pzn-badge { padding: 7px 11px; border-radius: 999px; color: #365e52; background: rgba(184,215,202,.72); font-size: 11px; font-weight: 700; white-space: nowrap; }
    .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(23,59,58,.1); border-radius: 22px; background: var(--paper); transition: transform .22s ease, box-shadow .22s ease; }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(43,70,66,.1); }
    .product-image { position: relative; height: 220px; overflow: hidden; background: #e9e6e2; }
    .product-image img { height: 100%; object-fit: cover; transition: transform .35s ease; }
    .product-card:hover img { transform: scale(1.025); }
    .product-flag { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 8px 11px; border-radius: 999px; color: white; background: rgba(35,75,70,.9); box-shadow: 0 8px 22px rgba(24,53,49,.16); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
    .product-body { display: flex; flex-direction: column; flex: 1; padding: 19px; }
    .product-kicker { margin-bottom: 8px; color: #6f8c82; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .product-card h3 { min-height: 44px; margin: 0 0 8px; font-size: 15px; line-height: 1.45; }
    .product-meta { color: #738784; font-size: 11px; }
    .product-price { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 5px; font-family: var(--serif); font-size: 28px; }
    .product-price small { color: #738784; font-family: var(--sans); font-size: 10px; }
    .stock { margin-bottom: 16px; color: #629a84; font-size: 11px; }
    .add-button { width: 100%; min-height: 43px; display: inline-flex; align-items: center; justify-content: center; margin-top: auto; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; text-decoration: none; }
    .add-button:hover { color: white; background: var(--ink); }
    .empty-state { display: none; padding: 42px; border-radius: 22px; text-align: center; background: rgba(255,255,255,.55); }

    .manager { padding: 112px 0; background: var(--paper); }
    .manager-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(54px, 7vw, 90px); align-items: center; }
    .manager-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 6vw, 80px); font-weight: 300; line-height: .93; letter-spacing: -.045em; text-wrap: balance; }
    .manager-copy > p { max-width: 540px; margin: 26px 0 34px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
    .feature-list { display: grid; gap: 0; }
    .feature-row { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 20px 0; border-top: 1px solid var(--line); }
    .feature-row:last-child { border-bottom: 1px solid var(--line); }
    .feature-number { color: #8aac9e; font-family: var(--serif); font-size: 20px; }
    .feature-row strong { display: block; margin-bottom: 5px; font-size: 14px; }
    .feature-row p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
    .workflow-card { position: relative; overflow: hidden; padding: clamp(30px, 4vw, 46px); border-radius: 36px; background: linear-gradient(145deg, #f2e2dd, var(--rose)); box-shadow: 0 28px 70px rgba(73,57,51,.1); }
    .workflow-card::after { content: ""; position: absolute; right: -92px; top: -108px; width: 240px; height: 240px; border: 36px solid rgba(255,255,255,.3); border-radius: 50%; pointer-events: none; }
    .workflow-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 28px; align-items: start; margin-bottom: 30px; }
    .workflow-head div > small { display: block; margin-bottom: 8px; color: #8d6f67; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .workflow-head h3 { max-width: 490px; margin: 0; font-family: var(--serif); font-size: clamp(32px, 3.3vw, 43px); font-weight: 400; line-height: 1.02; letter-spacing: -.025em; }
    .workflow-head > span { flex: none; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.62); font-size: 11px; font-weight: 700; }
    .workflow-story { position: relative; padding: 4px 0; }
    .workflow-story::before { content: ""; position: absolute; top: 30px; bottom: 30px; left: 20px; width: 2px; background: linear-gradient(var(--rose-strong), #78b39b); }
    .workflow-step { position: relative; z-index: 1; display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; align-items: center; padding: 15px 0; }
    .workflow-step + .workflow-step { border-top: 1px solid rgba(35,75,70,.09); }
    .step-marker { width: 42px; height: 42px; display: grid; place-items: center; border: 5px solid rgba(242,226,221,.95); border-radius: 50%; color: white; background: var(--ink); font-size: 12px; font-weight: 700; box-shadow: 0 0 0 1px rgba(35,75,70,.09); }
    .workflow-step:last-child .step-marker { color: var(--ink); background: var(--mint); }
    .workflow-step strong { display: block; margin-bottom: 3px; font-size: 14px; }
    .workflow-step small { color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
    .step-status { color: #4d8b73; font-size: 11px; font-weight: 700; }
    .workflow-quote { margin: 28px 0 0 58px; padding-top: 24px; border-top: 1px solid rgba(35,75,70,.12); color: var(--ink); font-family: var(--serif); font-size: clamp(25px, 2.5vw, 33px); line-height: 1.15; }

    .time-benefit { padding: 0 0 112px; background: var(--paper); }
    .time-benefit-card { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(44px, 7vw, 92px); align-items: center; padding: clamp(38px, 5.5vw, 70px); border-radius: 38px; background: #f0e4df; }
    .time-benefit-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 5.4vw, 72px); font-weight: 300; line-height: .92; letter-spacing: -.045em; text-wrap: balance; }
    .time-benefit-copy > p { margin: 24px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
    .time-comparison { padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(255,255,255,.78); border-radius: 29px; background: rgba(255,253,251,.72); box-shadow: 0 20px 55px rgba(73,57,51,.07); }
    .time-saving { margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
    .time-saving small { display: block; margin-bottom: 5px; color: #56806f; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
    .time-saving strong { display: block; font-family: var(--serif); font-size: clamp(43px, 5vw, 66px); font-weight: 400; line-height: .94; letter-spacing: -.04em; }
    .time-saving span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 13px; }
    .time-compare-grid { display: grid; grid-template-columns: 1fr 58px 1fr; gap: 13px; align-items: center; }
    .time-row { min-height: 148px; padding: 18px; border-radius: 20px; }
    .time-row-today { background: rgba(212,162,147,.13); }
    .time-row-sanoom { background: rgba(114,173,150,.14); }
    .time-label { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 10px; }
    .time-label span { font-size: 13px; font-weight: 700; }
    .time-label strong { font-family: var(--serif); font-size: clamp(30px, 3vw, 39px); font-weight: 500; }
    .time-track { height: 12px; overflow: hidden; border-radius: 999px; background: rgba(35,75,70,.1); }
    .time-track span { display: block; height: 100%; border-radius: inherit; }
    .time-row-today .time-track span { width: 100%; background: #d4a293; }
    .time-row-sanoom .time-track span { width: 50%; background: #72ad96; }
    .time-row small { display: block; margin-top: 10px; color: var(--ink-soft); font-size: 11px; line-height: 1.4; }
    .time-shift { display: grid; place-items: center; gap: 4px; color: #56806f; }
    .time-shift span { font-family: var(--serif); font-size: 34px; line-height: 1; }
    .time-shift small { font-size: 10px; font-weight: 700; }
    .time-outcomes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 18px; }
    .time-outcomes div { min-height: 90px; padding: 17px; border-radius: 16px; background: rgba(255,255,255,.58); }
    .time-outcomes strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.05; }
    .time-outcomes span { color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
    .time-note { margin: 18px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }

    .modules { padding: 92px 0 96px; overflow: hidden; background: #28534d; color: #f6f1ed; }
    .modules .eyebrow { margin-bottom: 14px; color: #bfe1d4; }
    .modules-heading { margin-bottom: 42px; }
    .modules h2 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(43px, 5vw, 66px); font-weight: 300; line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
    .modules-heading p { max-width: 660px; margin: 22px 0 0; color: rgba(246,241,237,.72); font-size: 16px; line-height: 1.65; }
    .modules-overview { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
    .platform-cockpit {
      position: relative;
      overflow: hidden;
      padding: 25px;
      border-radius: 27px;
      color: var(--ink);
      background: linear-gradient(145deg, #f8faf8 0%, #deeee7 100%);
      box-shadow: 0 24px 55px rgba(8,34,31,.18);
    }
    .platform-cockpit::after { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -82px; border: 30px solid rgba(155,214,190,.28); border-radius: 50%; }
    .cockpit-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 24px; }
    .cockpit-top strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }
    .cockpit-top span { padding: 7px 10px; border-radius: 999px; color: #55756f; background: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; }
    .cockpit-status { margin-bottom: 20px; padding: 17px 18px; border-radius: 18px; background: rgba(255,255,255,.7); }
    .cockpit-status small { display: block; margin-bottom: 6px; color: #6f8984; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .cockpit-status strong { display: block; margin-bottom: 13px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
    .supply-bar { height: 7px; overflow: hidden; border-radius: 999px; background: #d7e4df; }
    .supply-bar span { display: block; width: 86%; height: 100%; border-radius: inherit; background: #79b69e; }
    .cockpit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .cockpit-tile { min-height: 84px; padding: 14px; border: 1px solid rgba(35,75,70,.08); border-radius: 16px; background: rgba(255,255,255,.5); }
    .cockpit-tile span { display: block; margin-bottom: 7px; color: #728985; font-size: 10px; }
    .cockpit-tile strong { font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.1; }
    .cockpit-document { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 12px 14px; border-radius: 14px; background: #28534d; color: white; font-size: 11px; }
    .cockpit-check { width: 25px; height: 25px; display: grid; place-items: center; flex: none; border-radius: 50%; color: var(--ink); background: #bfe1d4; font-weight: 800; }
    .cockpit-rooms { display: grid; gap: 8px; margin-top: 18px; padding-top: 17px; border-top: 1px solid rgba(35,75,70,.12); }
    .cockpit-rooms div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.52); }
    .cockpit-rooms span { color: #607b76; font-size: 12px; }
    .cockpit-rooms strong { display: inline-flex; align-items: center; gap: 7px; color: #397b67; font-size: 11px; }
    .cockpit-rooms strong::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #72ad96; }
    .module-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .module-card { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-content: start; min-height: 142px; padding: 20px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.075); transition: background .2s ease, transform .2s ease; }
    .module-card:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
    .module-card small { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #28534d; background: #bfe1d4; font-size: 11px; font-weight: 700; }
    .module-card h3 { margin: 2px 0 8px; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.12; }
    .module-card p { margin: 0; color: rgba(246,241,237,.72); font-size: 13px; line-height: 1.5; }

    .sets-showcase { padding: 110px 0 118px; background: var(--paper); }
    .sets-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 7vw, 90px); align-items: end; margin-bottom: 42px; }
    .sets-heading h2 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(52px, 6vw, 80px); font-weight: 300; line-height: .92; letter-spacing: -.045em; text-wrap: balance; }
    .sets-heading > p { max-width: 510px; margin: 0 0 5px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
    .sets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .set-feature-card { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 400px; overflow: hidden; border: 1px solid rgba(74,128,111,.16); border-radius: 30px; background: linear-gradient(145deg, #f3f8f5, #e4f0ea); box-shadow: 0 22px 55px rgba(43,70,66,.08); }
    .set-feature-image { position: relative; min-height: 100%; overflow: hidden; }
    .set-feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 68%, rgba(235,244,239,.75)); pointer-events: none; }
    .set-feature-image img { height: 100%; object-fit: cover; transition: transform .4s ease; }
    .set-feature-card:hover .set-feature-image img { transform: scale(1.025); }
    .set-feature-body { display: flex; flex-direction: column; padding: clamp(25px, 3vw, 38px) clamp(24px, 3vw, 34px); }
    .set-feature-body h3 { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(31px, 3vw, 40px); font-weight: 400; line-height: 1; letter-spacing: -.025em; }
    .set-feature-body > p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
    .set-feature-proof { display: grid; gap: 3px; margin: 26px 0 22px; padding: 16px 0; border-top: 1px solid rgba(35,75,70,.13); border-bottom: 1px solid rgba(35,75,70,.13); }
    .set-feature-proof strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }
    .set-feature-proof span { color: var(--ink-soft); font-size: 11px; }
    .set-feature-body .add-button { max-width: 220px; }
    .sets-note { margin: 18px 0 0; color: var(--ink-soft); font-size: 11px; text-align: right; }

    .contact { padding: 110px 0 80px; background: #e5f1eb; }
    .contact-card { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; padding: clamp(34px, 6vw, 76px); border-radius: 34px; background: var(--paper); box-shadow: var(--shadow); }
    .contact h2 { max-width: 620px; margin: 0; font-family: var(--serif); font-size: clamp(48px, 5.5vw, 76px); font-weight: 300; line-height: .96; letter-spacing: -.04em; }
    .contact-copy p { max-width: 520px; margin: 25px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
    .contact-form { display: grid; gap: 13px; align-content: center; }
    .contact-action { padding: 28px; border-radius: 24px; background: #f2f7f4; }
    .pilot-benefits { display: grid; gap: 4px; margin-bottom: 12px; }
    .pilot-benefits div { display: grid; grid-template-columns: 32px 1fr; column-gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
    .pilot-benefits div > span { grid-row: 1 / span 2; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--sage-strong); font-size: 13px; font-weight: 800; }
    .pilot-benefits strong { align-self: end; font-size: 14px; }
    .pilot-benefits small { color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
    .contact-action .button { width: 100%; }
    .field { display: grid; gap: 7px; }
    .field label { margin-left: 4px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .field input { width: 100%; min-height: 49px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; outline: 0; color: var(--ink); background: #f8f5f2; }
    .field input:focus { border-color: #7cab99; box-shadow: 0 0 0 3px rgba(140,199,177,.18); }
    .form-note { margin: 2px 0 0; color: #788c88; font-size: 10px; line-height: 1.5; }

    footer { padding: 36px 0 44px; background: #e5f1eb; }
    .footer-row { display: flex; justify-content: space-between; gap: 34px; align-items: center; padding-top: 28px; border-top: 1px solid rgba(23,59,58,.16); }
    .footer-brand { display: block; }
    .footer-logo-full { width: min(295px, 70vw); height: auto; object-fit: contain; }
    .footer-copy { margin-top: 12px; color: var(--ink-soft); font-size: 12px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--ink-soft); font-size: 11px; }
    .footer-links a { text-underline-offset: 3px; }

    .legal-page { background: var(--cream); }
    .legal-header { width: min(1180px, calc(100% - 32px)); margin: 16px auto 0; border: 1px solid rgba(255,255,255,.72); border-radius: 22px; background: rgba(255,253,251,.86); box-shadow: 0 10px 35px rgba(43,70,66,.08); }
    .legal-main { width: min(820px, calc(100% - 40px)); margin: 70px auto 100px; }
    .legal-main h1 { margin: 0 0 48px; font-family: var(--serif); font-size: clamp(50px, 7vw, 78px); font-weight: 300; line-height: .95; }
    .legal-main h2 { margin: 38px 0 12px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
    .legal-main p, .legal-main li, .legal-main address { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
    .legal-main address { font-style: normal; }
    .legal-main a { text-underline-offset: 3px; }
    .legal-meta { color: var(--ink-soft); font-size: 12px; }

    .toast {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 30;
      max-width: min(360px, calc(100% - 48px));
      padding: 16px 19px;
      border-radius: 16px;
      color: white;
      background: var(--ink);
      box-shadow: 0 20px 50px rgba(23,59,58,.24);
      font-size: 13px;
      line-height: 1.45;
      transform: translateY(24px);
      opacity: 0;
      pointer-events: none;
      transition: .25s ease;
    }
    .toast.show { transform: translateY(0); opacity: 1; }

    @media (max-width: 980px) {
      .main-nav { display: none; }
      .login { display: none; }
      .hero-grid, .survey-card, .manager-grid, .time-benefit-card, .contact-card { grid-template-columns: 1fr; }
      .survey-card { width: min(100% - 32px, 1180px); }
      .hero-copy { max-width: 760px; }
      .hero-visual { min-height: 620px; }
      .hero-photo { left: 70px; }
      .hero-chat { grid-template-columns: 1fr; }
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .manager-grid { gap: 50px; }
      .modules-overview { grid-template-columns: 1fr; }
      .sets-heading { grid-template-columns: 1fr; align-items: start; }
      .sets-grid { grid-template-columns: 1fr; }
      .contact-card { gap: 46px; }
    }

    @media (max-width: 700px) {
      .shell { width: min(100% - 28px, 1180px); }
      .site-header { width: calc(100% - 20px); top: 10px; margin-top: 10px; }
      .nav-wrap { height: 62px; padding: 0 14px; }
      .brand { gap: 8px; }
      .brand-logo-mark { width: 31px; height: 31px; }
      .brand-logo-wordmark { width: 98px; }
      .cart-button { min-height: 39px; padding: 0 13px; }
      .header-actions .cart-button { padding-inline: 11px; font-size: 12px; }
      .cart-button .cart-label { display: none; }
      .hero { padding: 32px 0 64px; }
      .hero-grid { gap: 34px; }
      .hero h1 { font-size: clamp(52px, 16vw, 72px); }
      .hero-lead { margin-top: 22px; font-size: 16px; }
      .hero-note { display: grid; gap: 8px; margin-top: 30px; }
      .hero-visual { min-height: 520px; }
      .hero-photo { inset: 0 0 0 26px; border-radius: 42% 42% 24px 24px / 27% 27% 24px 24px; }
      .hero-search-card { width: 100%; padding: 13px; }
      .hero-chat { margin-top: 24px; padding: 22px 16px; border-radius: 24px; }
      .chat-message { grid-template-columns: 36px 1fr; gap: 9px; }
      .chat-avatar { width: 36px; height: 36px; }
      .chat-message.reply { margin-left: 28px; }
      .chat-bubble { padding: 14px 15px; }
      .chat-bubble p { font-size: 14px; }
      .proof { padding-bottom: 65px; }
      .proof-grid { grid-template-columns: 1fr; }
      .proof-item { padding: 24px 4px; }
      .proof-item + .proof-item { border-left: 0; border-top: 1px solid var(--line); }
      .survey { padding-bottom: 64px; }
      .survey-card { padding: 30px 20px; border-radius: 26px; }
      .survey-frame { min-height: 260px; padding: 24px 16px; }
      .shop, .manager, .modules, .sets-showcase, .contact { padding: 76px 0; }
      .shop.shop-collapsed { padding: 28px 0 40px; }
      .shop-details { border-radius: 22px; }
      .shop-details summary { min-height: 96px; padding: 22px 18px; }
      .shop-details summary strong { font-size: 29px; }
      .shop-toggle { width: 42px; height: 42px; font-size: 24px; }
      .shop-content { padding: 8px 18px 28px; }
      .shop-content .shop-top { padding-top: 30px; }
      .shop-top { display: grid; gap: 20px; }
      .product-search { grid-template-columns: auto 1fr; }
      .pzn-badge { display: none; }
      .product-grid { grid-template-columns: 1fr; }
      .product-image { height: 230px; }
      .workflow-card { padding: 22px 16px; }
      .workflow-head { display: grid; gap: 10px; }
      .workflow-step { grid-template-columns: 40px 1fr; }
      .step-status { grid-column: 2; }
      .workflow-story::before { left: 19px; }
      .step-marker { width: 40px; height: 40px; }
      .workflow-quote { margin-left: 0; font-size: 27px; }
      .time-benefit { padding-bottom: 76px; }
      .time-benefit-card { padding: 30px 20px; border-radius: 26px; }
      .time-saving strong { font-size: clamp(43px, 13vw, 58px); }
      .time-compare-grid { grid-template-columns: 1fr; }
      .time-shift { gap: 0; padding: 2px 0; }
      .time-shift span { transform: rotate(90deg); }
      .time-row { min-height: 0; }
      .time-outcomes { grid-template-columns: 1fr; }
      .time-outcomes div { min-height: 0; }
      .modules { padding: 64px 0; }
      .modules-heading { margin-bottom: 28px; }
      .platform-cockpit { padding: 20px; }
      .module-list { grid-template-columns: 1fr; }
      .module-card { min-height: 0; }
      .sets-heading { gap: 20px; margin-bottom: 28px; }
      .sets-heading h2 { font-size: clamp(48px, 14vw, 66px); }
      .set-feature-card { grid-template-columns: 1fr; min-height: 0; border-radius: 24px; }
      .set-feature-image { min-height: 250px; }
      .set-feature-image::after { background: linear-gradient(180deg, transparent 72%, rgba(235,244,239,.75)); }
      .set-feature-body { padding: 26px 22px 24px; }
      .set-feature-body .add-button { max-width: none; }
      .sets-note { text-align: left; }
      .contact-card { padding: 28px 20px; border-radius: 26px; }
      .footer-row { align-items: flex-start; flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    }
