:root {
  --bg: #f5fbff;
  --surface: #ffffff;
  --surface-soft: #f8fcff;
  --border: rgba(13, 48, 91, 0.1);
  --text: #12355a;
  --text-soft: #56718e;
  --navy: #0e3157;
  --blue: #1764ff;
  --cyan: #18c3d8;
  --cyan-deep: #119ebd;
  --shadow: 0 24px 70px rgba(15, 52, 96, 0.08);
  --shadow-soft: 0 12px 32px rgba(15, 52, 96, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(24, 195, 216, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

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

.landing-shell {
  position: relative;
  overflow: hidden;
}

.landing-shell::before,
.landing-shell::after {
  content: "";
  position: absolute;
  inset: auto auto 0 -10%;
  width: 52vw;
  height: 42vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(24, 195, 216, 0.14), transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}

.landing-shell::after {
  inset: 12% -16% auto auto;
}

.site-header,
.hero-section,
.stats-section,
.section-block,
.testimonial-section,
.score-section,
.cta-section,
.demo-section,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 10px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px -12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  z-index: -1;
  box-shadow: var(--shadow-soft);
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(180px, 20vw, 268px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 15px;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--blue), #2d8cff);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 100, 255, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  border: 1px solid rgba(23, 100, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 40px;
}

.hero-copy h1 {
  margin: 12px 0 20px;
  font-size: clamp(3.2rem, 6.2vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--navy);
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--cyan);
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(23, 100, 255, 0.08);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-transform: none;
}

.hero-lead,
.section-heading h2,
.feature-card p,
.step-card p,
.testimonial-copy p,
.score-copy p,
.faq-card p,
.cta-copy p,
.demo-copy p,
.capability-card p,
.stat-card small,
.score-note,
.score-caption span,
.mock-sidebar-link,
.panel-card span,
.phone-score small,
.phone-list,
.footer-brand p,
.footer-legal,
.testimonial-author span {
  color: var(--text-soft);
}

.hero-lead {
  margin: 0;
  max-width: 640px;
  font-size: 1.26rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 34px;
}

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

.capability-card,
.feature-card,
.step-card,
.faq-card,
.stat-card,
.demo-card,
.score-main-card,
.mini-chart-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.capability-card {
  min-height: 168px;
  padding: 24px 22px;
  border-radius: 24px;
}

.capability-icon,
.feature-icon,
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(23, 100, 255, 0.12), rgba(24, 195, 216, 0.12));
  color: var(--blue);
  font-weight: 800;
  position: relative;
  flex: 0 0 auto;
}

.capability-icon::before,
.capability-icon::after,
.feature-icon::before,
.feature-icon::after,
.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
}

.capability-icon-scan::before,
.feature-icon-shield::before {
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 12px;
}

.capability-icon-scan::after {
  inset: 16px;
  border: 2px dashed rgba(23, 100, 255, 0.42);
  border-radius: 8px;
}

.capability-icon-box::before,
.stat-icon-box::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
  border-radius: 5px;
}

.capability-icon-chart::before,
.feature-icon-data::before {
  bottom: 12px;
  left: 13px;
  width: 6px;
  height: 15px;
  border-radius: 4px;
  background: currentColor;
  box-shadow: 10px -6px 0 0 currentColor, 20px -14px 0 0 currentColor;
}

.capability-icon-chart::after,
.feature-icon-growth::before {
  width: 18px;
  height: 18px;
  right: 10px;
  top: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(20deg);
}

.feature-icon-shield::after {
  left: 20px;
  top: 15px;
  width: 14px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 0 0 10px 10px;
  border-top: 0;
}

.feature-icon-growth::after {
  left: 14px;
  bottom: 15px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transform: rotate(-28deg);
  transform-origin: left center;
}

.feature-icon-team::before {
  top: 14px;
  left: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 10px 0 0 0 currentColor, 20px 0 0 0 currentColor;
}

.feature-icon-team::after {
  left: 11px;
  bottom: 15px;
  width: 34px;
  height: 12px;
  border: 2px solid currentColor;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 0;
}

.feature-icon-priority::before {
  left: 14px;
  top: 13px;
  width: 26px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 10px;
}

