:root {
      color-scheme: only light;
      --font-display: "Unbounded", "Segoe UI", sans-serif;
      --font-text: "Manrope", "Segoe UI", sans-serif;
      --logo-bright: #2fd1a2;
      --ink: #071b14;
      --leaf: #19a77b;
      --leaf-dark: #0f6d4b;
      --mint: #d8f8ed;
      --sand: #f3f8f4;
      --sun: #f1d2a4;
      --clay: #e36b4a;
      --cloud: #ffffff;
      --premium-panel: rgba(255, 255, 255, 0.94);
      --premium-panel-soft: rgba(238, 250, 245, 0.9);
      --premium-border: rgba(15, 109, 75, 0.16);
      --premium-highlight: rgba(216, 248, 237, 0.74);
      --premium-shadow: 0 24px 56px rgba(7, 27, 20, 0.12);
      --premium-shadow-soft: 0 12px 28px rgba(7, 27, 20, 0.08);
      --warn-surface: rgba(242, 194, 123, 0.2);
      --warn-border: rgba(199, 144, 67, 0.34);
      --glass: rgba(255, 255, 255, 0.78);
      --shadow: 0 30px 64px rgba(7, 27, 20, 0.18);
      --shadow-soft: 0 12px 24px rgba(7, 27, 20, 0.1);
      --shadow-card: 0 18px 34px rgba(7, 27, 20, 0.12);
      --shadow-hover: 0 26px 46px rgba(7, 27, 20, 0.14);
      --radius: 28px;
      --radius-sm: 18px;
      --field-pad-y: clamp(12px, 1.4vw, 16px);
      --field-pad-x: clamp(14px, 1.6vw, 18px);
      --field-font: clamp(15px, 1.2vw, 16px);
      --bg-motion-main-duration: 52s;
      --bg-motion-aura-duration: 38s;
      --bg-motion-main-duration-lite: 74s;
      --bg-motion-aura-duration-lite: 62s;
      --bg-motion-flow-duration: 66s;
      --bg-motion-flow-aura-duration: 52s;
      --bg-motion-flow-duration-lite: 92s;
      --bg-motion-flow-aura-duration-lite: 78s;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      min-height: 100dvh;
    }

    body {
      margin: 0;
      font-family: var(--font-text);
      color: var(--ink);
      background: linear-gradient(126deg, #fbfefc 0%, #eef9f3 42%, #e6f2eb 100%);
      background-size: 180% 180%;
      background-position: 12% 34%;
      line-height: 1.6;
      overflow-x: hidden;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
    }

    main {
      transition: filter 0.3s ease;
      flex: 1 0 auto;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: -12vh -10vw;
      pointer-events: none;
      will-change: transform, opacity;
      transform: translate3d(0, 0, 0);
    }

    body::before {
      z-index: -2;
      background:
        radial-gradient(1320px 780px at -8% -22%, rgba(47, 209, 162, 0.44), transparent 66%),
        radial-gradient(1080px 680px at 114% -4%, rgba(15, 109, 75, 0.34), transparent 64%),
        radial-gradient(860px 560px at 22% 86%, rgba(25, 167, 123, 0.24), transparent 69%),
        radial-gradient(680px 440px at 86% 92%, rgba(242, 194, 123, 0.24), transparent 72%),
        linear-gradient(180deg, #fcfffd 0%, #f0f9f4 54%, #e8f1eb 100%);
      background-size: 146% 146%, 132% 132%, 126% 126%, 120% 120%, 110% 110%;
      background-position: 6% 12%, 94% 5%, 22% 88%, 84% 92%, 52% 48%;
      opacity: 1;
      animation:
        bgAtmosphereShift var(--bg-motion-main-duration) ease-in-out infinite alternate,
        bgGradientFlow var(--bg-motion-flow-duration) ease-in-out infinite alternate;
    }

    body::after {
      z-index: -1;
      background:
        radial-gradient(620px 420px at 14% 18%, rgba(216, 248, 237, 0.72), transparent 72%),
        radial-gradient(700px 500px at 86% 24%, rgba(47, 209, 162, 0.32), transparent 74%),
        radial-gradient(560px 390px at 58% 92%, rgba(15, 109, 75, 0.24), transparent 76%);
      background-size: 138% 138%, 128% 128%, 122% 122%;
      background-position: 12% 16%, 88% 22%, 58% 92%;
      opacity: 0.66;
      animation:
        bgAuraDrift var(--bg-motion-aura-duration) ease-in-out infinite alternate,
        bgAuraFlow var(--bg-motion-flow-aura-duration) ease-in-out infinite alternate;
    }

    body.bg-motion-enabled {
      animation: bgBaseFlow 94s ease-in-out infinite alternate;
    }

    body.bg-motion-lite {
      animation-duration: 126s;
    }

    body.bg-motion-disabled,
    body.save-data {
      animation: none !important;
      background-position: 50% 50%;
      background-size: 100% 100%;
    }

    body.bg-motion-enabled::before {
      animation:
        bgAtmosphereShift var(--bg-motion-main-duration) ease-in-out infinite alternate,
        bgGradientFlow var(--bg-motion-flow-duration) ease-in-out infinite alternate;
    }

    body.bg-motion-enabled::after {
      animation:
        bgAuraDrift var(--bg-motion-aura-duration) ease-in-out infinite alternate,
        bgAuraFlow var(--bg-motion-flow-aura-duration) ease-in-out infinite alternate;
    }

    body.bg-motion-lite::before {
      animation-duration: var(--bg-motion-main-duration-lite), var(--bg-motion-flow-duration-lite);
      opacity: 0.92;
    }

    body.bg-motion-lite::after {
      animation-duration: var(--bg-motion-aura-duration-lite), var(--bg-motion-flow-aura-duration-lite);
      opacity: 0.44;
    }

    body.bg-motion-disabled::before {
      animation: none !important;
      transform: none;
      opacity: 1;
    }

    body.bg-motion-disabled::after {
      animation: none !important;
      transform: none;
      opacity: 0;
    }

    @keyframes bgAtmosphereShift {
      0% {
        transform: translate3d(-3.2%, -2.5%, 0) scale(1);
      }
      50% {
        transform: translate3d(3.4%, -1.4%, 0) scale(1.04);
      }
      100% {
        transform: translate3d(-2.4%, 3.1%, 0) scale(1.03);
      }
    }

    @keyframes bgAuraDrift {
      0% {
        transform: translate3d(3.4%, -2.1%, 0) scale(1);
      }
      50% {
        transform: translate3d(-3%, 2.6%, 0) scale(1.07);
      }
      100% {
        transform: translate3d(2.8%, 2.3%, 0) scale(1.05);
      }
    }

    @keyframes bgGradientFlow {
      0% {
        background-position: 6% 12%, 94% 5%, 22% 88%, 84% 92%, 52% 48%;
      }
      50% {
        background-position: 22% 6%, 80% 18%, 38% 78%, 70% 82%, 42% 58%;
      }
      100% {
        background-position: 14% 22%, 94% 4%, 24% 92%, 84% 88%, 58% 46%;
      }
    }

    @keyframes bgAuraFlow {
      0% {
        background-position: 12% 16%, 88% 22%, 58% 92%;
      }
      50% {
        background-position: 24% 10%, 74% 34%, 46% 80%;
      }
      100% {
        background-position: 12% 24%, 90% 24%, 60% 88%;
      }
    }

    @keyframes bgBaseFlow {
      0% {
        background-position: 12% 34%;
      }
      50% {
        background-position: 74% 58%;
      }
      100% {
        background-position: 38% 82%;
      }
    }

    @media (max-width: 767px) {
      body::before {
        inset: -8vh -14vw;
        background:
          radial-gradient(720px 430px at 8% -14%, rgba(47, 209, 162, 0.26), transparent 66%),
          radial-gradient(620px 420px at 114% 0%, rgba(15, 109, 75, 0.2), transparent 64%),
          linear-gradient(180deg, #fbfefc 0%, #edf5f1 100%);
      }

      body::after {
        inset: -10vh -16vw;
        opacity: 0.3;
      }

      body.bg-motion-enabled::before {
        animation-duration: 56s, 72s;
      }

      body.bg-motion-enabled::after {
        animation-duration: 42s, 58s;
      }

      body.bg-motion-lite::after {
        opacity: 0.4;
      }
    }

    body.save-data::before {
      background: linear-gradient(180deg, #fbfefc 0%, #ecf4ef 100%);
      animation: none !important;
      transform: none;
    }

    body.save-data::after {
      animation: none !important;
      transform: none;
      opacity: 0;
    }

    body.save-data .site-header,
    body.save-data .nav-overlay,
    body.save-data .nav-toggle {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    body.save-data .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    body.save-data .hero-visual::after {
      display: none;
    }

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

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 2px solid rgba(15, 109, 75, 0.55);
      outline-offset: 2px;
    }

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

    .container {
      width: min(1200px, 100% - 32px);
      margin: 0 auto;
    }

    @media (min-width: 1280px) {
      .container {
        width: min(1320px, 100% - 80px);
      }
    }

    @media (min-width: 1536px) {
      .container {
        width: min(1440px, 100% - 120px);
      }
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 12px;
      background: var(--leaf-dark);
      color: white;
      padding: 10px 16px;
      border-radius: 999px;
      z-index: 10;
    }

    .skip-link:focus {
      left: 12px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      background: linear-gradient(180deg, rgba(250, 255, 252, 0.92), rgba(244, 250, 247, 0.88));
      border-bottom: 1px solid rgba(15, 109, 75, 0.12);
      box-shadow: 0 6px 24px rgba(7, 27, 20, 0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 14px 0;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-display);
      font-size: 20px;
      letter-spacing: 0.2px;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      line-height: 0;
    }

    .logo-mark svg {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 14px;
      box-shadow: 0 12px 24px rgba(15, 109, 75, 0.2);
    }

    .site-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.2);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(236, 249, 243, 0.74));
      box-shadow: 0 10px 22px rgba(7, 27, 20, 0.09);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      font-size: 16px;
    }

    .site-nav a {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 11px 18px;
      border-radius: 999px;
      color: rgba(7, 27, 20, 0.74);
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.16px;
      transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .site-nav a[aria-current="page"] {
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(226, 247, 237, 0.94));
      color: var(--leaf-dark);
      box-shadow: 0 8px 18px rgba(7, 27, 20, 0.11);
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
      background: rgba(255, 255, 255, 0.92);
      color: var(--leaf-dark);
      box-shadow: 0 6px 14px rgba(7, 27, 20, 0.08);
    }

    .nav-toggle {
      display: none;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.18);
      background: var(--glass);
      color: var(--leaf-dark);
      box-shadow: 0 10px 24px rgba(11, 26, 20, 0.12);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      position: relative;
      z-index: 310;
      font-size: 12px;
      font-weight: 600;
      font-family: var(--font-text);
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
      min-height: 44px;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(15, 109, 75, 0.32);
      box-shadow: 0 14px 28px rgba(11, 26, 20, 0.14);
      transform: translateY(-1px);
    }

    .nav-toggle-icon {
      position: relative;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: background 0.3s ease;
    }

    .nav-toggle-icon::before,
    .nav-toggle-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: transform 0.3s ease;
    }

    .nav-toggle-icon::before {
      top: -5px;
    }

    .nav-toggle-icon::after {
      top: 5px;
    }

    .nav-toggle-label {
      line-height: 1;
    }

    .nav-close {
      display: none;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.18);
      background: rgba(255, 255, 255, 0.92);
      color: var(--leaf-dark);
      cursor: pointer;
      position: fixed;
      top: 16px;
      right: 16px;
      z-index: 320;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .nav-close:hover,
    .nav-close:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(15, 109, 75, 0.32);
      box-shadow: 0 10px 20px rgba(11, 26, 20, 0.12);
    }

    .nav-close-icon {
      position: relative;
      width: 18px;
      height: 18px;
    }

    .nav-close-icon::before,
    .nav-close-icon::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
    }

    .nav-close-icon::before {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-close-icon::after {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    .menu-open .nav-toggle-icon {
      background: transparent;
    }

    .menu-open .nav-toggle-icon::before {
      transform: translateY(5px) rotate(45deg);
    }

    .menu-open .nav-toggle-icon::after {
      transform: translateY(-5px) rotate(-45deg);
    }

    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(11, 26, 20, 0.32);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 220;
    }

    .back-home {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.18);
      background: rgba(255, 255, 255, 0.82);
      color: var(--leaf-dark);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      box-shadow: 0 12px 26px rgba(11, 26, 20, 0.12);
      min-height: 40px;
      white-space: nowrap;
    }

    .back-home:hover,
    .back-home:focus-visible {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(15, 109, 75, 0.32);
      box-shadow: 0 16px 32px rgba(11, 26, 20, 0.16);
      transform: translateY(-1px);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: clamp(10px, 1.4vw, 14px) clamp(18px, 2.6vw, 26px);
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 600;
      font-size: clamp(14px, 1.3vw, 16px);
      letter-spacing: 0.2px;
      line-height: 1.1;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      white-space: nowrap;
      min-height: clamp(44px, 5vw, 52px);
    }

    @media (max-width: 767px) {
      .btn {
        font-size: 16px;
      }
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--logo-bright) 0%, var(--leaf) 46%, var(--leaf-dark) 100%);
      color: white;
      border-color: rgba(15, 109, 75, 0.26);
      box-shadow: 0 18px 32px rgba(15, 109, 75, 0.28);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 22px 40px rgba(15, 109, 75, 0.32);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(15, 109, 75, 0.24);
      box-shadow: 0 12px 24px rgba(7, 27, 20, 0.09);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(15, 109, 75, 0.28);
    }

    .hero {
      padding: clamp(68px, 8vw, 104px) 0 clamp(48px, 5vw, 72px);
      display: grid;
      gap: clamp(30px, 4vw, 54px);
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      align-items: center;
    }

    .start-banner {
      padding: 32px 0 12px;
    }

    .start-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      padding: 32px;
      background:
        radial-gradient(620px 280px at 8% -16%, rgba(47, 209, 162, 0.32), transparent 72%),
        radial-gradient(460px 260px at 92% 10%, rgba(255, 255, 255, 0.18), transparent 72%),
        linear-gradient(136deg, rgba(11, 97, 66, 0.96), rgba(25, 167, 123, 0.9));
      color: #f8f6f1;
      box-shadow: var(--shadow);
      display: grid;
      gap: 28px;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      align-items: stretch;
    }

    .start-card::before {
      content: "";
      position: absolute;
      inset: -42% -24% auto;
      height: 320px;
      pointer-events: none;
      background: radial-gradient(closest-side, rgba(47, 209, 162, 0.34), rgba(25, 167, 123, 0.2) 56%, transparent 80%);
      filter: blur(6px);
      opacity: 0.9;
    }

    .start-card.start-card--single {
      grid-template-columns: 1fr;
    }

    .start-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(320px 260px at 80% 15%, rgba(255, 255, 255, 0.14), transparent 70%),
        radial-gradient(240px 200px at 20% 80%, rgba(255, 255, 255, 0.08), transparent 70%);
      pointer-events: none;
    }

    body.bg-motion-enabled .start-card::before {
      animation: cardGlowDrift 22s ease-in-out infinite alternate;
    }

    body.bg-motion-lite .start-card::before {
      animation-duration: 34s;
      opacity: 0.72;
    }

    body.bg-motion-disabled .start-card::before,
    body.save-data .start-card::before {
      display: none;
    }

    @keyframes cardGlowDrift {
      0% {
        transform: translate3d(-5%, -8%, 0) scale(1);
      }
      100% {
        transform: translate3d(8%, 4%, 0) scale(1.08);
      }
    }

    .start-content {
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .start-header {
      display: grid;
      gap: 10px;
    }

    .start-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      width: fit-content;
    }

    .start-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(24px, 3vw, 38px);
      line-height: 1.05;
    }

    .start-hashtag {
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.8px;
      color: rgba(248, 246, 241, 0.9);
    }

    .start-meta {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
      font-size: 14px;
    }

    .start-meta-item {
      display: grid;
      gap: 4px;
      padding: 10px 12px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .start-meta-item span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      opacity: 0.7;
    }

    .start-meta-item strong {
      font-size: 15px;
    }

    .start-countdown {
      display: grid;
      gap: 14px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      align-content: start;
    }

    .start-countdown-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      opacity: 0.75;
    }

    .start-countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(60px, 1fr));
      gap: 10px;
      text-align: center;
    }

    .start-countdown-item {
      display: grid;
      gap: 4px;
      padding: 12px 8px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .start-countdown-number {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 1px;
    }

    .start-countdown-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      opacity: 0.75;
    }

    .start-countdown-note {
      font-size: 13px;
      opacity: 0.8;
    }

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

    .start-actions .btn {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background-clip: padding-box;
    }

    .start-actions .btn-primary {
      border-color: rgba(255, 255, 255, 0.16);
      box-shadow: 0 14px 28px rgba(7, 57, 40, 0.24);
    }

    .start-actions .btn-ghost {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3);
      color: rgba(248, 246, 241, 0.95);
    }

    .start-actions .btn-ghost:hover,
    .start-actions .btn-ghost:focus-visible {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(25, 167, 123, 0.12);
      color: var(--leaf-dark);
      font-size: 12px;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }

    h1 {
      margin: 18px 0 16px;
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 56px);
      line-height: 1.1;
    }

    .hero p {
      font-size: 17px;
      max-width: 540px;
    }

    .hero-facts {
      list-style: none;
      margin: 16px 0 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 620px;
    }

    .hero-facts li {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(25, 167, 123, 0.1);
      border: 1px solid rgba(15, 109, 75, 0.18);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.2;
      color: var(--leaf-dark);
    }

    .hero-note {
      margin: 12px 0 0;
      font-size: 13px;
      color: rgba(11, 26, 20, 0.78);
      max-width: 620px;
    }

    .hero-note a {
      color: var(--leaf-dark);
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 600;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 24px 0 0;
      width: min(620px, 100%);
    }

    .hero-actions .btn {
      width: 100%;
      min-width: 0;
      white-space: normal;
      text-align: center;
      padding-inline: clamp(12px, 2vw, 22px);
    }

    .plant-card,
    .surface,
    .contact-card,
    .hero-visual,
    .start-card,
    .lead-note {
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .plant-card:hover,
    .surface:hover,
    .contact-card:hover,
    .hero-visual:hover,
    .start-card:hover,
    .lead-note:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    .hero-visual {
      position: relative;
      border-radius: var(--radius);
      padding: 24px;
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(216, 248, 237, 0.68));
      border: 1px solid rgba(15, 109, 75, 0.14);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: -30% 40% auto -20%;
      height: 160px;
      background: radial-gradient(circle, rgba(47, 209, 162, 0.34), transparent 70%);
      filter: blur(10px);
    }

    .hero-illustration {
      width: 100%;
      height: auto;
    }

    .section {
      padding: clamp(54px, 7vw, 92px) 0;
    }

