:root{
  --b-primary: #09A5CE;
  --b-primary-h: #0E7E97;
  --b-cyan: #2cbfae;
  --b-deep: #06262e;
  --b-deep2: #0a5563;
  --b-ink: #0c2a30;
  --b-body: #45626a;
  --b-meta: #80979e;
  --b-app: #eefaf7;
  --b-app-2: #f5fcfa;
  --b-tint: #e8f7f3;
  --b-tint-bd: #c7ebe3;
  --b-bd: #e2efeb;
  --b-font: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --b-container: 1240px;
  --b-gutter: 40px;
  --b-section: 88px;
  --b-r-chip: 6px;
  --b-r-btn: 10px;
  --b-r-card: 16px;
  --b-r-price: 18px;
  --b-r-band: 20px;
  --b-sh-card: 0 1px 3px rgba(11,23,51,.06);
  --b-sh-cta: 0 10px 26px rgba(9,165,206,.30);
  --b-sh-float: 0 26px 60px -26px rgba(9,165,206,.45);
  --b-sh-hero: 0 36px 84px -30px rgba(11,23,51,.42);
  --b-ease: cubic-bezier(.4,0,.2,1);
  --b-dur: 180ms;
  --b-focus: rgba(4,191,181,.42);
}

:is(.wp-site-blocks,.editor-styles-wrapper) *{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--b-ink);
  background: #fff;
  font-family: var(--b-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
:is(.wp-site-blocks,.editor-styles-wrapper) a{ color: inherit; text-decoration: none; }
:is(.wp-site-blocks,.editor-styles-wrapper) img{ max-width: 100%; display: block; }
::selection{ background: rgba(4,191,181,.18); }

:is(.wp-site-blocks,.editor-styles-wrapper) .public-homepage{ overflow-x: hidden; background: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-container{ width: min(var(--b-container), calc(100% - (var(--b-gutter) * 2))); margin: 0 auto; }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-section{ padding: var(--b-section) var(--b-gutter); }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-eyebrow{
  color: var(--b-primary);
  font: 700 12.5px/1.2 var(--b-font);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
:is(.wp-site-blocks,.editor-styles-wrapper) .home-heading{ margin: 0; color: var(--b-ink); font: 700 40px/1.08 var(--b-font); letter-spacing: -.025em; }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-intro{ margin: 18px 0 0; max-width: 620px; color: var(--b-body); font: 400 16px/1.65 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 13px 22px;
  border: 1px solid #cfe7e1;
  border-radius: var(--b-r-btn);
  background: #fff;
  color: var(--b-ink);
  font: 700 15px/1 var(--b-font);
  transition: background var(--b-dur) var(--b-ease), color var(--b-dur) var(--b-ease), border-color var(--b-dur) var(--b-ease);
  white-space: nowrap;
}
:is(.wp-site-blocks,.editor-styles-wrapper) .home-button:hover{ background: var(--b-tint); }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-button:focus-visible, :is(.wp-site-blocks,.editor-styles-wrapper) .home-link:focus-visible, :is(.wp-site-blocks,.editor-styles-wrapper) .nav-link:focus-visible, :is(.wp-site-blocks,.editor-styles-wrapper) .accordion-button:focus-visible{
  outline: 3px solid var(--b-focus);
  outline-offset: 3px;
}
:is(.wp-site-blocks,.editor-styles-wrapper) .home-button-primary{ border-color: transparent; background: var(--b-primary); color: #fff; box-shadow: var(--b-sh-cta); }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-button-primary:hover{ background: var(--b-primary-h); }

:is(.wp-site-blocks,.editor-styles-wrapper) .announcement-bar{
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  padding: 6px 20px;
  background: var(--announcement-bg, var(--b-deep));
  color: var(--announcement-text, #c4e7e2);
  font: 500 13.5px/1.35 var(--b-font);
  letter-spacing: .005em;
  text-align: center;
}
:is(.wp-site-blocks,.editor-styles-wrapper) .announcement-main{ display: inline-flex; align-items: center; gap: 8px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .announcement-dot{ width: 7px; height: 7px; border-radius: 999px; background: var(--b-cyan); box-shadow: 0 0 0 4px rgba(44,191,174,.18); }
:is(.wp-site-blocks,.editor-styles-wrapper) .announcement-link{ display: inline-flex; align-items: center; gap: 5px; margin-left: 4px; color: #4fc8d2; font-weight: 600; text-decoration: none; }
:is(.wp-site-blocks,.editor-styles-wrapper) .announcement-link:hover{ color: #7ee4ef; }
:is(.wp-site-blocks,.editor-styles-wrapper) .announcement-arrow{ display: inline-flex; width: 13px; height: 13px; flex: none; }
:is(.wp-site-blocks,.editor-styles-wrapper) .announcement-arrow svg{ display: block; width: 100%; height: 100%; }

:is(.wp-site-blocks,.editor-styles-wrapper) .site-header{
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(226,239,235,.88);
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(1.4) blur(10px);
}
:is(.wp-site-blocks,.editor-styles-wrapper) .site-header-inner{ width: min(var(--b-container), calc(100% - 72px)); min-height: 72px; margin: 0 auto; display: flex; align-items: center; justify-content: flex-start; gap: 28px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .site-brand{ display: inline-flex; align-items: center; gap: 11px; font: 800 16px/1.05 var(--b-font); color: var(--b-ink); }
:is(.wp-site-blocks,.editor-styles-wrapper) .site-brand-mark{ width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 12px 26px rgba(9,165,206,.22); }
:is(.wp-site-blocks,.editor-styles-wrapper) .site-nav{ display: flex; align-items: center; gap: 28px; color: var(--b-body); font: 700 14px/1 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .site-actions{ display: flex; align-items: center; gap: 12px; margin-left: auto; }
:is(.wp-site-blocks,.editor-styles-wrapper) .nav-link:hover{ color: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .login-link{ font: 800 14px/1 var(--b-font); color: var(--b-ink); }
:is(.wp-site-blocks,.editor-styles-wrapper) .mobile-menu-icon{ display: none; color: var(--b-ink); }

:is(.wp-site-blocks,.editor-styles-wrapper) .hero-section{ --hero-bg-image: url("hero-bg-wide.png"); --hero-bg-opacity: .92; position: relative; overflow: hidden; background: linear-gradient(180deg,#eefaf7 0%,#fff 70%); padding: 96px var(--b-gutter) 86px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-section::before{ content: ""; position: absolute; inset: 0 0 auto 0; width: 100%; height: 730px; background: var(--hero-bg-image) center top/cover no-repeat; opacity: var(--hero-bg-opacity); pointer-events: none; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-grid{ position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 470px) minmax(560px, 1fr); align-items: center; gap: 74px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-pill{ display: inline-flex; align-items: center; gap: 8px; max-width: 360px; padding: 7px 14px; border: 1px solid var(--b-tint-bd); border-radius: 999px; background: rgba(232,247,243,.78); color: var(--b-primary); font: 800 12px/1.18 var(--b-font); letter-spacing: .04em; text-transform: uppercase; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-title{ margin: 22px 0 0; color: var(--b-ink); font: 800 60px/1.04 var(--b-font); letter-spacing: -.035em; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-lead{ margin: 22px 0 0; color: var(--b-body); font: 400 18.5px/1.6 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-actions{ display: flex; align-items: center; gap: 12px; margin-top: 28px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-note{ display: flex; align-items: flex-start; gap: 8px; margin: 16px 0 0; color: var(--b-meta); font: 500 13.5px/1.45 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-note-icon{ display: inline-flex; flex: none; align-items: center; justify-content: center; margin-top: 3px; color: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-note-icon svg{ display: block; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-media{ position: relative; padding: 14px; border-radius: 32px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-media::before{ content: ""; position: absolute; inset: -8px -5px; background: linear-gradient(rgba(9,165,206,.1), transparent); border-radius: 24px; pointer-events: none; }
:is(.wp-site-blocks,.editor-styles-wrapper) .hero-media img{ position: relative; z-index: 1; width: 100%; border-radius: 22px; box-shadow: var(--b-sh-hero); }

:is(.wp-site-blocks,.editor-styles-wrapper) .trust-strip{ border-top: 1px solid var(--b-bd); border-bottom: 1px solid var(--b-bd); background: var(--trust-bg, var(--b-app-2)); padding: 26px var(--b-gutter); }
:is(.wp-site-blocks,.editor-styles-wrapper) .trust-eyebrow{ margin: 0 0 21px; color: var(--b-meta); text-align: center; font: 800 12px/1.2 var(--b-font); letter-spacing: .08em; text-transform: uppercase; }
:is(.wp-site-blocks,.editor-styles-wrapper) .trust-items{ display: grid; grid-template-columns: repeat(var(--trust-cols, 6), minmax(0, 1fr)); gap: 22px; align-items: center; }
:is(.wp-site-blocks,.editor-styles-wrapper) .trust-item{ display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--b-ink); text-align: center; font: 800 13px/1.16 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .trust-icon{ color: var(--b-primary); }

:is(.wp-site-blocks,.editor-styles-wrapper) .solutions-layout{ display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 540px); gap: 64px; align-items: center; }
:is(.wp-site-blocks,.editor-styles-wrapper) .solution-visual{ --solutions-bg-image: url("solutions-blob-bg.png"); position: relative; min-height: 360px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .solution-visual::before{ content: ""; position: absolute; inset: -84px auto auto -118px; width: 720px; height: 580px; background: var(--solutions-bg-image) center/contain no-repeat; opacity: .35; pointer-events: none; }
:is(.wp-site-blocks,.editor-styles-wrapper) .solution-image{ position: absolute; inset: 0; display: none; align-items: center; justify-content: center; }
:is(.wp-site-blocks,.editor-styles-wrapper) .solution-image.is-active{ display: flex; }
:is(.wp-site-blocks,.editor-styles-wrapper) .solution-image img{ width: min(100%, 560px); border-radius: var(--b-r-card); box-shadow: var(--b-sh-hero); border: 1px solid var(--b-bd); background: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-list{ margin-top: 26px; border-top: 1px solid var(--b-bd); }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-item{ border-bottom: 1px solid var(--b-bd); }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-button{ width: 100%; display: grid; grid-template-columns: 36px 1fr 20px; align-items: center; gap: 14px; padding: 17px 0; border: 0; background: transparent; color: var(--b-ink); text-align: left; cursor: pointer; font: 800 16px/1.25 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-button[aria-expanded="true"]{ color: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .icon-chip{ display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 9px; background: var(--b-tint); color: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-chevron{ color: var(--b-meta); transition: transform var(--b-dur) var(--b-ease); }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-button[aria-expanded="true"] .accordion-chevron{ transform: rotate(180deg); }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-panel{ display: none; padding: 0 0 19px 50px; color: var(--b-body); font: 400 15px/1.56 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .accordion-panel.is-open{ display: block; }

:is(.wp-site-blocks,.editor-styles-wrapper) .stats-band{ position: relative; overflow: hidden; padding: 64px var(--b-gutter); background-color: #06262e; background-image: url("stats-band-bg-extended.png"); background-repeat: no-repeat; background-position: center; background-size: cover; color: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .stats-band-frame{ position: relative; width: 100%; max-width: 1440px; margin: 0 auto; }
:is(.wp-site-blocks,.editor-styles-wrapper) .stats-band-inner{ position: relative; z-index: 1; width: min(var(--b-container), 100%); margin: 0 auto; }
:is(.wp-site-blocks,.editor-styles-wrapper) .stats-grid{ display: grid; grid-template-columns: repeat(var(--stats-cols, 4), minmax(0, 1fr)); gap: 24px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .stat-card{ padding-left: 26px; border-left: 1px solid rgba(255,255,255,.16); }
:is(.wp-site-blocks,.editor-styles-wrapper) .stat-card strong{ display: block; color: #fff; font: 800 31px/1.1 var(--b-font); letter-spacing: -.02em; }
:is(.wp-site-blocks,.editor-styles-wrapper) .stat-card span{ display: block; margin-top: 8px; color: #9bd4d2; font: 500 15px/1.45 var(--b-font); }

:is(.wp-site-blocks,.editor-styles-wrapper) .section-soft{ background: var(--b-app-2); }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-card-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .use-cases-grid{ display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
/* .trust-eyebrow має нульовий верхній відступ; після сітки карток він притискався до них. */
:is(.wp-site-blocks,.editor-styles-wrapper) .market-card-grid + .trust-eyebrow{ margin-top: 32px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-card, :is(.wp-site-blocks,.editor-styles-wrapper) .use-case-card, :is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-card, :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card{ background: #fff; border: 1px solid var(--b-bd); border-radius: var(--b-r-card); box-shadow: var(--b-sh-card); }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-card{ overflow: hidden; position: relative; }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-image{ height: 145px; background: var(--b-tint); object-fit: cover; width: 100%; }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-body{ padding: 20px 18px 22px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-badge{ position: absolute; top: 15px; left: 15px; display: inline-flex; padding: 7px 13px; border-radius: 999px; background: rgba(44,191,174,.95); color: #fff; font: 800 11px/1 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-badge.is-planned{ background: rgba(245,248,250,.94); color: #3f5860; border: 1px solid rgba(9,47,58,.12); box-shadow: 0 8px 18px rgba(7,48,58,.08); }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-name{ margin: 0 0 10px; font: 800 18px/1.2 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .market-text{ margin: 0; color: var(--b-body); font: 400 15px/1.55 var(--b-font); }

:is(.wp-site-blocks,.editor-styles-wrapper) .use-case-card{ padding: 30px 24px; min-height: 178px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .use-case-card h3{ margin: 22px 0 10px; font: 800 17px/1.25 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .use-case-card p{ margin: 0; color: var(--b-body); font: 400 15px/1.55 var(--b-font); }

:is(.wp-site-blocks,.editor-styles-wrapper) .value-section{ background-color: var(--b-app-2); background-image: url("value-bg.png"), linear-gradient(180deg, var(--b-app-2), #fff); background-repeat: no-repeat, no-repeat; background-position: center, center; background-size: cover, cover; position: relative; overflow: hidden; }
:is(.wp-site-blocks,.editor-styles-wrapper) .value-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .dashboard-grid{ display: grid; grid-template-columns: minmax(0, 430px) minmax(540px, 1fr); align-items: center; gap: 84px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .value-points{ display: grid; gap: 20px; margin: 30px 0; }
:is(.wp-site-blocks,.editor-styles-wrapper) .value-point{ display: flex; align-items: flex-start; gap: 16px; color: var(--b-ink); font: 700 16px/1.55 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .check-chip{ display: inline-flex; width: 28px; height: 28px; flex: none; align-items: center; justify-content: center; border-radius: 9px; background: var(--b-primary); color: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .check-chip svg{ display: block; }
:is(.wp-site-blocks,.editor-styles-wrapper) .value-media{ position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
:is(.wp-site-blocks,.editor-styles-wrapper) .value-media img{ width: min(100%, 620px); }
:is(.wp-site-blocks,.editor-styles-wrapper) .value-media img, :is(.wp-site-blocks,.editor-styles-wrapper) .dashboard-media img{ position: relative; z-index: 1; border-radius: var(--b-r-card); box-shadow: var(--b-sh-hero); border: 1px solid var(--b-bd); }

:is(.wp-site-blocks,.editor-styles-wrapper) .text-divider{ background: var(--b-app-2); border-top: 1px solid var(--b-bd); border-bottom: 1px solid var(--b-bd); padding: 48px var(--b-gutter); text-align: center; }
:is(.wp-site-blocks,.editor-styles-wrapper) .text-divider-kicker{ display: inline-flex; align-items: center; gap: 34px; margin: 0 0 10px; color: var(--b-primary); font: 800 12px/1.2 var(--b-font); letter-spacing: .08em; text-transform: uppercase; }
:is(.wp-site-blocks,.editor-styles-wrapper) .text-divider-kicker::before, :is(.wp-site-blocks,.editor-styles-wrapper) .text-divider-kicker::after{ content: ""; width: 30px; height: 2px; background: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .text-divider-text{ max-width: 760px; margin: 0 auto; color: var(--b-ink); font: 800 22px/1.35 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .text-divider-text em{ color: var(--b-primary); font-style: normal; }

:is(.wp-site-blocks,.editor-styles-wrapper) .dashboard-feature-grid{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .dashboard-feature{ display: flex; align-items: center; gap: 12px; padding: 15px 16px; border: 1px solid var(--b-bd); border-radius: 11px; background: #fff; font: 800 14px/1.2 var(--b-font); }

:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-grid{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-card{ overflow: hidden; }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-cover{ height: 138px; display: flex; align-items: flex-end; padding: 24px 20px; color: #fff; background: linear-gradient(135deg,#09A5CE,#46BFA8); position: relative; }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-card.is-featured .knowledge-cover{ background: linear-gradient(135deg,#06262e,#09A5CE); }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-cover::after{ content: ""; position: absolute; right: -40px; top: -30px; width: 160px; height: 130px; border-radius: 28px; background: rgba(255,255,255,.18); transform: rotate(28deg); }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-cover span{ position: relative; z-index: 1; font: 800 18px/1.2 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-body{ padding: 20px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-title{ margin: 0 0 8px; font: 800 17px/1.25 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-text{ margin: 0; color: var(--b-body); font: 400 15px/1.55 var(--b-font); }

:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-section{ background: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-head{ text-align: center; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-head .home-intro{ margin-left: auto; margin-right: auto; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-grid{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 50px; align-items: stretch; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card{ position: relative; display: flex; flex-direction: column; min-height: 520px; padding: 0; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card-head{ padding: 30px 28px 0; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended{ border: 2px solid var(--b-primary); box-shadow: var(--b-sh-float); transform: translateY(-14px); overflow: visible; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-card-head{ position: relative; overflow: hidden; min-height: 184px; padding: 34px 28px 22px; border-radius: calc(var(--b-r-card) - 2px) calc(var(--b-r-card) - 2px) 0 0; background: linear-gradient(120deg,#09A5CE 0%,#16AFC0 48%,#53C9B8 100%); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-card-head::after{ content: ""; position: absolute; right: -100px; top: -42px; width: 300px; height: 190px; border-radius: 42px; background: linear-gradient(115deg,rgba(255,255,255,.18),rgba(255,255,255,.08)); transform: rotate(28deg) skewY(-6deg); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-card-head > *{ position: relative; z-index: 1; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-name, :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-price, :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-subtitle, :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-period{ color: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-badge{ position: absolute; top: -15px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 7px; min-width: 164px; justify-content: center; padding: 8px 18px; border-radius: 999px; background: var(--b-deep); color: #fff; font: 800 11px/1 var(--b-font); letter-spacing: .06em; text-transform: uppercase; z-index: 3; box-shadow: 0 12px 26px rgba(6,38,46,.18); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-badge-icon{ display: inline-flex; color: var(--b-cyan); line-height: 1; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-name{ margin: 0; font: 800 18px/1.2 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-price{ margin: 22px 0 0; font: 800 38px/1 var(--b-font); letter-spacing: -.025em; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-period{ color: var(--b-meta); font: 600 14px/1 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-subtitle{ min-height: 44px; margin: 12px 0 0; color: var(--b-body); font: 400 14px/1.55 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-features{ display: grid; gap: 13px; margin: 25px 28px 0; padding: 25px 0 0; border-top: 1px solid var(--b-bd); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-features{ margin-top: 0; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-feature{ display: flex; align-items: flex-start; gap: 11px; color: var(--b-body); font: 500 14px/1.46 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-feature .check-chip{ width: 20px; height: 20px; margin-top: 1px; border-radius: 999px; background: var(--b-tint); color: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-feature .check-chip svg{ display: block; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-feature{ color: var(--b-ink); font-weight: 700; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended .pricing-feature .check-chip{ background: var(--b-primary); color: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card .pricing-cta{ width: calc(100% - 56px); margin: auto 28px 30px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card:not(.is-recommended) .pricing-cta, :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-extra-cta{ border-color: transparent; background: var(--b-tint); color: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card:not(.is-recommended) .pricing-cta:hover, :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-extra-cta:hover{ background: #dff3ee; color: var(--b-primary-h); }
:is(.wp-site-blocks,.editor-styles-wrapper) .individual-plan{ display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; padding: 24px 28px; border: 1px solid var(--b-bd); border-radius: var(--b-r-card); background: #fff; box-shadow: var(--b-sh-card); }
:is(.wp-site-blocks,.editor-styles-wrapper) .individual-copy{ display: flex; align-items: center; gap: 16px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .individual-icon{ flex: none; display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 12px; background: var(--b-tint); color: var(--b-primary); }
:is(.wp-site-blocks,.editor-styles-wrapper) .individual-icon svg{ width: 21px; height: 21px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-ghost-cta{ flex: none; background: #fff; color: var(--b-ink); }
:is(.wp-site-blocks,.editor-styles-wrapper) .button-arrow{ display: inline-flex; align-items: center; line-height: 1; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-extra{ margin-top: 28px; text-align: center; }
:is(.wp-site-blocks,.editor-styles-wrapper) .pricing-note{ max-width: 720px; margin: 26px auto 0; color: var(--b-meta); text-align: center; font: 400 13.5px/1.6 var(--b-font); }

:is(.wp-site-blocks,.editor-styles-wrapper) .site-footer{ background: var(--b-deep); color: #c2dbdb; padding: 56px var(--b-gutter) 30px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-grid{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-brand-row{ display: flex; align-items: center; gap: 11px; color: #fff; font: 800 16px/1.1 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-brand-text{ margin: 14px 0 0; max-width: 310px; color: #8bb6b8; font: 400 14px/1.6 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-column h2{ margin: 0 0 14px; color: #5f8e92; font: 800 12.5px/1.2 var(--b-font); letter-spacing: .06em; text-transform: uppercase; }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-column a{ display: block; margin: 0 0 10px; color: #c2dbdb; font: 600 14px/1.25 var(--b-font); }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-column a:hover{ color: #fff; }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-socials{ display: flex; gap: 10px; }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-column .footer-social{ display: inline-flex; width: 42px; height: 42px; margin: 0; align-items: center; justify-content: center; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); color: #c2dbdb; }
:is(.wp-site-blocks,.editor-styles-wrapper) .footer-bottom{ display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #6f9a9c; font: 400 13px/1.4 var(--b-font); }

:is(.wp-site-blocks,.editor-styles-wrapper) .home-icon{ width: 20px; height: 20px; display: inline-block; }
:is(.wp-site-blocks,.editor-styles-wrapper) .home-icon svg{ width: 100%; height: 100%; display: block; }

html.public-reveal-ready [data-public-reveal]{
  opacity: 0;
  transform: translate3d(0, var(--public-reveal-y, 18px), 0);
  transition:
    opacity 520ms var(--b-ease) var(--public-reveal-delay, 0ms),
    transform 520ms var(--b-ease) var(--public-reveal-delay, 0ms);
}
html.public-reveal-ready [data-public-reveal].is-revealed{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
html.public-reveal-ready [data-public-reveal].is-reveal-instant{
  transition: none;
}
html.public-reveal-ready .trust-item[data-public-reveal], html.public-reveal-ready .dashboard-feature[data-public-reveal], html.public-reveal-ready .pricing-note[data-public-reveal], html.public-reveal-ready .cta-inner > [data-public-reveal], html.public-reveal-ready .footer-grid > [data-public-reveal], html.public-reveal-ready .footer-bottom[data-public-reveal]{
  --public-reveal-y: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html.public-reveal-ready [data-public-reveal]{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  :root{ --b-gutter: 20px; --b-section: 62px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .announcement-bar{ min-height: 35px; gap: 4px 10px; padding: 7px 16px; font-size: 12px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .announcement-link{ margin-left: 0; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .site-header-inner{ width: 100%; padding: 0 20px; min-height: 58px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .site-nav, :is(.wp-site-blocks,.editor-styles-wrapper) .site-actions{ display: none; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .mobile-menu-icon{ display: block; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .site-brand{ font-size: 15px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .site-brand-mark{ width: 28px; height: 28px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .hero-section{ padding: 36px 20px 34px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .hero-section::before{ height: 330px; background-position: center top; opacity: var(--hero-bg-opacity); }
  :is(.wp-site-blocks,.editor-styles-wrapper) .hero-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .solutions-layout, :is(.wp-site-blocks,.editor-styles-wrapper) .value-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .dashboard-grid{ grid-template-columns: 1fr; gap: 28px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .hero-title{ font-size: 34px; line-height: 1.06; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .hero-lead{ font-size: 15px; line-height: 1.55; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .hero-actions{ flex-direction: column; align-items: stretch; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .home-button{ width: 100%; white-space: normal; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .hero-note{ display: none; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .trust-items{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .trust-item{ flex-direction: row; justify-content: flex-start; padding: 13px 14px; border: 1px solid var(--b-bd); border-radius: 11px; background: #fff; text-align: left; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .solution-visual{ min-height: 220px; order: 2; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .solution-visual::before{ inset: -42px auto auto -62px; width: 420px; height: 338px; opacity: .35; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .accordion-panel{ padding-left: 0; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .stats-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .market-card-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .use-cases-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .footer-grid{ grid-template-columns: 1fr; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .stat-card{ padding: 0; border-left: 0; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .market-card-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .use-cases-grid, :is(.wp-site-blocks,.editor-styles-wrapper) .knowledge-grid{ margin-top: 28px; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .value-media, :is(.wp-site-blocks,.editor-styles-wrapper) .dashboard-media{ min-height: 0; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .dashboard-feature-grid{ grid-template-columns: 1fr; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .pricing-card.is-recommended{ transform: none; }
  :is(.wp-site-blocks,.editor-styles-wrapper) .individual-plan, :is(.wp-site-blocks,.editor-styles-wrapper) .footer-bottom{ flex-direction: column; align-items: flex-start; }
}