.feature-icon-priority::after {
  left: 20px;
  top: 21px;
  width: 12px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  box-shadow: 0 9px 0 -1px currentColor, 0 18px 0 -1px currentColor;
}

.feature-icon-orders::before {
  left: 11px;
  top: 18px;
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 8px 8px;
  border-top-width: 3px;
}

.feature-icon-orders::after {
  right: 10px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(35deg);
  box-shadow: -12px 18px 0 -7px currentColor, -5px 11px 0 -7px currentColor;
}

.stat-icon-euro::before {
  content: "€";
  position: static;
  font-size: 1.55rem;
  font-weight: 800;
}

.stat-icon-alert::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.stat-icon-alert::after {
  width: 3px;
  height: 10px;
  background: currentColor;
  top: 14px;
  left: 22px;
  box-shadow: 0 14px 0 -1px currentColor;
}

.stat-icon-clock::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.stat-icon-clock::after {
  width: 2px;
  height: 8px;
  background: currentColor;
  top: 15px;
  left: 23px;
  box-shadow: 5px 5px 0 -0.5px currentColor;
}

.capability-card strong,
.feature-card h3,
.step-card h3,
.faq-card h3,
.panel-card h2,
.score-caption strong,
.mini-chart-card h3 {
  color: var(--navy);
}

.capability-card strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 1.06rem;
}

.capability-card p {
  margin: 0;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.device-laptop {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(12, 40, 76, 0.96), rgba(14, 49, 87, 0.82));
  box-shadow: 0 30px 80px rgba(9, 33, 58, 0.24);
}

.device-laptop::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -18px;
  height: 20px;
  border-radius: 999px;
  background: rgba(16, 44, 77, 0.18);
  filter: blur(10px);
}

.device-screen {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 510px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}

.mock-sidebar {
  padding: 18px 16px;
  background: linear-gradient(180deg, #12355a 0%, #102f4e 100%);
  color: rgba(255, 255, 255, 0.86);
}

.mock-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}

.mock-sidebar-brand img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.mock-sidebar-link {
  display: block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.mock-sidebar-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mock-dashboard {
  padding: 24px;
}

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

.metric-disclaimer {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
}

.metric-card,
.panel-card {
  background: var(--surface);
  border: 1px solid rgba(17, 71, 121, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.metric-card {
  padding: 18px 16px;
  min-height: 108px;
}

.metric-card span,
.stat-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

.metric-card strong,
.stat-value {
  display: block;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--navy);
}

.metric-card small {
  color: #17a66f;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 14px;
}

.panel-card {
  padding: 20px;
}

.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-title-row h2 {
  margin: 0;
  font-size: 1.02rem;
}

.panel-title-row span {
  font-size: 13px;
}

.priority-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.priority-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 53, 90, 0.08);
  font-size: 14px;
}

.priority-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.priority-list strong {
  color: var(--blue);
  font-size: 13px;
}

.chart-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-ring {
  --ring-size: 168px;
  width: var(--ring-size);
  height: var(--ring-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 44%, var(--blue) 44% 82%, #d9eef5 82% 100%);
}

.score-ring.large {
  --ring-size: 236px;
}

.score-ring::before {
  content: "";
  width: calc(var(--ring-size) - 26px);
  height: calc(var(--ring-size) - 26px);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(18, 53, 90, 0.05);
}

.score-ring-inner {
  position: absolute;
  text-align: center;
}

.score-ring-inner strong {
  display: block;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
  color: var(--navy);
}

.score-ring-inner small {
  font-size: 1.1rem;
  color: var(--text-soft);
}

.score-note {
  margin: 16px 0 0;
  text-align: center;
  line-height: 1.6;
}

.device-phone {
  position: absolute;
  right: -6px;
  bottom: 22px;
  width: 208px;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, #0d1320 0%, #233244 100%);
  box-shadow: 0 26px 54px rgba(9, 33, 58, 0.28);
}

.phone-screen {
  min-height: 396px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.phone-topbar {
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 700;
}

.phone-score {
  padding: 18px;
  border-radius: 22px;
  background: rgba(23, 100, 255, 0.06);
  text-align: center;
}

.phone-score span,
.phone-score small {
  display: block;
}

.phone-score strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 2.5rem;
  color: var(--navy);
}

.phone-list {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  min-height: 124px;
}

.section-block,
.testimonial-section,
.score-section,
.cta-section,
.demo-section {
  padding: 96px 0 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.18;
}

.command-lead {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.command-grid .feature-card p {
  max-width: 32ch;
}

.command-grid .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.command-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(232, 242, 255, 0.95), rgba(240, 249, 255, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.92),
    0 18px 42px rgba(17, 71, 121, 0.08);
  color: var(--blue);
}

.command-icon svg {
  width: 52px;
  height: 52px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.step-card,
.faq-card {
  padding: 28px;
  border-radius: 28px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  font-size: 1.2rem;
}

.feature-icon-premium {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(23, 100, 255, 0.1), rgba(24, 195, 216, 0.08));
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(23, 100, 255, 0.05);
}

.feature-icon-premium::before,
.feature-icon-premium::after {
  content: none;
}

.feature-icon-premium svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-card h3,
.step-card h3,
.faq-card h3 {
  margin: 20px 0 10px;
  font-size: 1.32rem;
  line-height: 1.25;
  text-wrap: balance;
}

.feature-card p,
.step-card p,
.faq-card p {
  margin: 0;
  line-height: 1.7;
}

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

.step-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-deep));
  color: #ffffff;
  font-weight: 700;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: stretch;
}