section,
[id] {
  scroll-margin-top: 110px;
}

/* Contacts anchor needs a tighter offset to avoid large visual gap under the sticky header. */
#contacts {
  scroll-margin-top: 82px;
}

@media (max-width: 1023px) {
  #contacts {
    scroll-margin-top: 90px;
  }
}

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(24px, 3vw, 36px);
      margin: 0 0 18px;
      letter-spacing: -0.02em;
      line-height: 1.12;
    }

    .section-subtitle {
      max-width: 720px;
      margin-bottom: 34px;
      font-size: clamp(16px, 1.35vw, 18px);
      line-height: 1.72;
      color: rgba(7, 27, 20, 0.8);
    }

    .faq-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-card {
      border-radius: 18px;
      padding: 24px;
      background: linear-gradient(154deg, var(--premium-panel) 0%, var(--premium-panel-soft) 100%);
      border: 1px solid var(--premium-border);
      box-shadow: var(--premium-shadow-soft);
      display: grid;
      gap: 10px;
    }

    .faq-card h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(16px, 1.8vw, 20px);
      line-height: 1.3;
    }

    .faq-card p {
      margin: 0;
      font-size: 15px;
      color: rgba(11, 26, 20, 0.84);
      line-height: 1.6;
    }

    .lead-copy {
      display: grid;
      gap: 18px;
    }

    .lead-copy .section-subtitle {
      margin-bottom: 0;
    }

    .lead-zones {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .lead-zone {
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--premium-border);
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(240, 249, 245, 0.82));
    }

    .lead-zone h3 {
      margin: 0 0 12px;
      font-family: var(--font-display);
      font-size: 16px;
      letter-spacing: 0.1px;
    }

    .lead-zone ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .lead-zone li {
      position: relative;
      padding-left: 20px;
      font-size: 14px;
      line-height: 1.5;
    }

    .lead-zone li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, #19a77b, #3e8b6c);
      box-shadow: 0 0 0 5px rgba(25, 167, 123, 0.12);
    }

    .lead-temperature {
      border-radius: 18px;
      padding: 18px;
      border: 1px solid var(--warn-border);
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), var(--warn-surface));
      display: grid;
      gap: 10px;
    }

    .lead-temperature p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
    }

    .lead-temperature-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.22);
      background: rgba(255, 255, 255, 0.9);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2px;
      text-transform: uppercase;
    }

    .lead-temperature-badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--clay);
      box-shadow: 0 0 0 4px rgba(227, 107, 74, 0.2);
    }

    .lead-note {
      border-radius: 16px;
      padding: 16px;
      background: rgba(25, 167, 123, 0.08);
      border: 1px solid var(--premium-border);
      font-size: 14px;
    }

    .contact-map {
      grid-column: 1 / -1;
      overflow: hidden;
    }

    .contact-map-stylized {
      display: grid;
      gap: 12px;
      padding: 18px;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 242, 0.88));
    }

    .contact-map-stylized .map-caption {
      padding: 0;
      display: grid;
      gap: 4px;
    }

    .contact-map-stylized .map-caption div {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.35px;
      opacity: 0.65;
    }

    .contact-map-stylized .map-caption strong {
      font-size: clamp(17px, 2vw, 22px);
    }

    .contact-map-svg {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(15, 109, 75, 0.16);
      aspect-ratio: 720 / 320;
      background: linear-gradient(160deg, #eff7f2 0%, #e4f0e9 100%);
    }

    .contact-map-live::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
      background:
        radial-gradient(220px 120px at 82% 16%, rgba(242, 194, 123, 0.14), transparent 70%),
        radial-gradient(240px 130px at 14% 86%, rgba(25, 167, 123, 0.1), transparent 70%);
    }

    .contact-map-canvas {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      min-height: 280px;
    }

    .contact-map-fallback {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: rgba(11, 26, 20, 0.7);
      z-index: 450;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.46), rgba(228, 240, 233, 0.46));
      transition: opacity 0.2s ease;
    }

    .contact-map-canvas.is-ready .contact-map-fallback {
      opacity: 0;
      pointer-events: none;
    }

    .contact-map-canvas .leaflet-tile-pane {
      filter: saturate(0.92) contrast(1.06) brightness(0.98);
    }

    .contact-map-canvas .leaflet-control-zoom {
      border: 1px solid rgba(15, 109, 75, 0.22);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(11, 26, 20, 0.12);
    }

    .contact-map-canvas .leaflet-control-zoom a {
      width: 34px;
      height: 34px;
      line-height: 34px;
      background: rgba(255, 255, 255, 0.95);
      color: var(--leaf-dark);
      border-color: rgba(15, 109, 75, 0.2);
    }

    .contact-map-canvas .leaflet-control-zoom a:hover,
    .contact-map-canvas .leaflet-control-zoom a:focus-visible {
      background: #fff;
      color: var(--leaf-dark);
    }

    .contact-map-canvas .leaflet-control-attribution {
      background: rgba(255, 255, 255, 0.92);
      color: rgba(11, 26, 20, 0.72);
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 8px 0 0 0;
    }

    .contact-map-canvas .leaflet-control-attribution a {
      color: var(--leaf-dark);
    }

    .contact-map-canvas .leaflet-control-attribution .leaflet-control-attribution-prefix,
    .contact-map-canvas .leaflet-control-attribution .leaflet-attribution-flag {
      display: none !important;
    }

    .contact-map-marker {
      background: transparent;
      border: 0;
    }

    .contact-map-marker .map-pin {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transform: translate(-9px, -6px);
    }

    .contact-map-marker .map-pin-dot {
      position: relative;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--leaf-dark);
      border: 2px solid rgba(255, 255, 255, 0.96);
      box-shadow: 0 0 0 8px rgba(15, 109, 75, 0.2), 0 8px 16px rgba(11, 26, 20, 0.16);
    }

    .contact-map-marker .map-pin-dot::after {
      content: "";
      position: absolute;
      inset: -9px;
      border-radius: 999px;
      border: 2px solid rgba(25, 167, 123, 0.34);
      animation: mapPulse 2.2s ease-out infinite;
    }

    .contact-map-marker .map-pin-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(15, 109, 75, 0.2);
      box-shadow: 0 8px 16px rgba(11, 26, 20, 0.12);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      max-width: 220px;
      overflow: hidden;
      text-overflow: ellipsis;
      color: var(--ink);
      letter-spacing: 0.1px;
    }

    @keyframes mapPulse {
      0% {
        transform: scale(0.35);
        opacity: 0.9;
      }
      70% {
        transform: scale(1);
        opacity: 0;
      }
      100% {
        opacity: 0;
      }
    }

    .map-actions {
      display: flex;
    }

    .map-actions .btn {
      min-height: 40px;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .countdown-item {
      background: white;
      border-radius: 18px;
      padding: 18px;
      text-align: center;
      border: 1px solid rgba(15, 109, 75, 0.1);
      box-shadow: 0 12px 20px rgba(11, 26, 20, 0.06);
    }

    .countdown-number {
      font-family: var(--font-display);
      font-size: 28px;
      display: block;
    }

    .countdown-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      opacity: 0.6;
    }

    .countdown-note {
      grid-column: 1 / -1;
      padding: 12px 16px;
      border-radius: 12px;
      background: rgba(25, 167, 123, 0.08);
      font-size: 13px;
    }

    .plants-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .plant-card {
      background: white;
      border-radius: 24px;
      padding: 18px;
      border: 1px solid rgba(15, 109, 75, 0.1);
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 16px;
    }

    .card-media {
      border-radius: 18px;
      padding: 20px;
      min-height: 160px;
      display: flex;
      align-items: flex-end;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      color: rgba(11, 26, 20, 0.85);
      background: linear-gradient(135deg, rgba(223, 243, 231, 0.9), rgba(242, 234, 223, 0.9));
    }

    .card-media::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      border-radius: 999px;
      right: -40px;
      top: -60px;
      background: radial-gradient(circle, rgba(25, 167, 123, 0.28), transparent 70%);
    }

    .plant-card:nth-child(2) .card-media {
      background: linear-gradient(135deg, rgba(242, 194, 123, 0.3), rgba(223, 243, 231, 0.9));
    }

    .plant-card:nth-child(3) .card-media {
      background: linear-gradient(135deg, rgba(227, 107, 74, 0.25), rgba(242, 234, 223, 0.9));
    }

    .plant-card:nth-child(4) .card-media {
      background: linear-gradient(135deg, rgba(25, 167, 123, 0.25), rgba(242, 194, 123, 0.25));
    }

    .plant-card:nth-child(5) .card-media {
      background: linear-gradient(135deg, rgba(242, 234, 223, 0.9), rgba(223, 243, 231, 0.9));
    }

    .plant-card h3 {
      margin: 0 0 6px;
      font-size: 18px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
    }

    .chips li {
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      background: rgba(25, 167, 123, 0.1);
    }

    .split {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      align-items: start;
    }

    .terms-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .terms-flow .section-title {
      margin-bottom: 12px;
    }

    .terms-lead {
      margin: 0;
      font-size: clamp(16px, 1.3vw, 18px);
      line-height: 1.72;
      color: rgba(7, 27, 20, 0.82);
    }

    .flow-steps {
      list-style: none;
      margin: 18px 0 0;
      padding: 0;
      display: grid;
      gap: 0;
      counter-reset: flow-step;
    }

    .flow-steps li {
      counter-increment: flow-step;
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 14px 0;
      border-top: 1px dashed rgba(15, 109, 75, 0.18);
    }

    .flow-steps li:first-child {
      border-top: 0;
      padding-top: 0;
    }

    .flow-steps li::before {
      content: counter(flow-step, decimal-leading-zero);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: rgba(25, 167, 123, 0.12);
      border: 1px solid rgba(25, 167, 123, 0.3);
      color: var(--leaf-dark);
      font-family: var(--font-display);
      font-size: 13px;
      line-height: 1;
      margin-top: 1px;
    }

    .flow-kpis {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .kpi-chip {
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(15, 109, 75, 0.14);
      box-shadow: var(--premium-shadow-soft);
      display: grid;
      gap: 4px;
    }

    .kpi-chip span {
      font-size: 12px;
      color: rgba(11, 26, 20, 0.64);
      text-transform: uppercase;
      letter-spacing: 0.35px;
      line-height: 1.2;
    }

    .kpi-chip strong {
      font-size: 16px;
      line-height: 1.3;
      color: var(--ink);
    }

    .terms-side {
      display: grid;
      gap: 16px;
    }

    .terms-card {
      padding: clamp(24px, 3vw, 30px);
    }

    .terms-card h3 {
      margin: 0 0 10px;
      font-family: var(--font-display);
      font-size: clamp(20px, 2.1vw, 28px);
      line-height: 1.15;
    }

    .terms-spec .list {
      gap: 11px;
    }

    .surface {
      background: linear-gradient(154deg, var(--premium-panel) 0%, var(--premium-panel-soft) 100%);
      border-radius: var(--radius);
      padding: clamp(26px, 3.2vw, 34px);
      border: 1px solid var(--premium-border);
      box-shadow: var(--premium-shadow);
    }

    .list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 14px;
    }

    .list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .list li::before {
      content: "";
      width: 12px;
      height: 12px;
      margin-top: 7px;
      border-radius: 6px;
      background: var(--leaf);
      box-shadow: 0 0 0 6px rgba(25, 167, 123, 0.12);
      flex-shrink: 0;
    }

    @media (max-width: 1023px) {
      .hero > div:first-child {
        display: grid;
        align-content: start;
        gap: 14px;
      }

      .hero h1,
      .hero p,
      .hero-facts,
      .hero-note {
        margin: 0;
      }

      .hero-actions {
        margin-top: 2px;
      }

      .terms-layout {
        grid-template-columns: 1fr;
      }

      .terms-side {
        gap: 14px;
      }
    }

    @media (max-width: 767px) {
      .hero-facts {
        gap: 8px;
      }

      .hero-facts li {
        font-size: 12px;
        padding: 6px 10px;
      }

      .hero-note {
        font-size: 12px;
      }

      .hero-actions {
        gap: 10px;
      }

      .hero-actions .btn {
        min-height: 48px;
        font-size: 15px;
        line-height: 1.2;
      }

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

      .faq-card {
        padding: 18px;
      }

      .terms-flow,
      .terms-card {
        padding: 22px;
      }

      .flow-steps li {
        grid-template-columns: 40px minmax(0, 1fr);
      }

      .flow-steps li::before {
        width: 34px;
        height: 34px;
        font-size: 12px;
      }

      .flow-kpis {
        grid-template-columns: 1fr;
      }

      .kpi-chip strong {
        font-size: 15px;
      }

      .terms-card h3 {
        font-size: clamp(19px, 6vw, 24px);
      }

      .contact-map-stylized {
        padding: 16px;
      }

      .contact-map-svg {
        aspect-ratio: 16 / 9;
      }

      .contact-map-canvas {
        min-height: 230px;
      }

      .contact-map-canvas .leaflet-control-zoom {
        transform: scale(0.9);
        transform-origin: top right;
      }

      .contact-map-canvas .leaflet-control-attribution {
        font-size: 10px;
        padding: 1px 6px;
      }

      .contact-map-marker .map-pin {
        gap: 6px;
        transform: translate(-7px, -4px);
      }

      .contact-map-marker .map-pin-dot {
        width: 14px;
        height: 14px;
        box-shadow: 0 0 0 6px rgba(15, 109, 75, 0.18), 0 6px 12px rgba(11, 26, 20, 0.14);
      }

      .contact-map-marker .map-pin-dot::after {
        inset: -7px;
      }

      .contact-map-marker .map-pin-label {
        font-size: 10px;
        padding: 4px 7px;
        max-width: 58vw;
      }

      .map-actions .btn {
        width: 100%;
        justify-content: center;
      }
    }

    .consent {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 13px;
      margin-top: 12px;
      text-transform: none;
      letter-spacing: 0;
      opacity: 0.85;
    }

    .consent input[type="checkbox"] {
      flex-shrink: 0;
      accent-color: var(--leaf-dark);
      width: 18px;
      height: 18px;
      min-width: 0;
      min-height: 0;
      padding: 0;
      cursor: pointer;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: 2px solid rgba(15, 109, 75, 0.3);
      border-radius: 4px;
      background: #fff;
      position: relative;
      transition: all 0.2s ease;
    }

    .consent input[type="checkbox"]:checked {
      background: var(--leaf-dark);
      border-color: var(--leaf-dark);
    }

    .consent input[type="checkbox"]:checked::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: translate(-50%, -55%) rotate(45deg);
    }

    .consent input[type="checkbox"]:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(25, 167, 123, 0.15);
    }

    .honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .form-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    label {
      display: grid;
      gap: 8px;
      font-size: 14px;
      text-transform: none;
      letter-spacing: 0;
      opacity: 0.8;
    }

    .label-title {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-weight: 600;
      color: rgba(7, 27, 20, 0.84);
    }

input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
select,
textarea {
  border-radius: 16px;
  border: 1px solid rgba(15, 109, 75, 0.24);
  padding: var(--field-pad-y) var(--field-pad-x);
  font-size: var(--field-font);
  font-family: var(--font-text);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 3px 10px rgba(7, 27, 20, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  min-height: clamp(44px, 5vw, 52px);
  line-height: 1.3;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):hover,
select:hover,
textarea:hover {
  border-color: rgba(15, 109, 75, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(242, 250, 246, 0.94));
}

input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"])::placeholder,
textarea::placeholder {
  color: rgba(7, 27, 20, 0.46);
}

/* Ensure consistent sizing on mobile */
@media (max-width: 767px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  select,
  textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(11, 26, 20, 0.55) 50%),
    linear-gradient(135deg, rgba(11, 26, 20, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - var(--field-pad-x) - 6px) 52%,
    calc(100% - var(--field-pad-x)) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: calc(var(--field-pad-x) * 2.2);
  cursor: pointer;
}

select:focus {
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

select option {
  color: var(--ink);
}

select::-ms-expand {
  display: none;
}

/* Safari-specific fixes for form elements */
@supports (-webkit-touch-callout: none) {
  select {
    background-color: #fff;
    -webkit-appearance: none;
  }
  
  input[type="checkbox"] {
    -webkit-appearance: none;
  }
}

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: rgba(15, 109, 75, 0.54);
      box-shadow: 0 0 0 4px rgba(25, 167, 123, 0.18), 0 8px 18px rgba(7, 27, 20, 0.07);
      background: #fff;
    }

    textarea {
      min-height: 132px;
      resize: vertical;
    }

    .form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .form-note {
      font-size: 13px;
      opacity: 0.72;
      margin-top: 14px;
      text-align: left;
      line-height: 1.4;
      color: var(--ink);
    }

    [data-share-form] {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(15, 109, 75, 0.16);
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(241, 250, 245, 0.93));
      box-shadow: 0 22px 44px rgba(7, 27, 20, 0.12);
    }

    [data-share-form]::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, var(--logo-bright), var(--leaf), rgba(15, 109, 75, 0.32));
      pointer-events: none;
    }

    [data-share-form] .consent {
      margin-top: 14px;
      align-items: flex-start;
      font-size: 14px;
      line-height: 1.48;
      opacity: 0.92;
    }

    [data-share-form] .consent input[type="checkbox"] {
      margin-top: 2px;
    }

    [data-share-form] input[data-phone-mask] {
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.02em;
    }

    [data-share-form] input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
    [data-share-form] select,
    [data-share-form] textarea {
      font-size: clamp(14px, 1.05vw, 15px);
      line-height: 1.25;
      padding-inline: clamp(12px, 1.35vw, 16px);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 249, 0.94));
    }

    [data-share-form] input::placeholder,
    [data-share-form] textarea::placeholder {
      font-size: 1em;
      letter-spacing: 0;
      color: rgba(7, 27, 20, 0.42);
      opacity: 1;
    }

    [data-share-form] select {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 249, 0.94)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23505f58' d='M6.6 8.6a1 1 0 0 1 1.4 0L12 12.6l4-4a1 1 0 1 1 1.4 1.4l-4.7 4.7a1 1 0 0 1-1.4 0L6.6 10a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E");
      background-repeat: no-repeat, no-repeat;
      background-position: 0 0, calc(100% - 14px) 50%;
      background-size: 100% 100%, 16px 16px;
      padding-right: 42px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    [data-share-form] select:hover {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 249, 0.94)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23505f58' d='M6.6 8.6a1 1 0 0 1 1.4 0L12 12.6l4-4a1 1 0 1 1 1.4 1.4l-4.7 4.7a1 1 0 0 1-1.4 0L6.6 10a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E");
      background-repeat: no-repeat, no-repeat;
      background-position: 0 0, calc(100% - 14px) 50%;
      background-size: 100% 100%, 16px 16px;
    }

    [data-share-form] .form-actions {
      margin-top: 18px;
      gap: 12px;
      align-items: center;
    }

    [data-share-form] .form-actions .btn {
      flex: 1 1 260px;
      min-height: 54px;
      font-size: clamp(15px, 1.2vw, 17px);
    }

    [data-share-form] .form-actions .btn-primary {
      font-weight: 700;
      letter-spacing: 0.18px;
      box-shadow: 0 16px 30px rgba(15, 109, 75, 0.26);
    }

    @media (min-width: 1280px) {
      [data-share-form] .form-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      [data-share-form] .share-field--volume {
        grid-column: span 2;
      }
    }

    @media (max-width: 1023px) {
      [data-share-form] .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      [data-share-form] .share-field--volume {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 479px) {
      [data-share-form] .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      [data-share-form] .form-actions .btn {
        width: 100%;
        min-height: 52px;
      }
    }

    .contact-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.2);
      background: white;
      font-size: 13px;
      font-weight: 600;
      position: relative;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .contact-btn:hover,
    .contact-btn:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(15, 109, 75, 0.4);
      box-shadow: 0 12px 20px rgba(11, 26, 20, 0.08);
    }