.testimonial-copy,
.testimonial-visual,
.cta-section {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.testimonial-copy {
  position: relative;
  padding: 40px;
}

.quote-mark {
  position: absolute;
  top: 26px;
  left: 34px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(24, 195, 216, 0.24);
}

.testimonial-copy p {
  position: relative;
  margin: 18px 0 30px;
  padding-left: 32px;
  font-size: 1.42rem;
  line-height: 1.6;
  max-width: 28ch;
}

.testimonial-author {
  padding-left: 32px;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
}

.testimonial-visual {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(24, 195, 216, 0.08), rgba(23, 100, 255, 0.06)),
    #ffffff;
}

.pharmacist-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 320px;
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(24, 195, 216, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(18, 53, 90, 0.04), rgba(18, 53, 90, 0.16));
}

.pharmacist-badge {
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 700;
}

.pharmacist-avatar {
  width: 180px;
  height: 180px;
  margin: auto 0 26px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, #ffffff 0 10%, #d5e9f6 11% 24%, transparent 25%),
    radial-gradient(circle at 50% 70%, #d8f7fb 0 16%, #7fcce0 17% 26%, transparent 27%),
    linear-gradient(180deg, rgba(23, 100, 255, 0.28), rgba(24, 195, 216, 0.2));
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.5);
}

.pharmacist-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.18rem;
}

.score-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.score-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.15;
  color: var(--navy);
}

.score-copy p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.score-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.score-list li {
  position: relative;
  padding-left: 30px;
  margin-top: 14px;
  line-height: 1.6;
}

.score-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 6px rgba(24, 195, 216, 0.12);
}

.score-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
}

.score-main-card {
  padding: 30px;
  border-radius: 34px;
  text-align: center;
}

.score-caption {
  margin-top: 20px;
}

.score-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

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

.mini-chart-card {
  padding: 20px;
  border-radius: 24px;
}

.mini-chart-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.mini-chart-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
}

.sparkline {
  height: 56px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(23, 100, 255, 0.08), rgba(23, 100, 255, 0) 70%),
    linear-gradient(120deg, transparent 0 8%, currentColor 8% 10%, transparent 10% 18%, currentColor 18% 20%, transparent 20% 28%, currentColor 28% 30%, transparent 30% 38%, currentColor 38% 40%, transparent 40% 48%, currentColor 48% 50%, transparent 50% 58%, currentColor 58% 60%, transparent 60%);
  color: rgba(23, 100, 255, 0.52);
}

.sparkline-cyan {
  color: rgba(24, 195, 216, 0.6);
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(18, 53, 90, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

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

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
}

.cta-copy h2,
.demo-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.16;
  color: var(--navy);
}

.cta-copy p {
  margin: 0;
  max-width: 720px;
  line-height: 1.8;
}

.demo-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 70px;
}

.demo-card {
  padding: 28px;
  border-radius: 34px;
}

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

.form-grid label {
  display: grid;
  gap: 10px;
}

.form-grid span {
  font-weight: 700;
  color: var(--navy);
}