.contact-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-icon-tg {
  color: #0088cc;
}

.contact-icon-wa {
  color: #25D366;
}

.contact-icon-mail {
  color: var(--leaf-dark);
}

.contact-btn:hover .contact-icon,
.contact-btn:focus-visible .contact-icon {
  transform: scale(1.1);
}

.contact-icon::before {
  content: none;
}

    .required {
      color: var(--clay);
      font-weight: 700;
      line-height: 1;
    }

    [data-tooltip]::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: rgba(11, 26, 20, 0.9);
      color: white;
      font-size: 11px;
      padding: 6px 10px;
      border-radius: 999px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    [data-tooltip]:hover::after,
    [data-tooltip]:focus-visible::after {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .contact-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-card {
      background: linear-gradient(154deg, var(--premium-panel) 0%, var(--premium-panel-soft) 100%);
      border-radius: 18px;
      padding: 18px;
      border: 1px solid var(--premium-border);
      box-shadow: var(--premium-shadow-soft);
    }

    .contact-card a {
      font-weight: 600;
    }

    .footer {
      padding: 30px 0 50px;
      font-size: 13px;
      opacity: 0.7;
      margin-top: auto;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      margin-top: 10px;
    }

    .page {
      padding: 48px 0 60px;
    }

    .page h1,
    .page h2,
    .page h3 {
      font-family: var(--font-display);
      margin: 0;
    }

    .page h1 {
      font-size: clamp(26px, 3vw, 34px);
    }

    .page h2 {
      font-size: 20px;
      margin-top: 10px;
    }

    .page h3 {
      font-size: 18px;
    }

    .page ul,
    .page ol {
      padding-left: 18px;
      margin: 6px 0;
    }

    .page .hero-facts {
      margin: 16px 0 0;
      padding-left: 0;
    }

    .card {
      background: linear-gradient(155deg, var(--premium-panel) 0%, var(--premium-panel-soft) 100%);
      border-radius: var(--radius);
      padding: clamp(24px, 2.8vw, 34px);
      box-shadow: var(--premium-shadow);
      border: 1px solid var(--premium-border);
      display: grid;
      gap: 20px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .page-card {
      backdrop-filter: blur(8px);
    }

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

    .stock-page {
      padding: 44px 0 64px;
      overflow-x: hidden;
    }

    .stock-container {
      display: grid;
      gap: 16px;
      min-width: 0;
    }

    .stock-view-tabs {
      display: inline-flex;
      width: fit-content;
      max-width: 100%;
      gap: 8px;
      padding: 6px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.16);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: var(--premium-shadow-soft);
      backdrop-filter: blur(10px);
    }

    .stock-view-tab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
      color: rgba(11, 26, 20, 0.76);
      border: 1px solid transparent;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }

    .stock-view-tab:hover,
    .stock-view-tab:focus-visible {
      background: rgba(25, 167, 123, 0.08);
      border-color: rgba(15, 109, 75, 0.18);
      color: var(--ink);
    }

    .stock-view-tab.is-active {
      background: linear-gradient(155deg, rgba(240, 250, 244, 0.95), rgba(226, 244, 235, 0.9));
      border-color: rgba(15, 109, 75, 0.28);
      color: var(--leaf-dark);
      box-shadow: 0 8px 18px rgba(11, 26, 20, 0.09);
    }

    .stock-intro-card,
    .stock-controls-card {
      min-width: 0;
    }

    .stock-intro-head {
      display: grid;
      gap: 8px;
      min-width: 0;
    }

    .stock-intro-head p {
      margin: 0;
      font-size: 14px;
      color: rgba(11, 26, 20, 0.74);
      max-width: 780px;
    }

    .stock-intro-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      min-width: 0;
    }

    body[data-page-type="seo_categories"] .stock-intro-metrics,
    body[data-page-type="seo_category"] .stock-intro-metrics {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stock-metric {
      min-width: 0;
      padding: 12px 14px;
      border-radius: 16px;
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(237, 248, 242, 0.86));
      border: 1px solid var(--premium-border);
      display: grid;
      gap: 5px;
    }

    .stock-metric span {
      font-size: 11px;
      letter-spacing: 0.35px;
      text-transform: uppercase;
      color: rgba(11, 26, 20, 0.6);
    }

    .stock-metric strong {
      min-width: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: clamp(15px, 1.4vw, 18px);
      line-height: 1.2;
      color: var(--ink);
    }

    .stock-source-badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      max-width: 100%;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.26);
      background: rgba(25, 167, 123, 0.1);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .stock-source-badge.is-live {
      color: var(--leaf-dark);
      border-color: rgba(15, 109, 75, 0.3);
      background: rgba(25, 167, 123, 0.12);
    }

    .stock-source-badge.is-cache {
      color: #815723;
      border-color: rgba(199, 144, 67, 0.38);
      background: rgba(242, 194, 123, 0.2);
    }

    .stock-source-badge.is-stale {
      color: #7b3c2f;
      border-color: rgba(227, 107, 74, 0.4);
      background: rgba(227, 107, 74, 0.18);
    }

    .stock-toolbar {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) auto;
      align-items: end;
      gap: 12px;
      min-width: 0;
    }

    .stock-control {
      min-width: 0;
      display: grid;
      gap: 6px;
      text-transform: none;
      letter-spacing: 0;
      opacity: 1;
      font-size: 14px;
      color: rgba(11, 26, 20, 0.9);
    }

    .stock-control span {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: rgba(11, 26, 20, 0.64);
    }

    .stock-input,
    .stock-select {
      min-width: 0;
    }

    .stock-refresh {
      min-width: 132px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .stock-state {
      min-width: 0;
      border-radius: 18px;
      padding: 16px 18px;
      border: 1px solid var(--premium-border);
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(240, 249, 245, 0.86));
      box-shadow: var(--premium-shadow-soft);
      font-size: 14px;
      color: rgba(11, 26, 20, 0.86);
    }

    .stock-state.is-loading {
      border-color: rgba(15, 109, 75, 0.22);
      background: linear-gradient(155deg, rgba(245, 252, 248, 0.95), rgba(223, 243, 231, 0.72));
    }

    .stock-state.is-empty {
      border-color: rgba(15, 109, 75, 0.2);
      background: linear-gradient(155deg, rgba(250, 252, 251, 0.95), rgba(236, 245, 240, 0.82));
    }

    .stock-state.is-error {
      border-color: rgba(227, 107, 74, 0.34);
      background: linear-gradient(155deg, rgba(255, 247, 245, 0.95), rgba(248, 227, 220, 0.86));
      color: rgba(122, 52, 37, 0.92);
    }

    .stock-grid {
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .stock-grid.stock-grid--single {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: none;
    }

    .stock-card {
      min-width: 0;
      display: grid;
      grid-template-rows: auto 1fr;
      border-radius: 22px;
      overflow: hidden;
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 245, 0.9));
      border: 1px solid var(--premium-border);
      box-shadow: var(--premium-shadow-soft);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .stock-card.is-highlighted {
      border-color: rgba(15, 109, 75, 0.42);
      box-shadow: 0 0 0 3px rgba(25, 167, 123, 0.22), var(--shadow-hover);
      background: linear-gradient(155deg, rgba(248, 253, 250, 0.99), rgba(232, 247, 238, 0.94));
    }

    @media (hover: hover) {
      .stock-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
      }
    }

    .stock-card-media {
      min-width: 0;
      aspect-ratio: 4 / 3;
      background: linear-gradient(160deg, rgba(224, 243, 233, 0.78), rgba(245, 235, 220, 0.7));
      overflow: hidden;
      position: relative;
    }

    .stock-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .stock-card-media--placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stock-card-media--placeholder span {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      letter-spacing: 0.4px;
      color: #f8f6f1;
      background: linear-gradient(135deg, #0f6d4b, #19a77b 65%, #f2c27b 100%);
      box-shadow: 0 12px 24px rgba(11, 26, 20, 0.16);
    }

    .stock-card-body {
      min-width: 0;
      display: grid;
      gap: 12px;
      padding: 16px 16px 18px;
    }

    .stock-card-top {
      min-width: 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
    }

    .stock-card-top h3 {
      min-width: 0;
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(18px, 1.55vw, 21px);
      line-height: 1.25;
      color: var(--ink);
      overflow-wrap: anywhere;
    }

    .stock-qty {
      flex-shrink: 0;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.22);
      background: rgba(25, 167, 123, 0.1);
      font-size: 12px;
      font-weight: 600;
      line-height: 1.2;
      white-space: nowrap;
    }

    .stock-card-meta {
      min-width: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .stock-card-specs {
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .stock-spec {
      min-width: 0;
      padding: 8px 10px;
      border-radius: 12px;
      border: 1px solid var(--premium-border);
      background: rgba(255, 255, 255, 0.84);
      display: grid;
      gap: 4px;
    }

    .stock-spec span {
      font-size: 11px;
      letter-spacing: 0.24px;
      text-transform: uppercase;
      color: rgba(11, 26, 20, 0.58);
    }

    .stock-spec strong {
      min-width: 0;
      font-size: 15px;
      line-height: 1.2;
      color: var(--ink);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .stock-category,
    .stock-code {
      min-width: 0;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
      border: 1px solid var(--premium-border);
      background: rgba(255, 255, 255, 0.75);
      color: rgba(11, 26, 20, 0.78);
    }

    .stock-card-bottom {
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
    }

    .stock-price-box {
      display: inline-grid;
      gap: 3px;
      min-width: 0;
      padding: 10px 14px 11px;
      border-radius: 14px;
      border: 1px solid rgba(15, 109, 75, 0.24);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(223, 243, 231, 0.82));
      box-shadow: 0 10px 22px rgba(11, 26, 20, 0.1);
    }

    .stock-price-label {
      font-size: 11px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      color: rgba(11, 26, 20, 0.6);
    }

    .stock-price {
      font-family: var(--font-display);
      font-size: clamp(24px, 2.1vw, 30px);
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--leaf-dark);
      white-space: nowrap;
    }

    .stock-updated {
      min-width: 0;
      font-size: 12px;
      line-height: 1.35;
      color: rgba(11, 26, 20, 0.62);
      text-align: right;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .stock-order-btn {
      width: 100%;
      margin-top: 2px;
      min-height: 44px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      border-color: rgba(15, 109, 75, 0.22);
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 241, 0.88));
      color: var(--leaf-dark);
      box-shadow: 0 10px 20px rgba(11, 26, 20, 0.08);
      gap: 9px;
      justify-content: center;
    }

    .stock-order-btn .stock-order-icon {
      width: 18px;
      height: 18px;
      min-width: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .stock-order-btn .stock-order-icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @media (hover: hover) {
      .stock-order-btn:hover {
        background: linear-gradient(155deg, rgba(245, 251, 248, 0.98), rgba(228, 243, 235, 0.92));
        border-color: rgba(15, 109, 75, 0.34);
        box-shadow: 0 14px 24px rgba(11, 26, 20, 0.12);
      }
    }

    .stock-card-actions {
      display: grid;
      gap: 8px;
      min-width: 0;
    }

    .stock-share-group {
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--premium-border);
    }

    .stock-share-label {
      font-size: 12px;
      line-height: 1.2;
      color: rgba(11, 26, 20, 0.66);
      white-space: nowrap;
    }

    .stock-share-links {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .stock-share-link {
      min-width: 0;
      min-height: 32px;
      padding: 6px 10px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2px;
      border: 1px solid rgba(15, 109, 75, 0.24);
      background: rgba(255, 255, 255, 0.96);
      color: var(--ink);
      white-space: nowrap;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    @media (hover: hover) {
      .stock-share-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 16px rgba(11, 26, 20, 0.12);
      }
    }

    .stock-share-link.is-vk {
      border-color: rgba(58, 117, 190, 0.38);
      color: #2f67a8;
    }

    .stock-share-link.is-tg {
      border-color: rgba(39, 163, 229, 0.4);
      color: #0e79b8;
    }

    .stock-share-link.is-wa {
      border-color: rgba(53, 171, 83, 0.4);
      color: #1d8d45;
    }

    @media (min-width: 1536px) {
      .stock-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 1023px) {
      .stock-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .stock-refresh {
        grid-column: 1 / -1;
        width: 100%;
      }

      .stock-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .stock-grid.stock-grid--single {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 767px) {
      .stock-view-tabs {
        width: 100%;
        justify-content: space-between;
      }

      .stock-view-tab {
        flex: 1 1 0;
      }

      .stock-intro-metrics {
        grid-template-columns: 1fr;
      }

      .stock-toolbar {
        grid-template-columns: 1fr;
      }

      .stock-card-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .stock-price-box {
        padding: 9px 12px 10px;
      }

      .stock-price {
        font-size: clamp(22px, 7vw, 28px);
      }

      .stock-updated {
        text-align: left;
      }

      .stock-share-group {
        flex-direction: column;
        align-items: flex-start;
      }

      .stock-share-links {
        justify-content: flex-start;
      }

      .stock-grid.stock-grid--single {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 479px) {
      .stock-page {
        padding: 32px 0 48px;
      }

      .stock-container {
        gap: 14px;
      }

      .stock-intro-card,
      .stock-controls-card {
        padding: 18px;
      }

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

      .stock-card {
        width: 100%;
      }

      .stock-price-box {
        width: 100%;
      }

      .stock-card-top {
        flex-direction: column;
      }

      .stock-card-top h3 {
        font-size: 17px;
      }

      .stock-qty {
        align-self: flex-start;
      }

      .stock-card-media {
        aspect-ratio: 1 / 1;
      }

      .stock-card-specs {
        grid-template-columns: 1fr;
      }

      .stock-state {
        padding: 14px 16px;
      }
    }

    .notice {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(25, 167, 123, 0.08);
      font-size: 14px;
    }

    .intro {
      display: grid;
      gap: 12px;
    }

    .offer-meta {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .offer-card {
      padding: 14px 16px;
      border-radius: 16px;
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(237, 248, 242, 0.9));
      border: 1px solid var(--premium-border);
      display: grid;
      gap: 4px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .offer-card span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      opacity: 0.6;
    }

    .offer-card a {
      font-weight: 700;
    }

    .offer-card.offer-handle {
      background: linear-gradient(155deg, rgba(233, 246, 239, 0.98), rgba(217, 241, 229, 0.9));
    }

    .offer-handle-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
    }

    .offer-channel-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.26);
      background: rgba(255, 255, 255, 0.84);
      color: var(--leaf-dark);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.1;
      text-decoration: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .offer-channel-link:hover,
    .offer-channel-link:focus-visible {
      border-color: rgba(15, 109, 75, 0.36);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 8px 16px rgba(11, 26, 20, 0.1);
    }

    .offer-alert {
      padding: 16px;
      border-radius: 16px;
      background: linear-gradient(155deg, rgba(247, 253, 249, 0.94), rgba(227, 244, 236, 0.92));
      border: 1px solid var(--premium-border);
      font-size: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .offer-warning {
      background: linear-gradient(155deg, rgba(255, 246, 242, 0.96), rgba(248, 223, 211, 0.9));
      border-color: rgba(227, 107, 74, 0.28);
    }

    .offer-temp-rule {
      background: linear-gradient(155deg, rgba(255, 252, 242, 0.96), rgba(250, 235, 202, 0.9));
      border-color: var(--warn-border);
    }

    .offer-section {
      display: grid;
      gap: 10px;
      padding-bottom: 18px;
      border-bottom: 1px dashed rgba(15, 109, 75, 0.15);
    }

    .offer-section:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .offer-section p {
      margin: 0;
      font-size: 14px;
    }

    .offer-subtitle {
      font-weight: 600;
      margin-top: 6px;
    }

    .offer-letter {
      font-weight: 600;
      margin-top: 4px;
    }

    .offer-sublist {
      margin: 0;
      padding-left: 18px;
      font-size: 14px;
    }

    .offer-sublist li {
      margin: 6px 0;
    }

    .offer-wide {
      background: linear-gradient(155deg, rgba(244, 251, 247, 0.9), rgba(230, 244, 236, 0.86));
      border-radius: 18px;
      padding: 16px;
      border: 1px solid var(--premium-border);
    }

    .offer-accordion-grid {
      display: grid;
      gap: 12px;
    }

    .offer-accordion {
      border-radius: 16px;
      border: 1px solid var(--premium-border);
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 247, 0.9));
      padding: 12px 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .offer-card:hover,
    .offer-alert:hover,
    .offer-accordion:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    .offer-accordion summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .offer-accordion summary::-webkit-details-marker {
      display: none;
    }

    .offer-accordion-title {
      display: grid;
      gap: 4px;
    }

    .offer-accordion-title strong {
      font-size: 15px;
    }

    .offer-accordion-title span {
      font-size: 12px;
      opacity: 0.7;
    }

    .offer-accordion summary::after {
      content: "+";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      border: 1px solid rgba(15, 109, 75, 0.3);
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
    }

    .offer-accordion[open] summary::after {
      content: "−";
    }

    .offer-accordion-content {
      margin-top: 10px;
      display: grid;
      gap: 8px;
      font-size: 14px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: rgba(11, 26, 20, 0.92);
      color: white;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 13px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 20;
    }

    .toast.is-visible {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 1023px) {
      body.menu-open {
        overflow: hidden;
      }

      .menu-open .site-header {
        z-index: 360;
      }

      .header-inner {
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .logo {
        min-height: 44px;
        line-height: 1.1;
      }

      .nav-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .menu-open .nav-toggle {
        background: rgba(15, 109, 75, 0.14);
        border-color: rgba(15, 109, 75, 0.32);
        box-shadow: 0 14px 30px rgba(11, 26, 20, 0.18);
      }

      .nav-overlay {
        display: block;
        background: linear-gradient(185deg, rgba(7, 21, 17, 0.28), rgba(7, 21, 17, 0.44));
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
      }

      .menu-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
      }

      .site-nav {
        position: fixed;
        top: calc(50dvh + (var(--portal-header-height, 76px) / 2));
        left: 50vw;
        right: auto;
        width: min(460px, calc(100vw - 28px));
        max-height: min(78dvh, 620px);
        display: grid;
        align-content: start;
        justify-items: stretch;
        gap: 12px;
        padding: 18px 16px;
        border-radius: 26px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        background: linear-gradient(145deg, rgba(250, 255, 252, 0.88), rgba(236, 248, 243, 0.84));
        box-shadow: 0 30px 56px rgba(11, 26, 20, 0.26);
        -webkit-backdrop-filter: blur(20px) saturate(130%);
        backdrop-filter: blur(20px) saturate(130%);
        text-align: center;
        transform: translate(-50%, -58%) scale(0.95);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
        overflow-y: auto;
        z-index: 300;
      }

      .site-nav::before {
        content: none;
      }

      .site-nav-primary {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .menu-open .site-nav {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .site-nav a {
        position: relative;
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(244, 252, 248, 0.86));
        border: 1px solid rgba(15, 109, 75, 0.2);
        box-shadow: 0 8px 16px rgba(11, 26, 20, 0.08);
        color: var(--leaf-dark);
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        letter-spacing: 0.12px;
      }

      .site-nav a::after {
        content: none;
      }

      .site-nav a[aria-current="page"] {
        background: linear-gradient(155deg, rgba(225, 246, 236, 0.96), rgba(242, 250, 247, 0.9));
        color: var(--leaf-dark);
        border-color: rgba(15, 109, 75, 0.32);
        box-shadow: 0 12px 22px rgba(15, 109, 75, 0.14);
      }

      .site-nav a[aria-current="page"]::after {
        content: none;
      }

      .nav-close {
        display: none;
      }

      .site-nav a:hover,
      .site-nav a:focus-visible {
        background: var(--premium-highlight);
        border-color: rgba(15, 109, 75, 0.28);
        box-shadow: 0 10px 18px rgba(11, 26, 20, 0.11);
        transform: translateY(-1px);
      }

      .header-actions {
        width: 100%;
        justify-content: flex-start;
      }

      .header-actions .btn-primary,
      .header-actions .btn-ghost {
        display: none;
      }

      .start-card {
        padding: 24px;
        grid-template-columns: 1fr;
      }

      .start-countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      body.menu-open .cookie-banner {
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 20px));
      }
    }

    @media (max-width: 479px) {
      .lead-zone,
      .lead-temperature,
      .lead-note {
        padding: 14px;
      }

      .hero-actions {
        gap: 8px;
      }

      .hero-actions .btn {
        min-height: 46px;
        font-size: 14px;
        padding: 10px 10px;
      }

      .lead-temperature-badge {
        font-size: 11px;
      }

      .header-actions {
        gap: 8px;
      }

      .header-actions .btn {
        flex: 1 1 100%;
        justify-content: center;
      }

      .nav-toggle {
        padding: 8px 12px;
        font-size: 12px;
      }

      .nav-toggle-label {
        display: none;
      }

      .site-nav {
        width: calc(100vw - 20px);
        max-height: 76dvh;
        border-radius: 20px;
        padding: 14px 12px;
      }

      .site-nav a {
        min-height: 46px;
        padding: 12px;
        font-size: 15px;
      }

      .start-card {
        padding: 18px;
      }

      .start-meta {
        grid-template-columns: 1fr;
      }

      .start-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .start-actions .btn {
        width: 100%;
      }

      .start-countdown {
        padding: 14px;
      }
    }

    @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
      body.menu-open main {
        filter: blur(6px);
      }

      .nav-overlay {
        background: rgba(11, 26, 20, 0.56);
      }

      .nav-toggle {
        background: #fff;
      }

      @media (max-width: 1023px) {
        .site-nav {
          background: #f8f7f2;
        }
      }
    }

    @media (min-resolution: 2dppx) {
      input,
      select,
      textarea {
        border-color: rgba(15, 109, 75, 0.24);
      }

      .btn-secondary,
      .btn-ghost {
        border-color: rgba(15, 109, 75, 0.28);
      }

      .plant-card,
      .surface,
      .contact-card,
      .hero-visual,
      .start-card,
      .lead-note,
      .card,
      .offer-card,
      .offer-alert,
      .offer-accordion {
        outline: 0.5px solid rgba(11, 26, 20, 0.08);
        outline-offset: -1px;
      }
    }

    .seo-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .seo-category-card {
      display: grid;
      gap: 14px;
      align-content: start;
      grid-template-rows: auto auto minmax(0, 1fr) auto;
      padding: 22px;
    }

    .seo-category-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .seo-category-head h2 {
      margin: 0;
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.25;
    }

    .seo-category-head h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.3;
    }

    .seo-category-head h2 a {
      text-decoration: underline;
      text-decoration-color: rgba(15, 109, 75, 0.25);
      text-underline-offset: 3px;
    }

    .seo-category-head h3 a {
      text-decoration: underline;
      text-decoration-color: rgba(15, 109, 75, 0.25);
      text-underline-offset: 3px;
    }

    .seo-overview {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .seo-category-note {
      margin: 0;
      font-size: 14px;
      color: rgba(11, 26, 20, 0.74);
      line-height: 1.45;
    }

    .seo-category-note strong {
      color: var(--ink);
      font-weight: 700;
    }

    .seo-kpi {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(25, 167, 123, 0.1);
      border: 1px solid rgba(15, 109, 75, 0.2);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }

    .seo-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .seo-list li {
      display: flex;
      gap: 10px;
      justify-content: space-between;
      align-items: baseline;
      font-size: 14px;
    }

    .seo-list li a {
      text-decoration: underline;
      text-decoration-color: rgba(15, 109, 75, 0.22);
      text-underline-offset: 2px;
    }

    .seo-list li strong {
      font-size: 14px;
      line-height: 1.4;
      text-align: right;
    }

    .seo-category-link {
      width: fit-content;
      margin-top: auto;
    }

    .seo-breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 13px;
      opacity: 0.82;
    }

    .seo-breadcrumbs a {
      text-decoration: underline;
      text-decoration-color: rgba(15, 109, 75, 0.24);
      text-underline-offset: 2px;
    }

    .seo-channel-promo {
      display: grid;
      gap: 8px;
      text-decoration: none;
      background: linear-gradient(135deg, rgba(15, 109, 75, 0.94), rgba(25, 167, 123, 0.92) 58%, rgba(242, 194, 123, 0.92) 100%);
      color: #f8f6f1;
      border: 1px solid rgba(15, 109, 75, 0.24);
      box-shadow: 0 14px 28px rgba(11, 26, 20, 0.18);
      overflow: hidden;
    }

    .seo-channel-promo-eyebrow {
      font-size: 11px;
      letter-spacing: 0.32px;
      text-transform: uppercase;
      opacity: 0.86;
    }

    .seo-channel-promo strong {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(20px, 2.2vw, 28px);
      line-height: 1.22;
      max-width: 760px;
    }

    .seo-channel-promo-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid rgba(248, 246, 241, 0.44);
      background: rgba(255, 255, 255, 0.16);
      color: #f8f6f1;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    @media (hover: hover) {
      .seo-channel-promo:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 34px rgba(11, 26, 20, 0.24);
      }
    }

    .seo-product-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 20px;
      align-items: start;
    }

    .seo-product-media {
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(15, 109, 75, 0.14);
      background: linear-gradient(155deg, #edf6f1, #f4efe6);
      aspect-ratio: 16 / 11;
      min-height: 0;
    }

    .seo-product-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .seo-product-body h1 {
      margin: 0;
      font-size: clamp(26px, 2.6vw, 44px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }

    .seo-product-price {
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid rgba(15, 109, 75, 0.2);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(223, 243, 231, 0.82));
      display: grid;
      gap: 2px;
      width: fit-content;
      max-width: 100%;
    }

    .seo-product-price span {
      font-size: 11px;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      color: rgba(11, 26, 20, 0.6);
    }

    .seo-product-price strong {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.4vw, 46px);
      line-height: 1;
      color: var(--leaf-dark);
      white-space: nowrap;
    }

    .seo-product-meta {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .seo-product-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
      width: min(100%, 700px);
      min-width: 0;
    }

    .seo-product-actions > .btn {
      width: 100%;
      justify-content: center;
      min-width: 0;
      min-height: 48px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .seo-product-back-btn {
      border-color: rgba(15, 109, 75, 0.26);
      background: rgba(255, 255, 255, 0.76);
    }

    .seo-product-list {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(15, 109, 75, 0.12);
    }

    .seo-updated {
      margin: 14px 0 0;
      font-size: 13px;
      color: rgba(11, 26, 20, 0.72);
    }

    .seo-updated--top {
      margin: 0;
      font-size: 12px;
      color: rgba(11, 26, 20, 0.64);
    }

    body[data-page-type="seo_product"] .seo-product-body {
      min-width: 0;
      display: grid;
      align-content: start;
      gap: 10px;
    }

    body[data-page-type="seo_product"] .section {
      padding-top: clamp(18px, 2.2vw, 28px);
      padding-bottom: clamp(18px, 2.2vw, 28px);
    }

    body[data-page-type="seo_product"] .seo-product-layout + .section {
      padding-top: clamp(14px, 1.8vw, 22px);
    }

    body[data-page-type="seo_product"] .section + .section {
      padding-top: clamp(14px, 1.8vw, 22px);
    }

    body[data-page-type="seo_product"] .seo-breadcrumbs {
      margin-bottom: 2px;
      font-size: 14px;
      color: rgba(11, 26, 20, 0.68);
    }

    body[data-page-type="seo_product"] .seo-breadcrumbs a {
      text-decoration: none;
      border-bottom: 1px solid rgba(15, 109, 75, 0.24);
      transition: border-color 0.15s ease;
    }

    body[data-page-type="seo_product"] .seo-product-price {
      margin-top: 0;
      padding: 12px 16px;
      border-radius: 18px;
      box-shadow: 0 10px 24px rgba(11, 26, 20, 0.08);
    }

    body[data-page-type="seo_product"] .seo-product-price strong {
      letter-spacing: -0.03em;
    }

    body[data-page-type="seo_product"] .seo-product-meta {
      margin-top: 2px;
      gap: 8px;
    }

    body[data-page-type="seo_product"] .seo-product-meta .seo-kpi {
      background: rgba(255, 255, 255, 0.8);
      border-color: rgba(15, 109, 75, 0.2);
      box-shadow: 0 4px 10px rgba(11, 26, 20, 0.04);
      padding: 6px 10px;
      font-size: 12px;
    }

    body[data-page-type="seo_product"] .seo-product-meta .seo-kpi:last-child {
      background: rgba(25, 167, 123, 0.13);
      border-color: rgba(15, 109, 75, 0.28);
    }

    body[data-page-type="seo_product"] .seo-updated {
      margin: 2px 0 0;
      font-size: 13px;
    }

    body[data-page-type="seo_product"] .seo-product-actions {
      margin-top: 6px;
      width: min(100%, 700px);
      gap: 10px;
    }

    body[data-page-type="seo_product"] .seo-product-actions > .btn {
      min-height: 48px;
      font-size: 16px;
    }

    body[data-page-type="seo_product"] .seo-product-actions > .btn:first-child {
      box-shadow: 0 14px 26px rgba(15, 109, 75, 0.2);
    }

    body[data-page-type="seo_product"] .seo-product-list {
      margin-top: 4px;
      padding-top: 12px;
      border-top: 1px solid rgba(15, 109, 75, 0.14);
      gap: 0;
    }

    body[data-page-type="seo_product"] .seo-product-list li {
      padding: 8px 0;
      border-bottom: 1px dashed rgba(15, 109, 75, 0.18);
      column-gap: 18px;
    }

    body[data-page-type="seo_product"] .seo-product-list li:last-child {
      border-bottom: 0;
      padding-bottom: 2px;
    }

    body[data-page-type="seo_product"] .seo-product-list li span {
      font-size: 14px;
      color: rgba(11, 26, 20, 0.74);
    }

    body[data-page-type="seo_product"] .seo-product-list li strong {
      font-size: 15px;
      line-height: 1.35;
      color: var(--ink);
    }

    body[data-page-type="seo_product"] .seo-product-media .stock-card-media--placeholder {
      width: 100%;
      height: 100%;
      min-height: clamp(240px, 26vw, 420px);
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at 78% 18%, rgba(243, 199, 132, 0.2), transparent 40%),
        radial-gradient(circle at 20% 82%, rgba(25, 167, 123, 0.18), transparent 42%),
        linear-gradient(155deg, rgba(234, 244, 239, 0.92), rgba(244, 238, 226, 0.9));
    }

    body[data-page-type="seo_product"] .seo-product-media .stock-card-media--placeholder span {
      width: 74px;
      height: 74px;
      border-radius: 20px;
      font-size: 29px;
      letter-spacing: 0.6px;
      box-shadow: 0 16px 28px rgba(11, 26, 20, 0.14);
    }

    .seo-faq-grid {
      margin-top: 8px;
    }

    @media (max-width: 1023px) {
      .seo-product-layout {
        grid-template-columns: 1fr;
      }

      .seo-product-media {
        min-height: 220px;
        aspect-ratio: 4 / 3;
      }

      .seo-category-link {
        width: 100%;
        justify-content: center;
      }

      .seo-list li strong {
        text-align: left;
      }

      body[data-page-type="seo_product"] .seo-product-actions {
        width: 100%;
      }

      body[data-page-type="seo_product"] .section {
        padding-top: 14px;
        padding-bottom: 14px;
      }

      body[data-page-type="seo_product"] .seo-product-list li {
        grid-template-columns: 1fr;
        row-gap: 2px;
      }

      body[data-page-type="seo_product"] .seo-product-list li strong {
        text-align: left;
      }
    }
    .seo-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }

    .seo-grid > .seo-category-card {
      min-width: 0;
      min-height: 100%;
    }

    .seo-grid > .seo-category-card:not(.card) {
      padding: 22px;
      border-radius: 22px;
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 245, 0.9));
      border: 1px solid var(--premium-border);
      box-shadow: var(--premium-shadow-soft);
    }

    .seo-category-head,
    .seo-category-head h2,
    .seo-category-head h3 {
      min-width: 0;
    }

    .seo-category-head h2 a,
    .seo-category-head h3 a {
      display: inline-block;
      max-width: 100%;
      text-decoration: none;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .seo-list li {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      column-gap: 12px;
    }

    .seo-list li a {
      min-width: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      text-overflow: ellipsis;
      text-decoration: none;
    }

    .seo-list li span,
    .seo-list li strong {
      white-space: nowrap;
      font-weight: 700;
    }

    body[data-page-type="seo_category"] .stock-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 1140px;
      gap: 18px;
    }

    body[data-page-type="seo_category"] .stock-grid.stock-grid--single {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: none;
    }

    body[data-page-type="seo_category"] .stock-intro-metrics,
    body[data-page-type="seo_categories"] .stock-intro-metrics {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body[data-page-type="seo_category"] .stock-intro-metrics > .stock-metric,
    body[data-page-type="seo_categories"] .stock-intro-metrics > .stock-metric {
      grid-column: span 1;
    }

    body[data-page-type="seo_category"] .stock-card-media {
      aspect-ratio: 16 / 10;
    }

    body[data-page-type="seo_category"] .stock-card-top h3 a {
      text-decoration: none;
    }

    body[data-page-type="seo_category"] .stock-price {
      font-size: clamp(28px, 2.8vw, 40px);
      letter-spacing: -0.02em;
    }

    @media (max-width: 1023px) {
      body[data-page-type="seo_category"] .stock-grid {
        max-width: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      body[data-page-type="seo_category"] .stock-grid.stock-grid--single {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 767px) {
      .seo-grid {
        grid-template-columns: 1fr;
      }

      .seo-category-card {
        padding: 18px;
      }

      .seo-category-head {
        align-items: center;
      }

      .seo-list li a {
        -webkit-line-clamp: 1;
      }

      body[data-page-type="seo_category"] .stock-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      body[data-page-type="seo_category"] .stock-grid.stock-grid--single {
        grid-template-columns: 1fr;
      }

      .seo-product-actions {
        grid-template-columns: 1fr;
      }

      .seo-product-actions > .btn:first-child {
        grid-column: auto;
      }

      .seo-channel-promo-link {
        width: 100%;
      }
    }


    /* Cookie Consent Banner */
    .cookie-banner {
      position: fixed;
      bottom: 16px;
      right: 16px;
      z-index: 100;
      width: min(380px, calc(100vw - 32px));
      max-width: calc(100vw - 32px);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(15, 109, 75, 0.12);
      border-radius: 18px;
      box-shadow: 0 12px 40px rgba(11, 26, 20, 0.16);
      transform: translateY(calc(100% + 20px));
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .cookie-banner.is-visible {
      transform: translateY(0);
      opacity: 1;
    }

    .cookie-banner-content {
      display: grid;
      gap: 16px;
      padding: 18px 20px;
    }

    .cookie-banner-text {
      font-size: 13px;
      line-height: 1.5;
    }

    .cookie-banner-text a {
      color: var(--leaf);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cookie-banner-actions {
      display: flex;
      gap: 8px;
    }

    .cookie-banner .btn {
      font-size: 13px;
      padding: 10px 18px;
      white-space: nowrap;
    }

    @media (max-width: 767px) {
      .cookie-banner {
        bottom: calc(16px + env(safe-area-inset-bottom));
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
      }

      .cookie-banner-actions {
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      body::before,
      body::after {
        animation: none !important;
        transform: none;
      }

      .start-card::before {
        animation: none !important;
        transform: none !important;
        display: none !important;
      }

      body::after {
        opacity: 0;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }

      .btn,
      main,
      .toast,
      .plant-card,
      .surface,
      .contact-card,
      .hero-visual,
      .start-card,
      .lead-note,
      .card,
      .offer-card,
      .offer-alert,
      .offer-accordion,
      .contact-btn,
      .cookie-banner,
      input,
      select,
      textarea {
        transition: none;
      }
    }

    @media (forced-colors: active) {
      .btn,
      .contact-btn,
      .nav-toggle,
      .nav-close,
      .site-nav a,
      .skip-link {
        border: 1px solid ButtonText;
        background: Canvas;
        color: ButtonText;
        forced-color-adjust: auto;
      }

      .site-header {
        background: Canvas;
        border-bottom: 1px solid ButtonText;
      }

      .consent input[type="checkbox"] {
        appearance: auto;
        -webkit-appearance: auto;
        border: 1px solid ButtonText;
        background: Canvas;
      }

      .lead-zone li::before,
      .lead-temperature-badge::before {
        display: none;
      }

      .hero-facts li,
      .faq-card {
        border: 1px solid ButtonText;
        background: Canvas;
        color: CanvasText;
        box-shadow: none;
      }

      .contact-map-live::after,
      .contact-map-marker .map-pin-dot::after {
        display: none;
      }

      .contact-map-canvas .leaflet-control-zoom a,
      .contact-map-canvas .leaflet-control-attribution,
      .contact-map-marker .map-pin-label {
        border: 1px solid ButtonText;
        background: Canvas;
        color: CanvasText;
        box-shadow: none;
      }

      .contact-map-marker .map-pin-dot {
        border: 1px solid ButtonText;
        background: ButtonText;
        box-shadow: none;
      }

    }

    /* Retina display optimizations */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
    }