.form-grid input {
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 53, 90, 0.14);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.form-grid input:focus {
  border-color: rgba(23, 100, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(23, 100, 255, 0.08);
}

.choice-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 110px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(18, 53, 90, 0.14);
  background: #ffffff;
  color: var(--text-soft);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.choice-pill input:checked + span {
  border-color: rgba(23, 100, 255, 0.34);
  background: rgba(23, 100, 255, 0.08);
  color: var(--blue);
}

.full-row {
  grid-column: 1 / -1;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.flash {
  padding: 16px 18px;
  margin-bottom: 18px;
  border-radius: 16px;
  line-height: 1.6;
}

.flash.hidden {
  display: none;
}

.flash.info {
  background: rgba(24, 195, 216, 0.12);
  color: #0d6172;
}

.flash.danger {
  background: rgba(204, 62, 62, 0.1);
  color: #8d1f1f;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: end;
  padding: 30px 0 48px;
  border-top: 1px solid rgba(18, 53, 90, 0.08);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.footer-brand p {
  margin: 0;
  max-width: 420px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-legal span {
  color: var(--text-soft);
}

@media (max-width: 1180px) {
  .hero-section,
  .score-section,
  .demo-section,
  .testimonial-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 120px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .device-phone {
    right: 24px;
    bottom: 0;
  }

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

  .score-visual {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    top: auto;
  }

  .hero-section {
    gap: 30px;
    padding-top: 30px;
  }

  .hero-capabilities,
  .stats-section,
  .faq-grid,
  .form-grid,
  .metric-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .device-screen {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .device-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 280px);
    margin: 18px auto 0;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-block,
  .testimonial-section,
  .score-section,
  .cta-section,
  .demo-section {
    padding-top: 76px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-section,
  .stats-section,
  .section-block,
  .testimonial-section,
  .score-section,
  .cta-section,
  .demo-section,
  .site-footer {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    gap: 14px;
    padding-top: 18px;
  }

  .site-header::before {
    inset: 4px -4px;
  }

  .brand-logo {
    width: 170px;
  }

  .site-nav {
    gap: 16px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .nav-cta,
  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-section {
    gap: 24px;
    padding: 24px 0 28px;
  }

  .hero-copy h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.7rem, 14vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .feature-card,
  .step-card,
  .faq-card,
  .stat-card,
  .demo-card,
  .score-main-card,
  .mini-chart-card,
  .testimonial-copy,
  .testimonial-visual,
  .cta-section {
    border-radius: 24px;
  }

  .testimonial-copy p {
    padding-left: 0;
    font-size: 1.14rem;
  }

  .testimonial-author {
    padding-left: 0;
  }

  .quote-mark {
    position: static;
    display: block;
    font-size: 3.4rem;
    margin-bottom: -8px;
  }

  .score-ring.large {
    --ring-size: 200px;
  }

  .demo-card {
    padding: 22px;
  }

  .stats-section {
    gap: 14px;
    margin-top: 8px;
  }

  .stat-card,
  .feature-card,
  .step-card,
  .faq-card,
  .capability-card {
    padding: 22px 20px;
  }

  .command-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    margin-bottom: 16px;
  }

  .command-icon svg {
    width: 46px;
    height: 46px;
  }

  .feature-icon-premium {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .feature-icon-premium svg {
    width: 26px;
    height: 26px;
  }

  .section-block,
  .testimonial-section,
  .score-section,
  .cta-section,
  .demo-section {
    padding-top: 64px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .score-copy h2,
  .cta-copy h2,
  .demo-copy h2 {
    line-height: 1.14;
    text-wrap: balance;
  }
}

/* Optyrio icon cleanup: simple, readable SaaS pictograms. */
.optyrio-simple-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #1769ff;
  background: linear-gradient(180deg, rgba(232, 244, 255, 0.98), rgba(241, 249, 255, 0.96));
  border: 1px solid rgba(23, 105, 255, 0.08);
  box-shadow: 0 16px 34px rgba(15, 71, 130, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  flex: 0 0 auto;
}

.optyrio-simple-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 720px) {
  .optyrio-simple-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    margin-bottom: 22px;
  }

  .optyrio-simple-icon svg {
    width: 28px;
    height: 28px;
  }
}

