@font-face {
  font-family: "Silka";
  src: url("fonts/SilkaRegular.eot");
  src: url("fonts/SilkaRegular.eot") format("embedded-opentype"),
       url("fonts/SilkaRegular.woff2") format("woff2"),
       url("fonts/SilkaRegular.woff") format("woff"),
       url("fonts/SilkaRegular.ttf") format("truetype"),
       url("fonts/SilkaRegular.svg") format("svg");
  font-weight: 400;
}

@font-face {
  font-family: "Silka";
  src: url("fonts/SilkaMedium.eot");
  src: url("fonts/SilkaMedium.eot") format("embedded-opentype"),
       url("fonts/SilkaMedium.woff2") format("woff2"),
       url("fonts/SilkaMedium.woff") format("woff"),
       url("fonts/SilkaMedium.ttf") format("truetype"),
       url("fonts/SilkaMedium.svg") format("svg");
  font-weight: 500;
}

@font-face {
  font-family: "Silka";
  src: url("fonts/SilkaSemiBold.eot");
  src: url("fonts/SilkaSemiBold.eot") format("embedded-opentype"),
       url("fonts/SilkaSemiBold.woff2") format("woff2"),
       url("fonts/SilkaSemiBold.woff") format("woff"),
       url("fonts/SilkaSemiBold.ttf") format("truetype"),
       url("fonts/SilkaSemiBold.svg") format("svg");
  font-weight: 600;
}

@font-face {
  font-family: "Silka";
  src: url("fonts/SilkaMonoBold.eot");
  src: url("fonts/SilkaMonoBold.eot") format("embedded-opentype"),
       url("fonts/SilkaMonoBold.woff2") format("woff2"),
       url("fonts/SilkaMonoBold.woff") format("woff"),
       url("fonts/SilkaMonoBold.ttf") format("truetype"),
       url("fonts/SilkaMonoBold.svg") format("svg");
  font-weight: 700;
}


:root {
  --font: "Silka", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  
  --fw-mono-bold: 700;

  
  --black:     #0e0e11;
  --white:     #ffffff;
  --green:     #009472;
  --medical:   #2b19ff;
  --partner:   #00cfe2;
  --bg-light:  #f6f6f6;
  --bg-dark:   #0e0e11;
  --dark:      #0e0e11;
  --chat-dark: #2D2D2D;

  
  --px:          40px;
  --px-mobile:   40px;
  --px-desktop:  220px;
  --gap-mobile:  48px;
  --gap-desktop: 80px;

  --glass-strong-bg:   rgba(255, 255, 255, 0.6);
  --glass-strong-blur: blur(12px);
  --glass-dark-bg:     rgba(255, 255, 255, 0.1);
  --glass-dark-border: rgba(255, 255, 255, 0.2);

  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  30px;
  --radius-full: 50px;

  --hero-cta-width: 400px;
}

@media (min-width: 1024px) {
  :root {
    --px: max(80px, calc((100vw - 1200px) / 2));
    --px-desktop: max(80px, calc((100vw - 1200px) / 2));
  }
}


*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
  background: #fff;
  min-width: 302px;
  zoom: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, a, span,
button, input, textarea, select, label, li {
  font-family: var(--font);
}

:focus { outline: 0; }

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

a:hover, a:focus, a:active {
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}

button { cursor: pointer; }
figure { margin: 0; }
iframe { border: none; }


.w-h1    { font-weight: var(--fw-semibold); font-size: 28px; line-height: 1.2; }
.w-h2    { font-weight: var(--fw-semibold); font-size: 24px; }
.w-label { font-weight: var(--fw-semibold); font-size: 16px; color: var(--green); }
.w-body  { font-weight: var(--fw-medium); font-size: 16px; line-height: 1.6; }
.w-small { font-weight: var(--fw-medium); font-size: 14px; }

@media (min-width: 1024px) {
  .w-h1    { font-size: 48px; }
  .w-h2    { font-size: 40px; }
  .w-label { font-size: 20px; }
  .w-body  { font-size: 18px; }
  .w-small { font-size: 16px; }
}


.w-section {
  width: 100%;
  padding: 64px var(--px-mobile);
  display: flex;
  flex-direction: column;
  gap: var(--gap-mobile);
}

@media (min-width: 1024px) {
  .w-section { padding: 120px var(--px-desktop); gap: var(--gap-desktop); }
}

.w-section-dark  { background: var(--bg-dark); color: var(--white); }
.w-section-green { background: var(--green); color: var(--white); }
.w-section-light { background: var(--bg-light); }

.w-section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: var(--gap-mobile);
}

@media (min-width: 1024px) {
  .w-section-header { margin-bottom: var(--gap-desktop); }
  .w-section-header.w-section-header-with-btn {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.w-section-header-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .w-section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.w-section-label {
  font-weight: var(--fw-semibold);
  font-size: 16px;
  color: var(--green);
  margin: 0;
}

.w-section-dark .w-section-label { color: var(--green); }

@media (min-width: 1024px) {
  .w-section-label { font-size: 20px; }
}

.w-section-title {
  font-weight: var(--fw-semibold);
  font-size: 24px;
  color: var(--black);
  margin: 0;
}

.w-section-dark .w-section-title { color: var(--white); }

@media (min-width: 1024px) {
  .w-section-title { font-size: 40px; }
}

.w-section-btn {
  height: 44px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: var(--fw-medium);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.w-section-btn-dark {
  background: rgba(14, 14, 17, 0.05);
  border: 1px solid rgba(14, 14, 17, 0.2);
  color: var(--black);
}

.w-section-btn-dark:hover { background: rgba(14, 14, 17, 0.1); color: var(--black); }

.w-section-btn-light {
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  color: var(--white);
  backdrop-filter: var(--glass-strong-blur);
  -webkit-backdrop-filter: var(--glass-strong-blur);
}

.w-section-btn-light:hover { background: rgba(255, 255, 255, 0.2); color: var(--white); }

.w-big-title {
  text-align: center;
  font-weight: var(--fw-semibold);
  font-size: 18px;
  color: var(--white);
  line-height: normal;
  max-width: 100%;
  margin: 0;
}

@media (min-width: 1024px) {
  .w-big-title { font-size: 32px; }
}


.w-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 16vh, 160px) var(--px-mobile) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.w-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
  pointer-events: none;
}

@media (min-width: 1024px) {
  .w-hero { padding: clamp(100px, 15vh, 220px) var(--px-desktop) 0; }
}

.w-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  display: none;
}

.w-hero-video-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  display: block;
}

@media (min-width: 1024px) {
  .w-hero-video        { display: block; }
  .w-hero-video-mobile { display: none; }
}

.w-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-mobile);
  align-items: flex-start;
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  .w-hero-content {
    flex-direction: row;
    gap: var(--gap-desktop);
    padding-bottom: 0;
    flex: 1;
    align-items: stretch;
  }
}

.w-hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .w-hero-left { width: 50%; gap: 40px; }
}

.w-hero-right { display: none; }

@media (min-width: 1024px) {
  .w-hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 50%;
  }
}

.w-hero-title {
  font-weight: var(--fw-semibold);
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

@media (min-width: 1024px) {
  .w-hero-title { font-size: 48px; }
}

.w-hero-desc {
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.w-hero-desc p            { margin: 0 0 16px; }
.w-hero-desc p:last-child { margin-bottom: 0; }

@media (min-width: 1024px) {
  .w-hero-desc { font-size: 18px; }
}

.w-hero-phone-img {
  width: 100%;
  max-width: 440px;
  max-height: clamp(300px, 55vh, 550px);
  height: auto;
  object-fit: contain;
  object-position: top;
  pointer-events: none;
}

.w-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.w-hero-cta {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-strong-blur);
  -webkit-backdrop-filter: var(--glass-strong-blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  padding: 16px 24px;
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--hero-cta-width);
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s;
}

.w-hero-cta:hover  { background: rgba(255, 255, 255, 0.25); transform: scale(1.02); }
.w-hero-cta:active { transform: scale(0.98); }

@media (min-width: 1024px) {
  .w-hero-cta { padding: 18px 24px; font-size: 18px; }
}

.w-hero-phone-mobile {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  pointer-events: none;
}

.w-hero-phone-mobile img { width: 100%; height: auto; object-fit: contain; }

@media (min-width: 1024px) {
  .w-hero-phone-mobile { display: none; }
}


.w-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .w-feature-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.w-feature-card {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .w-feature-card { min-height: 420px; }
}

.w-feature-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

.w-feature-card:hover .w-feature-card-bg { transform: scale(1.05); }

.w-feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.w-feature-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 24px;
}

.w-feature-card-content > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1024px) {
  .w-feature-card-content { padding: 32px; }
}

.w-feature-card-icon {
  width: 36px;
  height: 36px;
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-strong-blur);
  -webkit-backdrop-filter: var(--glass-strong-blur);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .w-feature-card-icon { width: 40px; height: 40px; }
}

.w-feature-card-title {
  font-weight: var(--fw-semibold);
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .w-feature-card-title { font-size: 24px; }
}

.w-feature-card-desc {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--radius-xl);
  padding: 16px;
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .w-feature-card-desc { padding: 20px; font-size: 16px; }
}

.w-idea-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .w-idea-grid { flex-direction: row; gap: 40px; }
}

.w-idea-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .w-idea-card { padding: 48px; }
}

.w-idea-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

.w-idea-card:hover .w-idea-card-bg { transform: scale(1.05); }

.w-idea-card-green-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 148, 114, 0.85);
}

.w-idea-card-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.w-idea-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-strong-blur);
  -webkit-backdrop-filter: var(--glass-strong-blur);
  border: 1px solid var(--glass-dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.w-idea-card-icon img {
  display: block;
}

@media (min-width: 1024px) {
  .w-idea-card-icon { width: 48px; height: 48px; }
}

.w-idea-card-label {
  font-weight: var(--fw-semibold);
  font-size: 24px;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

@media (min-width: 1024px) {
  .w-idea-card-label { font-size: 40px; }
}

.w-idea-card-text {
  position: relative;
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: var(--white);
  line-height: normal;
}

@media (min-width: 1024px) {
  .w-idea-card-text { font-size: 18px; }
}

.w-product-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

@media (min-width: 1024px) {
  .w-product-grid { flex-direction: row; }
}

.w-product-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  flex: 1;
}

@media (min-width: 1024px) {
  .w-product-card { height: 500px; }
}

.w-product-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.w-product-card:hover .w-product-card-bg { transform: scale(1.05); }

.w-product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.w-product-card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

@media (min-width: 1024px) {
  .w-product-card-content { padding: 32px; }
}

.w-product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.w-product-card-title {
  font-weight: var(--fw-semibold);
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .w-product-card-title { font-size: 28px; }
}

.w-product-card-link {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .w-product-card-link { width: 48px; height: 48px; }
}

.w-product-card-link:hover          { background: var(--green); }
.w-product-card-link img            { transition: filter 0.3s; }
.w-product-card-link:hover img      { filter: brightness(0) invert(1); }

.w-product-card-desc {
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .w-product-card-desc { font-size: 16px; }
}


.w-community {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.w-community-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px var(--px-mobile) 0;
}

@media (min-width: 1024px) {
  .w-community-mobile { display: none; }
}

.w-community-desktop { display: none; }

@media (min-width: 1024px) {
  .w-community-desktop {
    display: flex;
    flex-direction: column;
    gap: var(--gap-desktop);
    padding: 120px var(--px-desktop);
  }
}

.w-community-text {
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: var(--white);
  line-height: normal;
}

.w-community-text-desktop {
  font-weight: var(--fw-medium);
  font-size: 20px;
  color: var(--white);
  line-height: normal;
  width: 540px;
  position: relative;
  z-index: 10;
}

.w-community-social { display: flex; gap: 16px; }

.w-social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-dark-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  transition: opacity 0.3s;
}

.w-social-btn:hover { opacity: 0.8; }

@media (min-width: 1024px) {
  .w-social-btn { width: 48px; height: 48px; }
}

.w-community-image-mobile {
  width: 100%;
  aspect-ratio: 851 / 622;
  position: relative;
}

.w-community-image-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.w-community-image-desktop {
  position: absolute;
  height: 580px;
  right: var(--px-desktop);
  bottom: 0;
  width: 795px;
  max-width: 65%;
}

.w-community-image-desktop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.w-app-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  padding: 64px var(--px-mobile);
  height: 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .w-app-section { padding: 120px var(--px-desktop); height: auto; gap: 100px; }
}

.w-app-title {
  font-weight: var(--fw-semibold);
  font-size: 24px;
  color: var(--black);
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .w-app-title { font-size: 40px; }
}

.w-app-desc {
  position: relative;
  z-index: 10;
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: var(--black);
  max-width: 461px;
}

.w-app-desc p { margin: 0; }

@media (min-width: 1024px) {
  .w-app-desc { font-size: 24px; }
}

.w-app-desc-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .w-app-desc-box { gap: 40px; max-width: 461px; }
}

.w-app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.w-app-buttons a,
.w-app-buttons img {
  height: 44px;
  width: 149px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.w-app-buttons a:hover,
.w-app-buttons img:hover { opacity: 0.8; }

.w-app-phone {
  position: absolute;
  z-index: 0;
  height: 414px;
  left: 50%;
  top: 308px;
  transform: translateX(-50%);
  width: 234px;
}

.w-app-phone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .w-app-phone {
    height: 679px;
    right: var(--px-desktop);
    top: 50px;
    width: 384px;
    left: auto;
    transform: none;
  }
}

.w-app-bg-mobile {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.w-app-bg-mobile img {
  position: absolute;
  height: 100%;
  left: -381.73%;
  max-width: none;
  top: 0;
  width: 579.19%;
}

@media (min-width: 1024px) {
  .w-app-bg-mobile { display: none; }
}

.w-app-bg-desktop { display: none; }

@media (min-width: 1024px) {
  .w-app-bg-desktop {
    display: block;
    position: absolute;
    height: 566px;
    left: 50%;
    top: -25px;
    width: 845px;
    pointer-events: none;
  }
  .w-app-bg-desktop svg { display: block; width: 100%; height: 100%; }
}


.w-collab-hero {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  padding: clamp(80px, 12vh, 140px) var(--px-mobile) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .w-collab-hero { min-height: 70vh; padding: clamp(100px, 15vh, 220px) var(--px-desktop) 140px; }
}

.w-page-collaboration .w-hero { padding-bottom: 64px; }

.w-page-collaboration .w-hero-content {
  gap: 40px;
  align-items: flex-start;
}

.w-page-collaboration .w-hero-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.w-page-collaboration .w-hero-desc p { margin: 0; }

@media (min-width: 1024px) {
  .w-page-collaboration .w-hero         { padding: clamp(100px, 15vh, 220px) var(--px-desktop) 120px; }
  .w-page-collaboration .w-hero-content { gap: var(--gap-desktop); }
  .w-page-collaboration .w-hero-left    { flex: 1; min-width: 0; width: auto; margin-bottom: 0; }
}

@media (min-width: 1280px) {
  .w-page-collaboration .w-hero-content { gap: 140px; }
}

.w-contact-card {
  background: var(--glass-strong-bg);
  backdrop-filter: var(--glass-strong-blur);
  -webkit-backdrop-filter: var(--glass-strong-blur);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-2xl);
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .w-contact-card { padding: 40px; width: 500px; }
}

.w-contact-card-title {
  font-weight: var(--fw-semibold);
  font-size: 18px;
  color: var(--black);
  margin: 0;
}

@media (min-width: 1024px) {
  .w-contact-card-title { font-size: 24px; }
}

.w-contact-card input,
.w-contact-card textarea,
.w-contact-card select {
  width: 100%;
  padding: 8px 12px;
  background: rgba(96, 96, 102, 0.1);
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: #606066;
  border-radius: var(--radius-md);
  border: 1px solid rgba(96, 96, 102, 0.15);
  outline: none;
  transition: all 0.2s;
}

.w-contact-card input:focus,
.w-contact-card textarea:focus,
.w-contact-card select:focus {
  background: var(--white);
  color: var(--black);
  border-color: rgba(14, 14, 17, 0.2);
}

.w-contact-card-submit {
  background: var(--black);
  height: 44px;
  border-radius: var(--radius-full);
  width: 100%;
  color: var(--white);
  font-weight: var(--fw-medium);
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.w-contact-card-submit:hover { opacity: 0.9; }

.w-arrows-section {
  background: var(--bg-dark);
  padding: 64px var(--px-mobile) 48px;
}

@media (min-width: 1024px) {
  .w-arrows-section { padding: 120px var(--px-desktop) 80px; }
}

.w-arrows-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w-arrows-logo { position: relative; z-index: 10; }

.w-arrows-logo-svg { display: block; height: 64px; width: 200px; }

@media (min-width: 1024px) {
  .w-arrows-logo-svg { height: 77px; width: 240px; }
}

.w-arrows-btns { display: flex; gap: 12px; align-items: center; }

.w-arrow-btn {
  width: 44px;
  height: 44px;
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-strong-blur);
  -webkit-backdrop-filter: var(--glass-strong-blur);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.w-arrow-btn:hover { opacity: 0.8; }

@media (min-width: 1024px) {
  .w-arrow-btn { width: 56px; height: 56px; border-radius: var(--radius-lg); }
}

.w-collab-carousel-section {
  min-height: 400px;
  padding: 60px var(--px-mobile);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .w-collab-carousel-section { min-height: 450px; padding: 80px var(--px-mobile); gap: 60px; }
}

@media (min-width: 1024px) {
  .w-collab-carousel-section { min-height: 500px; padding: 120px var(--px-desktop) 80px; gap: var(--gap-desktop); }
}

.w-carousel-medical { background: var(--medical); }
.w-carousel-partner { background: var(--partner); }

.w-collab-carousel-text {
  font-weight: var(--fw-semibold);
  font-size: 20px;
  color: var(--white);
  text-align: center;
  line-height: normal;
}

@media (min-width: 768px)  { .w-collab-carousel-text { font-size: 24px; } }
@media (min-width: 1024px) { .w-collab-carousel-text { font-size: 28px; } }
@media (min-width: 1280px) { .w-collab-carousel-text { font-size: 32px; } }

.w-carousel-dots { display: flex; gap: 20px; align-items: center; }

.w-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.w-carousel-dots button.active       { opacity: 0.8; }
.w-carousel-dots button:not(.active) { opacity: 0.2; }

.w-collab-tabs {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px var(--px-mobile) 64px;
  background: var(--white);
}

@media (min-width: 768px)  { .w-collab-tabs { gap: 48px; padding: 60px var(--px-mobile) 80px; } }
@media (min-width: 1024px) { .w-collab-tabs { padding: 80px var(--px-desktop) 120px; } }

.w-collab-tabs-header  { display: flex; flex-direction: column; gap: 24px; }
.w-collab-tabs-buttons { display: flex; gap: 16px; }

@media (min-width: 768px) {
  .w-collab-tabs-buttons { gap: 24px; }
}

.w-collab-tab-btn {
  font-weight: var(--fw-semibold);
  font-size: 24px;
  padding-bottom: 12px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--black);
}

.w-collab-tab-btn:not(.active) { opacity: 0.2; }

@media (min-width: 768px)  { .w-collab-tab-btn { font-size: 28px; } }
@media (min-width: 1024px) { .w-collab-tab-btn { font-size: 36px; } }
@media (min-width: 1280px) { .w-collab-tab-btn { font-size: 40px; } }

.w-collab-tab-btn-medical.active { border-bottom: 2px solid var(--medical); }
.w-collab-tab-btn-partner.active { border-bottom: 2px solid var(--partner); }

.w-collab-section-label {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

@media (min-width: 768px)  { .w-collab-section-label { font-size: 18px; } }
@media (min-width: 1024px) { .w-collab-section-label { font-size: 20px; } }

.w-collab-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

@media (min-width: 1024px) {
  .w-collab-steps { flex-direction: row; }
}

.w-collab-step {
  flex: 1;
  border-radius: var(--radius-2xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .w-collab-step { padding: 48px; justify-content: space-between; }
}

.w-collab-step-medical { background: rgba(43, 25, 255, 0.1); }
.w-collab-step-partner { background: rgba(0, 207, 226, 0.1); }

.w-collab-step-number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

@media (min-width: 1024px) {
  .w-collab-step-number { width: 40px; height: 40px; font-size: 20px; }
}

.w-collab-step-number-medical {
  background: rgba(43, 25, 255, 0.1);
  border: 1px solid rgba(43, 25, 255, 0.2);
  color: var(--medical);
}

.w-collab-step-number-partner {
  background: rgba(0, 207, 226, 0.1);
  border: 1px solid rgba(0, 207, 226, 0.2);
  color: var(--partner);
}

.w-collab-step-text {
  font-weight: var(--fw-medium);
  font-size: 16px;
  color: var(--black);
  line-height: normal;
}

@media (min-width: 1024px) {
  .w-collab-step-text { font-size: 18px; }
}

/* TODO: remove display:none to re-enable hidden sections */
#aboutSection { display: none; }
.w-hero-ctas { display: none; }

.w-hero-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.w-hero-download-label {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: #fff;
}
.w-hero-store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.w-hero-store-buttons img { height: 52px; width: auto; }
.w-hero-qr { display: none; align-items: center; gap: 12px; }
.w-hero-qr img { height: 150px; width: 150px; border-radius: 14px; }

@media (min-width: 1024px) {
  .w-hero-download { align-items: flex-start; }
  .w-hero-download-label { font-size: 28px; }
  .w-hero-qr { display: flex; }
  .w-hero-store-buttons { display: none; }
}

/* TODO: remove display:none to re-enable chat widget */
.w-chat-container {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
}

@media (min-width: 1024px) {
  .w-chat-container { bottom: 24px; right: 24px; }
}

.w-chat-welcome {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 12px;
  animation: slideUp 0.3s ease-out;
}

@media (min-width: 1024px) {
  .w-chat-welcome { width: 280px; padding: 16px; }
}

.w-chat-welcome::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.w-chat-welcome p {
  font-size: 14px;
  line-height: 1.4;
  color: var(--chat-dark);
  padding-right: 24px;
  margin: 0;
}

@media (min-width: 1024px) {
  .w-chat-welcome p { font-size: 15px; }
}

.w-chat-welcome-arrow { display: none; }

.w-chat-welcome-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #9ca3af;
  transition: color 0.2s;
}

.w-chat-welcome-close:hover { color: #6b7280; }

.w-chat-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  position: relative;
}

.w-chat-btn:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); transform: scale(1.05); }

@media (min-width: 1024px) {
  .w-chat-btn { width: 56px; height: 56px; }
}

.w-chat-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #FF6B6B;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse 2s infinite;
}

@media (min-width: 1024px) {
  .w-chat-pulse { width: 12px; height: 12px; }
}

.w-chat-modal {
  position: fixed;
  bottom: 64px;
  right: 16px;
  z-index: 50;
  width: calc(100vw - 32px);
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  animation: slideUpChat 0.3s ease-out;
}

.w-chat-modal.open { display: block; }

@media (min-width: 1024px) {
  .w-chat-modal { bottom: 80px; right: 24px; max-width: 380px; }
}

.w-chat-header {
  background: var(--chat-dark);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w-chat-header h2 { font-size: 16px; font-weight: var(--fw-semibold); margin: 0; color: var(--white); }
.w-chat-header p  { font-size: 12px; color: rgba(255, 255, 255, 0.8); margin: 0; }

@media (min-width: 1024px) {
  .w-chat-header    { padding: 16px 20px; }
  .w-chat-header h2 { font-size: 18px; }
  .w-chat-header p  { font-size: 13px; }
}

.w-chat-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px;
  transition: color 0.2s;
}

.w-chat-close:hover { color: var(--white); }

.w-chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  background: #f9fafb;
}

@media (min-width: 1024px) {
  .w-chat-messages { height: 380px; }
}

.w-chat-message           { margin-bottom: 12px; display: flex; }
.w-chat-message-user      { justify-content: flex-end; }
.w-chat-message-assistant { justify-content: flex-start; }

.w-chat-bubble {
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .w-chat-bubble { font-size: 15px; }
}

.w-chat-bubble-user      { background: var(--chat-dark); color: var(--white); }
.w-chat-bubble-assistant { background: var(--white); color: var(--chat-dark); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.w-chat-bubble-text      { margin: 0; }
.w-chat-bubble-time      { font-size: 11px; margin: 4px 0 0; color: #9ca3af; }

.w-chat-input {
  padding: 16px;
  background: var(--white);
  border-top: 1px solid #f1f1f1;
  display: flex;
  gap: 8px;
}

.w-chat-input input {
  flex: 1;
  background: #f3f4f6;
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 14px;
  border: none;
  outline: none;
  transition: all 0.2s;
}

.w-chat-input input:focus { box-shadow: 0 0 0 2px var(--chat-dark); background: var(--white); }

.w-chat-input button {
  background: var(--chat-dark);
  color: var(--white);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.w-chat-input button:disabled { opacity: 0.5; }
.w-chat-input button:hover    { background: #1a1a1a; }

.w-contact-float-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(16px);
}

.w-contact-float-btn.visible       { opacity: 1; transform: translateY(0); }
.w-contact-float-btn:hover         { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); transform: scale(1.05); }
.w-contact-float-btn.visible:hover { transform: scale(1.05); }

@media (min-width: 1024px) {
  .w-contact-float-btn { bottom: 24px; right: 24px; width: 56px; height: 56px; }
}

.w-collab-page .w-contact-float-btn { bottom: 72px; }

@media (min-width: 1024px) {
  .w-collab-page .w-contact-float-btn { bottom: 88px; }
}

.w-contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.w-contact-modal-overlay.open { display: flex; }

.w-contact-modal-content {
  background: var(--white);
  border-radius: var(--radius-2xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .w-contact-modal-content { padding: 40px; }
}

.w-contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.w-contact-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.w-contact-modal-close:hover { opacity: 0.7; }


.form-fields { display: flex; flex-direction: column; gap: 16px; }

.form-label {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--dark);
  margin-bottom: 8px;
  white-space: nowrap;
}

.form-row { display: flex; gap: 16px; }
.form-row > div { flex: 1; min-width: 0; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 8px 12px;
  background: rgba(96, 96, 102, 0.1);
  font-family: inherit;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: #606066;
  border-radius: 12px;
  border: 1px solid rgba(96, 96, 102, 0.15);
  outline: none;
  transition: all 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #606066; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #fff;
  color: var(--dark);
  border-color: rgba(14, 14, 17, 0.2);
}

.form-input    { height: 40px; }
.form-textarea { height: 122px; resize: none; }

.form-select-wrap { position: relative; }
.form-select      { height: 40px; appearance: none; cursor: pointer; }

.form-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-submit {
  background: var(--dark);
  color: #fff;
  height: 44px;
  border-radius: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.form-submit:hover { opacity: 0.9; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-status {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
}
.form-status:empty { display: none; }
.form-status--error { color: #d32f2f; }
.form-status--success { color: #2e7d32; }

.cf-turnstile { margin-top: 16px; }
.cf-turnstile + .form-status + .form-submit,
.cf-turnstile + .form-submit { margin-top: 16px; }
.contact-box .form-textarea { height: 80px; }

.contact-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  outline: none;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}

.contact-float.visible { opacity: 1; pointer-events: all; }
.contact-float:hover   { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
.contact-float svg     { stroke: #2d2d2d; fill: none; }

@media (min-width: 1024px) {
  .contact-float { bottom: 24px; right: 24px; width: 56px; height: 56px; }
}

.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.contact-overlay.open { display: flex; }

.contact-box {
  background: #fff;
  border-radius: 30px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .contact-box { padding: 40px; }
}

.contact-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.contact-box-header h2 { font-size: 18px; font-weight: var(--fw-semibold); }

@media (min-width: 1024px) {
  .contact-box-header h2 { font-size: 24px; }
}

.contact-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.contact-close:hover { opacity: 0.7; }


.w-footer,
footer.w-footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 64px var(--px-mobile);
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 14px;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .w-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .w-footer-logo-col { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .w-footer,
  footer.w-footer {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 80px var(--px-desktop);
    font-size: 16px;
  }
  .w-footer-logo-col { width: 100px; flex: none; }
  .w-footer-col { flex: 1; min-width: 0; }
}

.w-footer-logo {
  width: 60px;
  height: 40px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .w-footer-logo { width: 89px; height: 60px; }
}

.w-footer-logo-col { width: 100%; }

@media (min-width: 1024px) {
  .w-footer-logo-col { width: 140px; flex: none; }
}

.w-footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .w-footer-col { flex: 1; }
}

.w-footer-col a {
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--white);
  transition: opacity 0.3s;
}

.w-footer-col a:hover { opacity: 0.7; }

@media (min-width: 1024px) {
  .w-footer-col a { font-size: 16px; }
}

.w-footer-col p {
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--white);
  margin: 0;
}

@media (min-width: 1024px) {
  .w-footer-col p { font-size: 16px; }
}

.w-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .w-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .w-footer-grid { display: flex; flex-direction: row; gap: 24px; flex: 1; }
}

.w-footer-social { height: 20px; display: flex; gap: 16px; }
.w-footer-social a { display: flex; align-items: center; }
.w-footer-social img { width: 20px; height: 20px; filter: none; }

@media (min-width: 1024px) {
  .w-footer-social { height: 24px; }
  .w-footer-social img { width: 24px; height: 24px; }
}

.w-footer-info {
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--white);
}

@media (min-width: 1024px) {
  .w-footer-info { font-size: 16px; }
}

.w-footer-divider { border-bottom: 1px solid var(--white); padding-bottom: 16px; }


@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpChat {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

.w-slide-viewport { overflow: hidden; width: 100%; }

.w-slide-track {
  display: flex;
  transition: transform 500ms ease;
  width: 200%;
}

.w-slide-track > *          { width: 50%; flex-shrink: 0; }
.w-slide-track.slide-partner { transform: translateX(-50%); }


.w-hidden       { display: none; }
.w-block        { display: block; }
.w-flex         { display: flex; }
.w-desktop-only { display: none; }
.w-mobile-only  { display: block; }

@media (min-width: 1024px) {
  .w-desktop-only       { display: block; }
  .w-desktop-only.w-flex { display: flex; }
  .w-mobile-only        { display: none; }
}

.w-page-collaboration .w-nav-hamburger { display: flex; }

@media (min-width: 1024px) {
  .w-page-collaboration .w-nav-hamburger { display: none; }
  .w-page-collaboration .w-nav-expanded  { display: none !important; }
}

.w-page-collaboration .w-nav-link-home { display: none !important; }

.w-page-community header,
.w-page-collaboration header { display: none; }

.w-page-community .x-content-box-1,
.w-page-collaboration .x-content-box-1 { display: none; }


.container {
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}

@media (min-width: 1199px) {
  .container {
    width: 1220px;
    max-width: 100%;
    padding: 0 30px;
  }
}

body h1, body h2, body h3, body h4,
.h1, .h2, .h3, .h4 {
  margin: 0;
  margin-top: 0;
}

body p {
  margin-bottom: 25px;
  margin-top: 0;
}

body h2 {
  font-size: 20px;
  margin-bottom: 25px;
  margin-top: 0;
}

body ul {
  margin-bottom: 25px;
  padding-left: 16px;
  margin-top: 0;
}

body ol {
  padding-left: 20px;
  margin-bottom: 25px;
  margin-top: 0;
}

.logo, img, a, button {
  transition: 0.15s linear;
}

.bx-wrapper {
  z-index: 1;
  box-shadow: none;
  border: 0;
  margin: 0;
  background: transparent;
}

body .bx-wrapper {
  padding: 0;
  border: none;
}

body .bx-wrapper .bx-controls-auto,
body .bx-wrapper .bx-pager {
  position: relative;
  bottom: auto;
  width: auto;
}

.bx-caption { display: none; }

.hamburger,
.hamburger:focus,
.hamburger:active {
  outline: none !important;
  border: none !important;
  box-shadow: none;
}

body .hamburger-inner,
body .hamburger-inner::before,
body .hamburger-inner::after {
  height: 2px;
}

.chosen-container-single .chosen-single div b {
  background: none;
}

.text p:last-child { margin-bottom: 0; }

.text h3 {
  font-weight: var(--fw-semibold);
  font-family: "Silka";
  font-size: 24px;
  margin-bottom: 20px;
}


body header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 93px 0;
  transition: 0.15s linear;
  z-index: 10;
}

.logo img { display: block; }

.header-rsp {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 101;
  width: 100%;
  padding: 10px 0;
  height: 70px;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  display: none;
}

.header-rsp .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  position: absolute;
  top: 8px;
  right: 0;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background: #000;
}

.data-rsp {
  position: absolute;
  top: 27px;
  right: 70px;
}

.data-rsp a { font-size: 11px; }

.menu-rsp {
  width: 100%;
  position: fixed;
  padding-top: 80px;
  top: 0;
  left: 0;
  z-index: 100;
  float: right;
  height: 100%;
  display: none;
}

.menu-rsp nav {
  float: left;
  width: 100%;
  height: 100%;
  background: #09153A;
  overflow: auto;
}


.x-padding-1 { padding: 90px 0; }
.x-mt-1      { margin-top: 90px; }
.x-mb-1      { margin-bottom: 90px; }

.x-content-box-1 {
  background: url("../img/03.png") center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.x-content-box-1 .image-box-mobile { display: none; }
.x-content-box-1 .container { position: relative; z-index: 5; }

.x-content-box-1 .container .image-box {
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 458px;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}

.body-active .x-content-box-1 .image-box { transform: scale(1.2); }

.x-content-box-1 .x-button-box { display: flex; }
.x-content-box-1 .x-button-box a { margin-right: 30px; }
.x-content-box-1 .x-button-box a:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.x-content-box-1 .description {
  height: 700px;
  display: flex;
  width: 660px;
  max-width: 100%;
  padding-top: 50px;
  flex-direction: column;
  justify-content: center;
}

.x-content-box-2 { background: #000; color: #fff; }

.x-title-small {
  color: #009472;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  margin-bottom: 20px;
  line-height: 100%;
}

.x-title { margin-bottom: 60px; }
.x-title h2 { margin: 0; font-weight: var(--fw-semibold); font-size: 48px; }

.x-boxes-1 { padding-top: 50px; }
.x-boxes-1 .row-box { display: flex; flex-wrap: wrap; margin: 0 -20px; justify-content: space-between; }
.x-boxes-1 .row-box .col-box { max-width: 250px; padding: 0 20px; }
.x-boxes-1 .row-box .col-box .x-box-1 { font-size: 20px; line-height: 150%; text-align: center; font-weight: var(--fw-semibold); }
.x-boxes-1 .row-box .col-box .x-box-1 figure { margin-bottom: 20px; }

.x-content-box-3 { background: #009472; color: #fff; text-align: center; }
.x-content-box-3 .txt { margin: 0 auto; width: 700px; max-width: 100%; font-size: 24px; font-weight: var(--fw-semibold); line-height: 150%; }

.x-content-box-4 .x-boxes-2 .row-box { display: flex; flex-wrap: wrap; margin: 0 -25px; }
.x-content-box-4 .x-boxes-2 .row-box .col-box { width: 33.3333%; padding: 0 25px; }
.x-content-box-4 .x-boxes-2 .row-box .col-box .x-box-2 figure { margin-bottom: 30px; }
.x-content-box-4 .x-boxes-2 .row-box .col-box .x-box-2 figure img { display: block; margin: 0 auto; border-radius: 10px; }
.x-content-box-4 .x-button-box { display: flex; justify-content: center; }

.x-btn-1 {
  padding: 0 20px;
  height: 44px;
  border-radius: 22px;
  background: #009472;
  color: #fff;
  font-weight: var(--fw-semibold);
  line-height: 45px;
  display: inline-block;
}

.x-btn-1:hover {
  transform: translateY(-5px);
  color: #fff;
  opacity: 0.9;
}

.x-content-box-5 { background: linear-gradient(to bottom, #000000 0%, #000000 70%, #013B2D 100%); }
.x-content-box-5 .x-title h2 { color: #fff; }
.x-content-box-5 .x-button-box { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }

.x-btn-1-1 { background: #FFFFFF; color: #000; }
.x-btn-1-1:hover { color: #000; }

.x-boxes-2a .row-box { display: flex; margin: 0 -15px; }
.x-boxes-2a .row-box .col-box { padding: 0 15px; width: 33.3333%; }
.x-boxes-2a .row-box .col-box .x-box-2a {
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #009472;
  color: #fff;
  border-radius: 10px;
}

.x-content-box-6 .x-button-box { display: flex; justify-content: center; }

.x-boxes-3 .row-box { display: flex; margin: 0 -25px; }
.x-boxes-3 .row-box .col-box { padding: 0 25px; width: 33.33333%; }
.x-boxes-3 .row-box .col-box .x-box-3 {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #F6F6F6;
  border-radius: 10px;
}
.x-boxes-3 .row-box .col-box .x-box-3 .info {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  background: #000;
  border-radius: 10px;
  height: 34px;
  line-height: 36px;
  padding: 0 10px;
  font-weight: bold;
  color: #fff;
}
.x-boxes-3 .row-box .col-box .x-box-3 .description { padding: 25px 30px; }
.x-boxes-3 .row-box .col-box .x-box-3 .description p { margin: 0; }
.x-boxes-3 .row-box .col-box .x-box-3 .description h3 {
  font-weight: var(--fw-semibold);
  color: #009472;
  font-size: 24px;
  margin-bottom: 10px;
}

.x-content-box-7 {
  background: #000;
  position: relative;
  color: #fff;
  min-height: 621px;
}
.x-content-box-7 figure { position: absolute; bottom: 0; right: 50%; margin-right: -700px; }
.x-content-box-7 .description { width: 460px; max-width: 100%; }

.x-content-box-8 .x-button-box { display: flex; justify-content: center; }

.x-boxes-3a .row-box { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.x-boxes-3a .row-box .col-box { padding: 0 15px; width: 33.33333%; }
.x-boxes-3a .row-box .col-box .x-box-3a {
  padding: 30px;
  border-radius: 10px;
  background: #F6F6F6;
  height: 100%;
}
.x-boxes-3a .row-box .col-box .x-box-3a .icon { margin-bottom: 20px; }

.x-content-box-9 {
  min-height: 490px;
  background: #F6F6F6 url("../img/02.png") center no-repeat;
}
.x-content-box-9 .description { width: 475px; max-width: 100%; }
.x-content-box-9 .description .text { margin-bottom: 40px; }
.x-content-box-9 .description .x-button-box { display: flex; }
.x-content-box-9 .description .x-button-box a { margin-right: 30px; }
.x-content-box-9 .description .x-button-box a:hover {
  opacity: 0.9;
  transform: translateY(-5px);
}

.x-button-box-mobile { display: none; }
.x-button-box-center { display: flex; justify-content: center; }

.video-bg,
.video-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-size: cover;
  z-index: 1;
}

.video-bg video,
.video-bg-1 video {
  margin: auto;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
  width: 1905px;
  height: auto;
}

.video-bg-1 { display: none; }

@media (max-width: 1190px) {
  body .video-bg video,
  body .video-bg-1 video {
    margin: auto;
    position: absolute;
    z-index: -1;
    transform: none;
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.banner-1 ul,
.banner ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.banner-1 img { display: inline-block; }


body.subpage { padding-top: 100px; }

.z-content-box-1-1 .row-box { display: flex; margin: 0 -15px; }
.z-content-box-1-1 .row-box .col-box { padding: 0 15px; width: 50%; }
.z-content-box-1-1 .row-box .col-box figure img { border-radius: 10px; }
.z-content-box-1-1 img { border-radius: 10px; }
.z-content-box-1-1 .cols3 .col-box { width: 33.3333%; }
.z-content-box-1-1 .cols4 .col-box { width: 25%; }

.z-content-box-1-2 .row-box { flex-wrap: wrap; margin-bottom: -50px; }
.z-content-box-1-2 .row-box .col-box { width: 50%; margin-bottom: 50px; }

.z-bg-1 { background: #F5F5F5; }


.autorzy-grid.row-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: 40px;
}

.autorzy-grid .autorzy-col {
  padding: 0 15px;
  width: 20%;
  margin-bottom: 30px;
}

.autorzy-grid .autorzy-card {
  display: block;
  text-align: center;
  color: inherit;
}

.autorzy-grid .autorzy-card:hover { color: #009472; }

.autorzy-grid .autorzy-card figure {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 10px;
}

.autorzy-grid .autorzy-card figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.autorzy-grid .autorzy-card:hover figure img { transform: scale(1.05); }

.autorzy-grid .autorzy-name {
  font-size: 15px;
  line-height: 1.4;
  font-weight: var(--fw-semibold);
}

@media (max-width: 991px) {
  .autorzy-grid .autorzy-col { width: 33.3333%; }
}

@media (max-width: 575px) {
  .autorzy-grid .autorzy-col { width: 50%; }
}

.dp-section { width: 100%; padding: 64px var(--px); }
@media (min-width: 1024px) { .dp-section { padding: 120px var(--px-desktop); } }
.dp-section--header { padding-top: 140px; }
@media (min-width: 1024px) { .dp-section--header { padding-top: 220px; } }

.dp-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: var(--fw-medium); color: var(--green); text-decoration: none; transition: opacity 0.2s;
}
@media (min-width: 1024px) { .dp-back { font-size: 16px; } }
.dp-back:hover { opacity: 0.7; }
.dp-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.dp-label { font-size: 16px; font-weight: var(--fw-semibold); color: var(--green); }
@media (min-width: 1024px) { .dp-label { font-size: 20px; } }

.dp-name { font-size: 28px; font-weight: var(--fw-semibold); color: var(--dark); line-height: 1.2; }
@media (min-width: 1024px) { .dp-name { font-size: 48px; } }

.dp-split { display: flex; flex-direction: column; gap: 48px; width: 100%; }
@media (min-width: 1024px) { .dp-split { flex-direction: row; gap: 80px; } }

.dp-photo { width: 100%; max-width: 400px; aspect-ratio: 1; border-radius: 30px; overflow: hidden; background: #f6f6f6; flex-shrink: 0; }
.dp-photo img { width: 100%; height: 100%; object-fit: cover; }

.dp-info { display: flex; flex-direction: column; gap: 32px; flex: 1; min-width: 0; }

.dp-info-block { display: flex; flex-direction: column; gap: 16px; }
.dp-info-label { font-size: 18px; font-weight: var(--fw-semibold); color: var(--green); }
@media (min-width: 1024px) { .dp-info-label { font-size: 20px; } }
.dp-info-text { font-size: 16px; font-weight: var(--fw-medium); line-height: 1.6; color: var(--dark); }
@media (min-width: 1024px) { .dp-info-text { font-size: 18px; } }

.dp-achieve-title { font-size: 24px; font-weight: var(--fw-semibold); color: var(--dark); }
@media (min-width: 1024px) { .dp-achieve-title { font-size: 40px; } }

.dp-bullet { display: flex; gap: 16px; align-items: flex-start; }
.dp-bullet::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  flex-shrink: 0; margin-top: 8px;
}
.dp-bullet-text { font-size: 16px; font-weight: var(--fw-medium); line-height: 1.6; color: var(--dark); flex: 1; }
@media (min-width: 1024px) { .dp-bullet-text { font-size: 18px; } }

.dp-collab-title { font-size: 24px; font-weight: var(--fw-semibold); color: #fff; }
@media (min-width: 1024px) { .dp-collab-title { font-size: 40px; } }
.dp-collab-text { font-size: 16px; font-weight: var(--fw-medium); line-height: 1.6; color: #fff; }
.dp-collab-text + .dp-collab-text { margin-top: 24px; }
@media (min-width: 1024px) { .dp-collab-text { font-size: 20px; } }

.dp-header-intro { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.dp-section--grey { background: #f6f6f6; }
.dp-section--dark { background: var(--dark); }
.dp-section-title { margin-bottom: 48px; }
.dp-bullet-list { display: flex; flex-direction: column; gap: 24px; }


footer {
  padding: 60px 0;
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: #fff;
  background: linear-gradient(to right, #000000 0%, #000000 5%, #009472 100%);
}

footer .mail { text-decoration: underline; }
footer .mail:hover { text-decoration: underline; }
footer a { color: #fff; }
footer a:hover { opacity: 0.85; color: #fff; }

footer .row-box {
  display: flex;
  margin: 0 -15px;
  justify-content: space-between;
}

footer .row-box .col-box { padding: 0 15px; }
footer .row-box .col-box ul { padding: 0; margin: 0; list-style: none; }

.social-box { display: flex; padding-top: 15px; }
.social-box a { margin-right: 20px; }
.social-box a:hover { transform: translateY(-2px); }


@media only screen and (max-width: 1199px) {
  body header { padding: 50px 0; }
  .x-title h2 { font-size: 40px; }
  .x-content-box-1 .description { height: 600px; }
  .x-content-box-1 .container .image-box { width: 400px; }
  .x-boxes-1 .row-box .col-box { width: 25%; max-width: 50%; }
  .x-content-box-4 .x-boxes-2 .row-box { margin: 0 -15px; }
  .x-content-box-4 .x-boxes-2 .row-box .col-box { padding: 0 15px; }
  .x-boxes-1 .row-box .col-box .x-box-1 { font-size: 16px; }
  .x-boxes-3 .row-box { margin: 0 -15px; }
  .x-boxes-3 .row-box .col-box { padding: 0 15px; }
  .x-content-box-7 figure { width: 55%; right: 0; margin-right: 0; }
}

@media only screen and (max-width: 992px) {
  body header { padding: 30px 0; }
  .logo img { width: 150px; }
  .x-content-box-1 .container .image-box { width: 300px; }
  .x-title h2 { font-size: 30px; }
  .x-content-box-1 .description { width: 410px; height: 420px; }
  .x-padding-1 { padding: 70px 0; }
  .x-boxes-1 { padding-top: 0; }
  .x-boxes-1 .row-box .col-box { width: 50%; margin-bottom: 30px; }
  .x-boxes-1 .row-box { margin-bottom: -30px; }
  .x-content-box-3 .txt { font-size: 20px; }
  .x-mt-1 { margin-top: 70px; }
  .x-mb-1 { margin-bottom: 70px; }
  .x-boxes-2a .row-box .col-box .x-box-2a { padding: 20px; }
  .x-boxes-2a .row-box .col-box { width: 50%; margin-bottom: 30px; }
  .x-boxes-2a .row-box { flex-wrap: wrap; margin-bottom: -30px; }
  .x-boxes-3 .row-box .col-box .x-box-3 .description { padding: 15px 20px; }
  .x-boxes-3 .row-box .col-box .x-box-3 .description h3 { font-size: 20px; }
  .x-boxes-3 .row-box .col-box .x-box-3 .info { margin: 10px; }
  .x-content-box-7 figure { width: 51%; }
  .x-content-box-7 { min-height: 1px; }
  .x-content-box-4 .x-boxes-2 .row-box,
  .x-boxes-3 .row-box,
  .x-boxes-3a .row-box { margin-bottom: -30px; flex-wrap: wrap; }
  .x-content-box-4 .x-boxes-2 .row-box .col-box,
  .x-boxes-3 .row-box .col-box,
  .x-boxes-3a .row-box .col-box { width: 50%; margin-bottom: 30px; }
  footer .row-box { flex-wrap: wrap; margin-bottom: -30px; }
  footer .row-box .col-box { margin-bottom: 30px; width: 33.3333%; }
  .x-content-box-9 { min-height: 379px; background-size: auto 100%; }
  .x-content-box-9 .x-title { width: 70%; }
}

@media only screen and (max-width: 767px) {
  .x-content-box-1 .description { width: 100%; }
  .z-content-box-1-1 .row-box { margin-bottom: 0; display: block; }
  .z-content-box-1-1 .row-box .col-box { width: 100%; margin-bottom: 28px; }
  .z-content-box-1-1 .row-box .col-box:last-child { margin-bottom: 0; }
  .x-title h2 br { display: none; }
  .x-content-box-1 { background: url("../img/03-1.png") center top no-repeat; }
  .x-content-box-1 .description { height: auto; }
  .x-content-box-1 .container .image-box { display: none; }
  .x-content-box-1 .x-button-box { display: none; }
  .x-content-box-1 .x-title { text-align: center; padding-top: 70px; margin-bottom: 0; }
  .x-content-box-1 .x-title h2 { font-size: 20px; line-height: 150%; }
  body header { padding-top: 48px; }
  body header .container { display: flex; justify-content: center; }
  .logo img { width: 180px; }
  .logo { margin-bottom: 24px; }
  .x-content-box-1 .image-box-mobile { margin: -40px 0 -175px 0; display: block; text-align: center; }
  .x-button-box-mobile { display: flex; padding: 30px 0; justify-content: center; }
  .x-button-box-mobile a { margin: 0 10px; }
  .x-padding-1 { padding: 50px 0; }
  .x-title h2 { font-size: 28px; }
  .x-title { margin-bottom: 40px; }
  .x-boxes-1 .row-box .col-box { width: 100%; max-width: 100%; }
  .x-box-1 { display: flex; text-align: left; align-items: center; }
  .x-boxes-1 .row-box .col-box .x-box-1 { text-align: left; }
  .x-boxes-1 .row-box .col-box .x-box-1 figure { width: 60px; flex-shrink: 0; margin-right: 20px; margin-bottom: 0; }
  .container { padding-left: 20px; padding-right: 20px; }
  .x-content-box-3 .txt { font-size: 16px; }
  .x-content-box-4 .x-boxes-2 .row-box { flex-wrap: nowrap; }
  .x-content-box-4 .x-boxes-2,
  .x-content-box-6 .x-boxes-3 { overflow: auto; margin-left: -20px; margin-right: -20px; padding-left: 20px; }
  .x-content-box-4 .x-boxes-2 .row-box,
  .x-content-box-6 .x-boxes-3 .row-box { width: 900px; margin-left: 0; margin-right: 0; margin-bottom: 0; }
  .x-content-box-4 .x-boxes-2 .row-box .col-box,
  .x-content-box-6 .x-boxes-3 .row-box .col-box { padding-right: 15px; padding-left: 0; margin: 0; width: 300px; }
  .x-content-box-4 .x-boxes-2 .row-box .col-box .x-box-2 figure img,
  .x-content-box-6 .x-boxes-3 .row-box .col-box .x-box-2 figure img { width: 100%; }
  .x-content-box-4 .x-button-box .x-btn-1,
  .x-content-box-5 .x-button-box .x-btn-1,
  .x-content-box-6 .x-button-box .x-btn-1,
  .x-content-box-7 .x-button-box .x-btn-1,
  .x-content-box-8 .x-button-box .x-btn-1 { width: 100%; }
  .x-btn-1 { text-align: center; }
  .x-mt-1 { margin-top: 50px; }
  .x-mb-1 { margin-bottom: 50px; }
  .x-boxes-2a .row-box .col-box { width: 100%; }
  .x-content-box-7 figure { display: none; }
  .x-content-box-8 .x-title { text-align: center; }
  .x-content-box-8 .x-title img { width: 180px; }
  .x-boxes-3a .row-box .col-box { width: 100%; }
  .x-content-box-9 .description { width: 100%; padding-bottom: 300px; }
  .x-content-box-9 { min-height: 490px; background: #F6F6F6 url(../img/02-1.png) center bottom no-repeat; }
  .x-content-box-9 .x-title { width: 100%; }
  .x-content-box-9 { min-height: 1px; }
  .x-content-box-9 .description .text { margin-bottom: 30px; margin-top: -15px; }
  footer .row-box { margin: 0; padding: 0 20px; }
  footer .row-box .col-box { width: 50%; margin: 0; padding: 40px 0; border-bottom: 1px solid #fff; }
  footer .row-box .col-box:nth-child(1) { align-items: center; display: flex; }
  footer .row-box .col-box:nth-child(1),
  footer .row-box .col-box:nth-child(3),
  footer .row-box .col-box:nth-child(5) { padding-right: 10px; }
  footer .row-box .col-box:nth-child(5),
  footer .row-box .col-box:nth-child(6) { border-bottom: none; }
  footer { padding: 0; background: linear-gradient(to bottom, #000000 0%, #000000 5%, #009472 100%); }
  .social-box { width: 200%; padding-top: 33px; margin-left: -100%; justify-content: center; }
  .social-box a:last-child { margin-right: 0; }
  .text h3 { font-size: 20px; }
  .video-bg-1 { display: block; }
  .video-bg { display: none; }
}


.w-nav p, .w-nav-expanded p,
.w-feature-card-desc, .w-idea-card-text, .w-product-card-desc,
.w-community-mobile p, .w-community-desktop p,
.w-app-section p, .w-footer p,
.w-chat-container p, .w-chat-modal p,
.w-contact-card p, .w-collab-tabs p,
.w-collab-carousel-section p, .w-collab-arrows-section p,
.w-section-header p, .w-big-title {
  margin-bottom: 0;
  margin-top: 0;
}

.w-section h2, .w-hero h1, .w-hero h2,
.w-footer h2, .w-chat-modal h2 {
  margin: 0;
}

.w-section ul, .w-footer ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.w-nav img, .w-footer img, .w-hero img,
.w-section img, .w-app-section img,
.w-community img {
  max-height: none;
}

.w-nav a, .w-nav-expanded a, .w-footer a,
.w-hero a, .w-section a {
  transition: opacity 0.2s;
}

.w-nav button, .w-footer button,
.w-chat-container button, .w-chat-modal button {
  transition: all 0.2s;
}


.section {
  padding: 64px var(--px); width: 100%;
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 1024px) { .section { padding: 120px var(--px); gap: 80px; } }

.section-label { font-size: 16px; font-weight: var(--fw-semibold); color: var(--green); }
@media (min-width: 1024px) { .section-label { font-size: 20px; } }

.section-title { font-size: 24px; font-weight: var(--fw-semibold); color: var(--dark); }
@media (min-width: 1024px) { .section-title { font-size: 40px; } }

.section-header { display: flex; flex-direction: column; gap: 24px; }

.section-header-row {
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 1024px) {
  .section-header-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.section-desc { font-size: 16px; font-weight: var(--fw-medium); line-height: normal; color: var(--dark); }
@media (min-width: 1024px) { .section-desc { font-size: 20px; } }

.section-desc-group { display: flex; flex-direction: column; gap: 16px; }

.bg-white { background: #fff; }
.bg-dark  { background: var(--dark); }
.bg-green { background: var(--green); }
.bg-grey  { background: #f6f6f6; }

.split {
  display: flex; flex-direction: column; gap: 48px; align-items: center; width: 100%;
}
@media (min-width: 1024px) { .split { flex-direction: row; gap: 120px; align-items: flex-start; } }

.split-text {
  display: flex; flex-direction: column; gap: 24px; width: 100%;
  font-size: 16px; font-weight: var(--fw-medium); line-height: normal; color: var(--dark);
}
@media (min-width: 1024px) { .split-text { flex: 1; min-width: 0; font-size: 20px; } }

.split-img-mobile {
  width: 100%; height: 238px; border-radius: 30px; overflow: hidden;
  position: relative; flex-shrink: 0;
}
.split-img-mobile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .split-img-mobile { display: none; } }

.split-img-desktop { display: none; }
@media (min-width: 1024px) {
  .split-img-desktop {
    display: block; width: 500px; height: 340px;
    border-radius: 30px; overflow: hidden; position: relative; flex-shrink: 0;
  }
  .split-img-desktop img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
}

.btn-light {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  height: 44px; padding: 0 24px; border-radius: 50px;
  font-size: 16px; font-weight: var(--fw-medium);
  display: inline-flex; align-items: center; white-space: nowrap;
  transition: background 0.2s;
}
.btn-light:hover { background: rgba(255,255,255,0.2); }

.phone-trio {
  display: none; gap: 20px; align-items: center; flex-shrink: 0;
}
@media (min-width: 1024px) { .phone-trio { display: flex; } }
.phone-trio img { width: 167px; height: 340px; object-fit: cover; flex-shrink: 0; }
.phone-trio img:last-child { width: 168px; }

.phone-carousel {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; overflow: hidden; position: relative; margin: 0 auto;
}
@media (min-width: 1024px) { .phone-carousel { display: none; } }

.phone-carousel-viewport { width: 200px; height: 400px; overflow: hidden; margin: 0 auto; }
.phone-carousel-track { display: flex; gap: 40px; transition: transform 0.5s ease; }
.phone-carousel-track img { width: 200px; height: 400px; flex-shrink: 0; object-fit: contain; }

.phone-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.phone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(14,14,17,0.2); border: none; padding: 0; cursor: pointer; transition: background 0.2s;
}
.phone-dot.active { background: var(--green); }


.carousel-wrap {
  position: relative; display: flex; align-items: center; justify-content: center; width: 100%;
}
.carousel-overflow { flex: 1; overflow: hidden; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.3s ease; }
@media (min-width: 1024px) { .carousel-track { gap: 40px; } }

.arrow-btn {
  position: absolute; z-index: 10;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,0,0,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity 0.2s;
}
.arrow-btn:hover { opacity: 0.8; }
@media (min-width: 1024px) { .arrow-btn { width: 56px; height: 56px; border-radius: 16px; } }
.arrow-left  { left:  0; transform: translateX(-50%); }
.arrow-right { right: 0; transform: translateX(50%);  }
.arrow-btn svg { stroke: #fff; fill: none; }


.blog-main {
  padding: 140px var(--px) 80px;
}
@media (min-width: 1024px) {
  .blog-main { padding: 220px var(--px) 120px; }
}

.blog-header {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) { .blog-header { margin-bottom: 80px; } }

.blog-label {
  font-size: 16px; font-weight: var(--fw-semibold); color: var(--green); line-height: 1;
}
@media (min-width: 1024px) { .blog-label { font-size: 20px; } }

.blog-title {
  font-size: 32px; font-weight: var(--fw-semibold); color: var(--dark); line-height: 1.15;
}
@media (min-width: 1024px) { .blog-title { font-size: 40px; } }

.blog-search-row {
  display: flex; justify-content: flex-end; margin-bottom: 40px;
}
.blog-search {
  display: flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 12px;
  border-radius: 12px; border: 1px solid rgba(96,96,102,0.15);
  background: rgba(96,96,102,0.1);
  width: 100%; transition: all 0.2s;
}
@media (min-width: 1024px) { .blog-search { width: 320px; } }
.blog-search.focused { background: #fff; border-color: var(--dark); }
.blog-search input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 16px; font-family: inherit; color: #606066;
  transition: color 0.2s;
}
.blog-search.focused input { color: var(--dark); }
.blog-search input::placeholder { color: #606066; }
.blog-search-icon {
  width: 24px; height: 24px; flex-shrink: 0; cursor: pointer;
  opacity: 0.5; transition: opacity 0.2s;
}
.blog-search.focused .blog-search-icon { opacity: 1; }

.blog-grid { display: flex; flex-direction: column; gap: 80px; }
.blog-row { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .blog-row { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex; flex-direction: column; gap: 24px;
  flex: 1; min-width: 0; height: 100%;
}
.blog-card-img {
  height: 260px; position: relative;
  border-radius: 30px; width: 100%; overflow: hidden; flex-shrink: 0;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-title {
  font-size: 24px; font-weight: var(--fw-semibold); color: var(--dark); line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 16px; font-weight: var(--fw-medium); color: var(--dark);
  line-height: 1.6; flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-excerpt.clamp-4  { -webkit-line-clamp: 4; }
.blog-card-excerpt.clamp-13 { -webkit-line-clamp: 13; }
.blog-card-btn {
  align-self: flex-start;
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px; border-radius: 50px;
  background: rgba(14,14,17,0.05); border: 1px solid rgba(14,14,17,0.2);
  color: var(--dark); font-size: 16px; font-weight: var(--fw-medium);
  transition: background 0.2s; text-decoration: none;
}
.blog-card-btn:hover { background: rgba(14,14,17,0.1); }

.blog-state {
  font-size: 16px; color: #606066; line-height: 1.6; padding: 40px 0;
}

.blog-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 80px;
}
.blog-page-btn {
  font-size: 20px; font-weight: var(--fw-medium); color: var(--dark);
  transition: opacity 0.2s; padding: 4px 8px;
}
.blog-page-btn:hover { opacity: 0.7; }
.blog-page-btn.inactive { color: rgba(96,96,102,0.6); }

.blog-autorzy {
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid rgba(14,14,17,0.1);
}
.blog-autorzy-title {
  font-size: 24px; font-weight: var(--fw-semibold); color: var(--dark);
  margin-bottom: 24px; line-height: 1.2;
}
.blog-autorzy-card {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 32px; border-radius: 20px;
  background: var(--bg-light); border: 1px solid rgba(14,14,17,0.08);
  text-decoration: none; color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.blog-autorzy-card:hover { background: #ececec; border-color: rgba(14,14,17,0.15); }
.blog-autorzy-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.blog-autorzy-info { flex: 1; min-width: 0; }
.blog-autorzy-name {
  font-size: 18px; font-weight: var(--fw-semibold); color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
}
.blog-autorzy-bio {
  font-size: 15px; line-height: 1.6; color: #606066;
}

.blog-article-wrap {
  display: none; padding: 140px var(--px) 80px;
}
@media (min-width: 1024px) { .blog-article-wrap { padding: 220px var(--px) 120px; } }

.blog-article { max-width: 760px; }
.blog-article-title {
  font-size: 32px; font-weight: 700; color: var(--dark);
  line-height: 1.2; margin-bottom: 12px;
}
@media (min-width: 1024px) { .blog-article-title { font-size: 40px; } }
.blog-article-meta { font-size: 14px; color: #888; margin-bottom: 32px; }
.blog-article-content { font-size: 16px; line-height: 1.7; color: var(--dark); }
.blog-article-content:not(.is-html) { white-space: pre-wrap; }
.blog-article-content.is-html ul,
.blog-article-content.is-html ol { margin: 12px 0; padding-left: 24px; }
.blog-article-content.is-html ul { list-style-type: disc; }
.blog-article-content.is-html ol { list-style-type: decimal; }
.blog-article-content.is-html li { margin: 4px 0; }
.blog-article-content.is-html p { margin-bottom: 12px; }
.blog-article-content.is-html strong { font-weight: 700; }
.blog-article-content.is-html em { font-style: italic; }
.blog-article-content.is-html u { text-decoration: underline; }
.blog-article-figure { margin: 32px 0; }
.blog-article-figure img { max-width: 100%; border-radius: 16px; }
.blog-article-caption { font-size: 14px; color: #666; margin-top: 8px; }
.blog-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 48px; height: 44px; padding: 0 24px; border-radius: 50px;
  background: var(--dark); color: #fff; font-size: 16px; font-weight: var(--fw-medium);
  transition: opacity 0.2s; cursor: pointer;
}
.blog-back-btn:hover { opacity: 0.8; }


.mission-section {
  background: var(--green); width: 100%;
  padding: 64px var(--px);
  display: flex; flex-direction: column; gap: 24px; align-items: center;
}
@media (min-width: 1024px) { .mission-section { padding: 120px var(--px); } }

.mission-label { font-size: 16px; font-weight: var(--fw-semibold); color: #fff; text-align: center; }
@media (min-width: 1024px) { .mission-label { font-size: 20px; } }

.mission-text {
  font-size: 18px; font-weight: var(--fw-semibold); line-height: normal; color: #fff;
  text-align: center; width: 100%;
}
@media (min-width: 1024px) { .mission-text { font-size: 32px; } }

.ps-grid {
  display: flex; flex-direction: column; gap: 48px; align-items: stretch; width: 100%;
}
@media (min-width: 1024px) { .ps-grid { flex-direction: row; gap: 80px; } }

.ps-problem {
  flex: 1; display: flex; flex-direction: column; gap: 24px; padding-top: 32px;
}
@media (min-width: 1024px) { .ps-problem { padding-top: 48px; } }

.ps-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.ps-icon,
.ps-icon-green {
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-icon {
  background: rgba(14, 14, 17, 0.05);
  border: 1px solid rgba(14, 14, 17, 0.1);
}

.ps-icon-green {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ps-icon img,
.ps-icon-green img,
.ps-icon svg,
.ps-icon-green svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.ps-icon-green svg { stroke: #fff; fill: none; }

@media (min-width: 1024px) {
  .ps-icon,
  .ps-icon-green { width: 48px; height: 48px; }

  .ps-icon img,
  .ps-icon-green img,
  .ps-icon svg,
  .ps-icon-green svg { width: 26px; height: 26px; }
}

.ps-title,
.ps-solution-title {
  margin: 0;
  font-size: 24px;
  font-weight: var(--fw-semibold);
  line-height: 1;
}

.ps-title { color: var(--dark); }
.ps-solution-title { color: #fff; }

@media (min-width: 1024px) {
  .ps-title,
  .ps-solution-title { font-size: 40px; }
}

.ps-text { font-size: 16px; font-weight: var(--fw-medium); line-height: normal; color: var(--dark); }
@media (min-width: 1024px) { .ps-text { font-size: 18px; } }

.ps-solution {
  flex: 1; position: relative; border-radius: 30px; overflow: hidden;
  padding: 32px; display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 1024px) { .ps-solution { padding: 48px; } }

.ps-solution > * { position: relative; }
.ps-solution-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ps-solution-overlay { position: absolute; inset: 0; background: rgba(0,148,114,0.85); }

.ps-solution-text { font-size: 16px; font-weight: var(--fw-medium); line-height: normal; color: #fff; }
@media (min-width: 1024px) { .ps-solution-text { font-size: 18px; } }

.how-card {
  flex-shrink: 0; width: 100%;
  height: 520px; border-radius: 30px; overflow: hidden; position: relative;
}
@media (min-width: 768px) {
  .how-card { width: calc((100% - 20px) / 2); height: 480px; }
}
@media (min-width: 1024px) {
  .how-card { width: calc((100% - 40px) / 2); height: 450px; }
}
.how-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.how-card:hover .how-card-bg { transform: scale(1.05); }
.how-card-overlay-green { position: absolute; inset: 0; background: rgba(0,148,114,0.85); }
.how-card-overlay-grad  { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,0.7)); }

.how-card-body {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px; gap: 24px;
}
@media (min-width: 1024px) { .how-card-body { padding: 40px; gap: 0; } }

.how-card-top { display: flex; flex-direction: column; gap: 16px; }

.how-card-icon {
  width: 36px; height: 36px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .how-card-icon { width: 40px; height: 40px; } }
.how-card-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
@media (min-width: 1024px) { .how-card-icon svg { width: 22px; height: 22px; } }

.how-card-title { font-size: 20px; font-weight: var(--fw-semibold); line-height: 1.2; color: #fff; }
@media (min-width: 1024px) { .how-card-title { font-size: 28px; } }

.how-card-desc { font-size: 16px; font-weight: var(--fw-medium); line-height: 1.5; color: #fff; }
@media (min-width: 1024px) { .how-card-desc { font-size: 18px; } }

.partners-section {
  background: var(--green); width: 100%;
  padding: 64px var(--px);
  display: flex; flex-direction: column; gap: 32px; align-items: center;
}
@media (min-width: 1024px) { .partners-section { padding: 120px var(--px); gap: 48px; } }

.partners-label { font-size: 16px; font-weight: var(--fw-semibold); color: #fff; text-align: center; }
@media (min-width: 1024px) { .partners-label { font-size: 20px; } }

.partners-list {
  display: flex; flex-direction: column; gap: 40px;
  align-items: center; justify-content: center; width: 100%; flex-wrap: wrap;
}
@media (min-width: 1024px) { .partners-list { flex-direction: row; gap: 80px; } }

.partner-name { font-size: 20px; font-weight: var(--fw-semibold); color: #fff; text-align: center; }
@media (min-width: 1024px) { .partner-name { font-size: 28px; } }

.doctor-card {
  flex-shrink: 0; width: 100%;
  height: 400px; border-radius: 30px; overflow: hidden;
  position: relative; background: #fff;
}
@media (min-width: 768px) {
  .doctor-card { width: calc((100% - 20px) / 2); height: 450px; }
}
@media (min-width: 1024px) {
  .doctor-card { width: calc((100% - 80px) / 3); height: 500px; }
}

.doctor-card-body {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
}
@media (min-width: 1024px) { .doctor-card-body { padding: 32px; } }

.doctor-card-top { display: flex; justify-content: space-between; align-items: flex-start; }

.doctor-name { font-size: 14px; font-weight: var(--fw-medium); line-height: 1.3; color: var(--dark); }
@media (min-width: 1024px) { .doctor-name { font-size: 16px; } }

.doctor-fullname { font-size: 18px; font-weight: var(--fw-semibold); line-height: 1.2; color: var(--dark); margin-top: 2px; }
@media (min-width: 1024px) { .doctor-fullname { font-size: 20px; } }

.doctor-link {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
@media (min-width: 1024px) { .doctor-link { width: 48px; height: 48px; } }
.doctor-link:hover { background: #007a5e; }
.doctor-link img { width: 20px; height: 20px; }

.doctor-img {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80%; overflow: hidden;
}
.doctor-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.3s; }
.doctor-card:hover .doctor-img img { transform: scale(1.05); }


.feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; width: 100%;
}
@media (min-width: 1024px) { .feature-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px; padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 1024px) { .feature-card { padding: 32px; height: 360px; justify-content: space-between; gap: 0; } }

.feature-icon {
  width: 36px; height: 36px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .feature-icon { width: 40px; height: 40px; } }
.feature-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
@media (min-width: 1024px) { .feature-icon svg { width: 22px; height: 22px; } }

.feature-card-top { display: flex; flex-direction: column; gap: 16px; }

.feature-title { font-size: 20px; font-weight: var(--fw-semibold); line-height: 1.2; color: #fff; }
@media (min-width: 1024px) { .feature-title { font-size: 24px; } }

.feature-desc { font-size: 16px; font-weight: var(--fw-medium); line-height: 1.4; color: rgba(255,255,255,0.8); }
@media (min-width: 1024px) { .feature-desc { font-size: 18px; } }

.carousel-card {
  flex-shrink: 0; width: 100%;
  min-height: 340px; border-radius: 30px; overflow: hidden; position: relative;
}
@media (min-width: 768px) {
  .carousel-card { width: calc((100% - 20px) / 2); min-height: 360px; }
}
@media (min-width: 1024px) {
  .carousel-card { width: calc((100% - 40px) / 2); min-height: 380px; }
}
.carousel-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.carousel-card-overlay { position: absolute; inset: 0; background: rgba(0,148,114,0.90); }

.carousel-card-body {
  position: relative; height: 100%; min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
}
@media (min-width: 1024px) { .carousel-card-body { min-height: 380px; padding: 32px; } }

.carousel-card-icon {
  width: 44px; height: 44px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
@media (min-width: 1024px) { .carousel-card-icon { width: 48px; height: 48px; } }
.carousel-card-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
@media (min-width: 1024px) { .carousel-card-icon svg { width: 26px; height: 26px; } }

.carousel-card-title { font-size: 28px; font-weight: var(--fw-semibold); color: #fff; }
@media (min-width: 1024px) { .carousel-card-title { font-size: 40px; } }

.carousel-card-desc {
  font-size: 16px; font-weight: var(--fw-medium); line-height: 1.5; color: #fff;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 20px; padding: 20px;
}
@media (min-width: 1024px) { .carousel-card-desc { font-size: 18px; } }

.steps-grid {
  display: flex; flex-direction: column; gap: 24px; width: 100%;
}
@media (min-width: 1024px) { .steps-grid { flex-direction: row; gap: 32px; align-items: stretch; } }

.step-card {
  flex: 1; border-radius: 24px; padding: 28px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 1024px) { .step-card { padding: 36px; } }

.step-num {
  width: 36px; height: 36px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
}
@media (min-width: 1024px) { .step-num { width: 40px; height: 40px; font-size: 20px; } }

.step-text { font-size: 16px; font-weight: var(--fw-medium); line-height: 1.5; color: #fff; }
@media (min-width: 1024px) { .step-text { font-size: 18px; } }

    
.pkg-header {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; padding-top: 32px; width: 100%;
}
@media (min-width: 1024px) {
  .pkg-header { flex-direction: row; align-items: center; justify-content: space-between; gap: 0; }
}

.pkg-subtitle { font-size: 20px; font-weight: var(--fw-semibold); color: var(--dark); }
@media (min-width: 1024px) { .pkg-subtitle { font-size: 32px; } }

.pkg-compare-btn {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(14,14,17,0.2); color: var(--dark);
  height: 44px; padding: 0 24px; border-radius: 50px;
  font-size: 16px; font-weight: var(--fw-medium);
  display: inline-flex; align-items: center; white-space: nowrap;
  transition: background 0.2s;
}
.pkg-compare-btn:hover { background: rgba(14,14,17,0.1); }

.pkg-card {
  flex-shrink: 0; width: 100%; min-width: 280px;
}
@media (min-width: 768px) {
  .pkg-card { width: calc((100% - 20px) / 2); min-width: 0; }
}
@media (min-width: 1024px) {
  .pkg-card { width: calc((100% - 40px) / 2); }
}

.pkg-card-inner {
  position: relative; border-radius: 30px; overflow: hidden;
  min-height: 520px; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 1024px) { .pkg-card-inner { min-height: 600px; } }

.pkg-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pkg-card-overlay { position: absolute; inset: 0; }
.pkg-card-overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }

.pkg-card-body {
  position: relative; height: 100%; min-height: 520px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px; gap: 24px;
}
@media (min-width: 1024px) { .pkg-card-body { min-height: 600px; padding: 32px; gap: 0; } }

.pkg-card-top { display: flex; flex-direction: column; gap: 12px; }

.pkg-card-title { font-size: 20px; font-weight: var(--fw-semibold); line-height: 1.2; color: #fff; }
@media (min-width: 1024px) { .pkg-card-title { font-size: 24px; } }

.pkg-card-price { font-size: 18px; font-weight: var(--fw-semibold); color: #fff; }
@media (min-width: 1024px) { .pkg-card-price { font-size: 20px; } }

.pkg-card-klarna { font-size: 14px; font-weight: var(--fw-medium); color: #fff; }
@media (min-width: 1024px) { .pkg-card-klarna { font-size: 16px; } }

.pkg-detail {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 20px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 1024px) { .pkg-detail { padding: 20px; } }

.pkg-desc { font-size: 14px; font-weight: var(--fw-regular); line-height: 1.4; color: #fff; }
@media (min-width: 1024px) { .pkg-desc { font-size: 16px; } }

.pkg-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 4px 0; }

.pkg-contains { font-size: 14px; font-weight: var(--fw-semibold); color: #fff; }
@media (min-width: 1024px) { .pkg-contains { font-size: 16px; } }

.pkg-list { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 4px; }
.pkg-list li { font-size: 13px; font-weight: var(--fw-regular); line-height: 1.5; color: #fff; }
@media (min-width: 1024px) { .pkg-list li { font-size: 15px; } }

.w-hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
}
.w-hero-video-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.w-hero-phone-desktop {
  display: none;
  position: absolute; bottom: 0; right: 0;
  width: 100%; max-width: 440px; z-index: 20; pointer-events: none;
}
.w-hero-phone-desktop img { width: 100%; height: auto; object-fit: contain; display: block; }
@media (min-width: 1024px) {
  .w-hero-phone-desktop { display: block; right: 120px; }
}

.w-bg-dark  { background: var(--dark);  color: #fff; }
.w-bg-green { background: var(--green); color: #fff; }
.w-bg-white { background: #fff; }
.w-bg-grey  { background: #f6f6f6; }
.w-bg-dark .w-section-title { color: #fff; }

.w-btn {
  height: 44px; padding: 0 24px; border-radius: 50px;
  font-size: 16px; font-weight: var(--fw-medium); white-space: nowrap;
  display: inline-flex; align-items: center; transition: all 0.2s;
}
.w-btn-outline-dark {
  background: rgba(14,14,17,0.05);
  border: 1px solid rgba(14,14,17,0.2); color: var(--dark);
}
.w-btn-outline-dark:hover { background: rgba(14,14,17,0.1); }
.w-btn-outline-light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.w-btn-outline-light:hover { background: rgba(255,255,255,0.2); }

.w-feature-card-body {
  position: relative; height: 100%; min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between; padding: 24px;
}
@media (min-width: 1024px) { .w-feature-card-body { min-height: 420px; padding: 32px; } }

.w-feature-card-top { display: flex; flex-direction: column; gap: 12px; }

.w-feature-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (min-width: 1024px) { .w-feature-icon { width: 40px; height: 40px; } }
.w-feature-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
@media (min-width: 1024px) { .w-feature-icon svg { width: 22px; height: 22px; } }

.w-idea-card-overlay { position: absolute; inset: 0; background: rgba(0,148,114,0.85); }

.w-idea-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (min-width: 1024px) { .w-idea-icon { width: 48px; height: 48px; } }
.w-idea-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
@media (min-width: 1024px) { .w-idea-icon svg { width: 26px; height: 26px; } }

.w-idea-label { font-size: 24px; font-weight: var(--fw-semibold); color: #fff; }
@media (min-width: 1024px) { .w-idea-label { font-size: 40px; } }

.w-idea-text { font-size: 16px; font-weight: var(--fw-medium); line-height: normal; color: #fff; }
@media (min-width: 1024px) { .w-idea-text { font-size: 18px; } }

.w-product-card-body {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between; padding: 24px;
}
@media (min-width: 1024px) { .w-product-card-body { padding: 32px; } }

.w-product-link {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
@media (min-width: 1024px) { .w-product-link { width: 48px; height: 48px; } }
.w-product-link:hover { background: var(--green); }
.w-product-link svg { stroke: var(--dark); fill: none; transition: stroke 0.2s; }
.w-product-link:hover svg { stroke: #fff; }

.w-community-inner-mobile {
  display: flex; flex-direction: column; gap: 24px;
  padding: 64px 20px 0;
}
@media (min-width: 1024px) { .w-community-inner-mobile { display: none; } }

.w-community-inner-desktop { display: none; }
@media (min-width: 1024px) {
  .w-community-inner-desktop {
    display: flex; flex-direction: column; gap: 80px;
    padding: 120px var(--px-desktop);
  }
}

.w-community-label { font-size: 16px; font-weight: var(--fw-semibold); color: var(--green); }
@media (min-width: 1024px) { .w-community-label { font-size: 20px; } }

.w-community-title { font-size: 24px; font-weight: var(--fw-semibold); color: #fff; }
@media (min-width: 1024px) { .w-community-title { font-size: 40px; } }

.w-community-img-mobile { width: 100%; aspect-ratio: 851/622; }
.w-community-img-mobile img { width: 100%; height: 100%; object-fit: cover; object-position: bottom; }
@media (min-width: 1024px) { .w-community-img-mobile { display: none; } }

.w-community-img-desktop { display: none; }
@media (min-width: 1024px) {
  .w-community-img-desktop {
    display: block; position: absolute;
    height: 580px; right: 5%; bottom: 0; width: 795px;
    pointer-events: none;
  }
  .w-community-img-desktop img { width: 100%; height: 100%; object-fit: cover; }
}


.hero {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  gap: 40px; align-items: flex-start;
  padding: 140px var(--px-mobile) 64px; width: 100%;
}
@media (min-width: 1024px) { .hero { flex-direction: row; gap: 80px; padding: 220px var(--px-desktop) 120px; } }
@media (min-width: 1280px) { .hero { gap: 140px; } }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scaleX(-1);
}
.hero-bg-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.4); }

.hero-left {
  position: relative; z-index: 10; width: 100%;
  display: flex; flex-direction: column; gap: 40px; align-items: flex-start;
}
@media (min-width: 1024px) { .hero-left { flex: 1; min-width: 0; } }

.hero-title { font-size: 28px; font-weight: var(--fw-semibold); line-height: normal; color: var(--dark); width: 100%; }
@media (min-width: 1024px) { .hero-title { font-size: 48px; max-width: 691px; } }

.hero-desc { display: flex; flex-direction: column; font-size: 16px; font-weight: var(--fw-medium); line-height: normal; color: var(--dark); width: 100%; }
@media (min-width: 1024px) { .hero-desc { font-size: 18px; } }

.hero-ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; width: 100%; }

.hero-cta {
  background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 30px;
  padding: 16px 24px; font-size: 16px; font-weight: var(--fw-medium); color: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; width: 100%; max-width: var(--hero-cta-width); box-sizing: border-box; text-align: left; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover { background: rgba(255,255,255,0.7); transform: scale(1.02); }
.hero-cta:active { transform: scale(0.98); }
@media (min-width: 1024px) { .hero-cta { font-size: 18px; padding: 18px 24px; } }

.hero-form {
  position: relative; z-index: 10; width: 100%;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 30px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 1024px) { .hero-form { padding: 40px; width: 500px; flex-shrink: 0; } }

.form-title { font-size: 18px; font-weight: var(--fw-semibold); color: var(--dark); }
@media (min-width: 1024px) { .form-title { font-size: 24px; } }

.arrows-section {
  background: var(--dark); width: 100%; padding: 64px var(--px-mobile);
}
@media (min-width: 1024px) { .arrows-section { padding: 120px var(--px-desktop); } }

.arrows-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
@media (min-width: 1024px) { .arrows-header { margin-bottom: 80px; } }

.arrows-logo { height: 64px; width: 200px; flex-shrink: 0; }
@media (min-width: 1024px) { .arrows-logo { height: 77px; width: 240px; } }

.arrows-nav { display: flex; align-items: center; gap: 12px; }

.arrows-btn {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s; cursor: pointer;
}
.arrows-btn:hover { opacity: 0.8; }
@media (min-width: 1024px) { .arrows-btn { width: 56px; height: 56px; border-radius: 16px; } }

.arrows-viewport { overflow: hidden; width: 100%; }
.arrows-track {
  display: flex; width: 200%;
  transition: transform 500ms ease;
}
.arrows-track > * { width: 50%; flex-shrink: 0; display: flex; flex-direction: column; }
.arrows-track.slide-partner { transform: translateX(-50%); }

.arrows-cards { display: flex; flex-direction: column; gap: 24px; flex: 1; }
@media (min-width: 1024px) { .arrows-cards { flex-direction: row; gap: 40px; } }

.arrows-card {
  flex: 1; border-radius: 30px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 1024px) { .arrows-card { padding: 36px; } }

.arrows-card-icon {
  width: 36px; height: 36px; border-radius: 16px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
@media (min-width: 1024px) { .arrows-card-icon { width: 40px; height: 40px; } }
.arrows-card-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
@media (min-width: 1024px) { .arrows-card-icon svg { width: 22px; height: 22px; } }

.arrows-card-text { font-size: 16px; font-weight: var(--fw-medium); line-height: 1.5; color: #fff; }
@media (min-width: 1024px) { .arrows-card-text { font-size: 18px; } }

.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-viewport > .carousel-track { display: flex; gap: 0; transition: transform 0.5s ease; }
.carousel-viewport > .carousel-track > * { width: 100%; flex-shrink: 0; }
.carousel-viewport > .carousel-track.slide-partner { transform: translateX(-100%); }

.carousel-slide {
  display: flex; flex-direction: column; gap: 40px;
  align-items: center; justify-content: center;
  padding: 60px var(--px-mobile); min-height: 400px;
}
@media (min-width: 768px)  { .carousel-slide { gap: 60px; padding: 80px var(--px-mobile); min-height: 450px; } }
@media (min-width: 1024px) { .carousel-slide { gap: 80px; padding: 120px var(--px-desktop); min-height: 500px; } }

.carousel-slide.medical { background: var(--medical); }
.carousel-slide.partner  { background: var(--partner);  }

.carousel-text {
  font-size: 20px; font-weight: var(--fw-semibold); line-height: normal;
  color: #fff; text-align: center;
}
@media (min-width: 768px)  { .carousel-text { font-size: 24px; } }
@media (min-width: 1024px) { .carousel-text { font-size: 28px; } }
@media (min-width: 1280px) { .carousel-text { font-size: 32px; } }

.carousel-dots { display: flex; gap: 20px; align-items: center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  border: none; padding: 0; cursor: pointer; transition: opacity 0.2s;
}
.dot.active { opacity: 0.8; }
.dot:not(.active) { opacity: 0.2; }

.tabs-section {
  background: #fff; width: 100%;
  padding: 40px var(--px-mobile) 64px;
  display: flex; flex-direction: column; gap: 40px;
}
@media (min-width: 1024px) { .tabs-section { padding: 80px var(--px-desktop) 120px; gap: 48px; } }

.tabs-header { display: flex; flex-direction: column; gap: 24px; }

.tabs-label { font-size: 16px; font-weight: var(--fw-semibold); }
.tabs-label.medical { color: var(--medical); }
.tabs-label.partner  { color: var(--partner);  }
@media (min-width: 1024px) { .tabs-label { font-size: 20px; } }

.tabs-buttons { display: flex; gap: 16px; align-items: flex-start; }
@media (min-width: 768px)  { .tabs-buttons { gap: 24px; } }
@media (min-width: 1024px) { .tabs-buttons { justify-content: flex-start !important; } }

.tab-btn {
  font-size: 24px; font-weight: var(--fw-semibold); line-height: normal; color: var(--dark);
  background: none; border: none; padding: 0 0 12px; border-bottom: 2px solid transparent;
  cursor: pointer; transition: opacity 0.2s, border-color 0.2s; white-space: nowrap;
}
.tab-btn:not(.active) { opacity: 0.2; }
.tab-btn.active.medical { border-color: var(--medical); }
.tab-btn.active.partner  { border-color: var(--partner); }
@media (min-width: 768px)  { .tab-btn { font-size: 28px; } }
@media (min-width: 1024px) { .tab-btn { font-size: 36px; } }
@media (min-width: 1280px) { .tab-btn { font-size: 40px; } }

.tabs-viewport { overflow: hidden; width: 100%; }
.tabs-track {
  display: flex; width: 200%;
  transition: transform 500ms ease;
}
.tabs-track > * { width: 50%; flex-shrink: 0; display: flex; flex-direction: column; }
.tabs-track.slide-partner { transform: translateX(-50%); }

.steps { display: flex; flex-direction: column; gap: 40px; flex: 1; }
@media (min-width: 1024px) { .steps { flex-direction: row; align-items: stretch; } }

.step {
  flex: 1; border-radius: 30px; padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 1024px) { .step { padding: 48px; justify-content: space-between; } }

.step.medical { background: rgba(43,25,255,0.1); }
.step.partner  { background: rgba(0,207,226,0.1); }

.step-num.medical { background: rgba(43,25,255,0.1); border: 1px solid rgba(43,25,255,0.2); color: var(--medical); }
.step-num.partner  { background: rgba(0,207,226,0.1);  border: 1px solid rgba(0,207,226,0.2);  color: var(--partner); }

.step .step-text { font-size: 16px; font-weight: var(--fw-medium); line-height: normal; color: var(--dark); }
@media (min-width: 1024px) { .step .step-text { font-size: 18px; } }


.quiz-section {
  background: #fff; width: 100%; flex: 1;
  padding: 140px var(--px) 64px;
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 1024px) {
  .quiz-section { padding: 220px var(--px) 120px; gap: 80px; }
}

.cards-grid {
  display: flex; flex-direction: column; gap: 40px;
  align-items: flex-start; width: 100%;
}
@media (min-width: 1024px) { .cards-grid { flex-direction: row; align-items: flex-start; } }

.quiz-card {
  position: relative; height: 400px; border-radius: 30px;
  overflow: hidden; display: block; width: 100%;
}
@media (min-width: 1024px) { .quiz-card { height: 500px; flex: 1; width: auto; } }

.quiz-card-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.3s;
}
.quiz-card:hover .quiz-card-bg { transform: scale(1.05); }

.quiz-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.quiz-card-body {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between; padding: 24px;
}
@media (min-width: 1024px) { .quiz-card-body { padding: 32px; } }

.quiz-card-header { display: flex; justify-content: space-between; align-items: flex-start; }

.quiz-card-title {
  font-size: 20px; font-weight: var(--fw-semibold); line-height: 1.2;
  color: #fff; max-width: 70%;
}
@media (min-width: 1024px) { .quiz-card-title { font-size: 28px; } }

.quiz-card-link {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
@media (min-width: 1024px) { .quiz-card-link { width: 48px; height: 48px; } }
.quiz-card-link:hover { background: var(--green); }
.quiz-card-link img { width: 20px; height: 20px; transition: filter 0.2s; }
.quiz-card-link:hover img { filter: brightness(0) invert(1); }

.quiz-card-desc { font-size: 14px; font-weight: var(--fw-medium); line-height: 1.4; color: #fff; }
@media (min-width: 1024px) { .quiz-card-desc { font-size: 16px; } }


.quiz-take-wrapper {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px var(--px) 20px; min-height: 0;
}
@media (min-width: 1024px) {
  .quiz-take-wrapper { padding: 40px var(--px); }
}

.quiz-take-inner {
  width: 100%; max-width: 600px;
  display: flex; flex-direction: column;
  gap: 12px; height: 100%;
  justify-content: space-between;
  padding: 20px 0; min-height: 0;
}
@media (min-width: 1024px) {
  .quiz-take-inner { gap: 20px; padding: 80px 0; }
}

.qt-header {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; flex-shrink: 0;
}
@media (min-width: 1024px) { .qt-header { gap: 16px; } }

.qt-label {
  font-size: 14px; font-weight: var(--fw-semibold); color: var(--green); line-height: 1;
}
@media (min-width: 1024px) { .qt-label { font-size: 20px; } }

.qt-title-row {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start; width: 100%;
}
@media (min-width: 1024px) { .qt-title-row { gap: 12px; } }

.qt-title {
  font-size: 18px; font-weight: var(--fw-semibold); color: var(--dark); line-height: 1.2; width: 100%;
}
@media (min-width: 1024px) { .qt-title { font-size: 24px; } }

.qt-progress-wrap {
  display: flex; flex-direction: column; align-items: center; width: 100%;
}
.qt-progress {
  display: flex; align-items: center; justify-content: center;
  background: #606066; border-radius: 100px;
  padding: 3px 10px; width: 70px;
}
@media (min-width: 1024px) {
  .qt-progress { padding: 4px 12px; width: 100px; }
}
.qt-progress-text {
  font-size: 13px; font-weight: var(--fw-medium); color: #fff; text-align: center; line-height: 1.4;
}
@media (min-width: 1024px) { .qt-progress-text { font-size: 16px; } }

.qt-content {
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; flex: 1; min-height: 0; gap: 12px;
}
@media (min-width: 1024px) { .qt-content { gap: 20px; } }

.qt-image {
  height: 140px; position: relative;
  border-radius: 16px; flex-shrink: 0; width: 100%; overflow: hidden;
}
@media (min-width: 1024px) { .qt-image { height: 240px; border-radius: 20px; } }
.qt-image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; border-radius: inherit;
}

.qt-qa {
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; width: 100%; flex: 1; justify-content: center;
}
.qt-question-wrap {
  display: flex; gap: 12px; align-items: flex-start; justify-content: center; width: 100%;
}
@media (min-width: 1024px) { .qt-question-wrap { gap: 16px; } }
.qt-question {
  flex: 1 0 0; font-size: 14px; font-weight: var(--fw-semibold);
  color: var(--dark); text-align: center; line-height: 1.4;
}
@media (min-width: 1024px) { .qt-question { font-size: 20px; } }

.qt-answers {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; width: 100%;
}
@media (min-width: 1024px) { .qt-answers { gap: 12px; } }

.qt-answer {
  position: relative; width: 100%;
  border-radius: 16px; overflow: hidden;
  background: rgba(0,0,0,0.1); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  transition: background 0.2s; cursor: pointer;
}
.qt-answer:hover { background: rgba(0,0,0,0.15); }
.qt-answer.selected { background: rgba(0,148,114,0.1); }
@media (min-width: 1024px) { .qt-answer { border-radius: 20px; } }

.qt-answer-border {
  position: absolute; inset: 0; pointer-events: none;
  border: 1px solid #606066; border-radius: inherit;
  transition: border-color 0.2s;
}
.qt-answer.selected .qt-answer-border { border-color: var(--green); }

.qt-answer-inner {
  display: flex; flex-direction: row; align-items: center; width: 100%; height: 100%;
}

.qt-answer-content {
  display: flex; gap: 6px; align-items: center; padding: 10px; width: 100%;
}
@media (min-width: 1024px) { .qt-answer-content { gap: 8px; padding: 16px; } }

.qt-radio { flex-shrink: 0; width: 14px; height: 14px; }
@media (min-width: 1024px) { .qt-radio { width: 16px; height: 16px; } }
.qt-radio svg { display: block; width: 100%; height: 100%; }

.qt-answer-text {
  flex: 1 0 0; font-size: 13px; font-weight: var(--fw-medium);
  color: var(--dark); line-height: 1.4; min-height: 1px; min-width: 1px;
}
@media (min-width: 1024px) { .qt-answer-text { font-size: 16px; } }

.qt-buttons {
  display: flex; gap: 12px; align-items: flex-start;
  justify-content: center; margin-top: 4px; width: 100%;
}
@media (min-width: 1024px) { .qt-buttons { margin-top: 8px; width: auto; } }

.qt-btn {
  background: var(--dark); color: #fff;
  height: 40px; border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 20px; flex: 1;
  font-size: 13px; font-weight: var(--fw-medium);
  transition: opacity 0.2s; overflow: hidden;
}
.qt-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.qt-btn:not(:disabled):hover { opacity: 0.8; }
@media (min-width: 1024px) {
  .qt-btn { height: 44px; padding: 12px 24px; flex: initial; width: 200px; font-size: 16px; }
}



.w-legal-content { max-width: 900px; }
.w-legal-content h3 {
  font-family: 'Silka', sans-serif; font-weight: var(--fw-semibold); font-size: 20px;
  color: #0e0e11; margin: 32px 0 16px; line-height: 1.3;
}
@media (min-width: 1024px) { .w-legal-content h3 { font-size: 24px; margin: 48px 0 20px; } }
.w-legal-content p {
  font-family: 'Silka', sans-serif; font-weight: var(--fw-medium); font-size: 15px;
  color: #0e0e11; line-height: 1.7; margin: 0 0 12px;
}
@media (min-width: 1024px) { .w-legal-content p { font-size: 16px; } }
.w-legal-content a { color: #009472; text-decoration: underline; }
.w-legal-date {
  font-family: 'Silka', sans-serif; font-weight: var(--fw-medium); font-size: 14px;
  color: #606066; margin-bottom: 8px;
}


.blog-meta { color: #666; font-size: 14px; margin-bottom: 24px; }
.blog-actions { margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.blog-actions button,
.blog-actions a.btn-link {
  padding: 0 20px; height: 44px; border-radius: 22px; font-weight: var(--fw-semibold); font-size: 14px;
  cursor: pointer; display: inline-flex; align-items: center; transition: background 0.2s, color 0.2s;
}
.blog-actions button { background: #009472; color: #fff; border: none; }
.blog-actions button:hover { background: #013B2D; }
.blog-actions button.secondary,
.blog-actions a.btn-link { background: #fff; color: #009472; border: 1px solid #009472; text-decoration: none; }
.blog-actions button.secondary:hover,
.blog-actions a.btn-link:hover { background: #f0f9f7; }

.post-card {
  background: #fff; border: 1px solid #e0e0e0; border-radius: 10px;
  padding: 20px; margin-bottom: 16px; transition: box-shadow 0.2s; position: relative;
}
.post-card-ai-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 700; color: #666; background: #f0f0f0;
  padding: 4px 8px; border-radius: 4px; letter-spacing: 0.05em;
}
.post-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.post-card.status-draft     { border-left: 4px solid #ffa726; }
.post-card.status-approved  { border-left: 4px solid #42a5f5; }
.post-card.status-published { border-left: 4px solid #009472; }
.post-card.status-rejected  { border-left: 4px solid #ef5350; opacity: 0.85; }

.post-title { font-weight: var(--fw-semibold); font-size: 18px; margin-bottom: 8px; color: #333; }
.post-title-link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.post-title-link:hover { color: #009472; text-decoration: underline; }

.post-meta { font-size: 13px; color: #555; margin-bottom: 12px; }
.post-meta span { margin-right: 12px; }
.post-content-preview { font-size: 14px; color: #666; line-height: 1.5; max-height: 80px; overflow: hidden; margin-bottom: 12px; }
.post-content-preview * { font-size: inherit; }

.post-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.post-actions button { padding: 4px 12px; border-radius: 5px; font-size: 12px; cursor: pointer; border: 1px solid #ddd; background: #fff; color: #333; }
.post-actions button:hover { background: #f5f5f5; }
.post-actions button.btn-edit { border-color: #009472; color: #009472; }
.post-actions button.btn-edit:hover { background: #f0f9f7; }
.post-actions button.btn-publish { border-color: #009472; background: #009472; color: #fff; }
.post-actions button.btn-publish:hover { background: #013B2D; }
.post-actions button.btn-approve { border-color: #42a5f5; color: #42a5f5; }
.post-actions button.btn-reject { border-color: #ef5350; color: #ef5350; }
.post-actions button.btn-delete { border-color: #ef5350; color: #ef5350; }
.post-actions button.btn-social { border-color: #1877f2; color: #1877f2; }
.post-actions button.btn-social:hover { background: #f0f4ff; }
.post-actions button.btn-unpublish { border-color: #ffa726; color: #ffa726; }
.post-actions button.btn-unpublish:hover { background: #fff8e1; }

.status-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: var(--fw-semibold); }
.status-badge.draft     { background: #fff3e0; color: #e65100; }
.status-badge.approved  { background: #e3f2fd; color: #1565c0; }
.status-badge.published { background: #e8f5e9; color: #2e7d32; }
.status-badge.rejected  { background: #ffebee; color: #c62828; }

.blog-loading, .blog-error { padding: 40px; text-align: center; color: #666; }
.blog-error { color: #c62828; }
.empty-state { text-align: center; padding: 48px 20px; color: #666; }
.empty-state p { margin-bottom: 16px; }

.draft-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; align-items: center; }
.draft-filters .filter-label { font-size: 13px; color: #666; margin-right: 4px; }
.draft-filters button.filter-tab {
  padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: var(--fw-medium);
  cursor: pointer; border: 1px solid #ddd; background: #fff; color: #555;
}
.draft-filters button.filter-tab:hover { background: #f5f5f5; border-color: #009472; color: #009472; }
.draft-filters button.filter-tab.active { background: #009472; border-color: #009472; color: #fff; }

#social-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 9000; align-items: center; justify-content: center;
}
#social-modal-overlay.open { display: flex; }
#social-modal {
  background: #fff; border-radius: 12px; padding: 28px 28px 24px;
  max-width: 560px; width: calc(100% - 32px); box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex; flex-direction: column; gap: 16px;
}
#social-modal h3 { margin: 0; font-size: 17px; color: #1d1d1f; }
#social-modal .social-modal-label { font-size: 12px; color: #888; margin-bottom: 4px; }
#social-modal-text {
  width: 100%; box-sizing: border-box; border: 1px solid #d2d2d7; border-radius: 8px;
  padding: 12px; font-size: 14px; line-height: 1.6; color: #1d1d1f;
  resize: vertical; min-height: 140px; font-family: inherit;
}
.social-modal-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.social-modal-actions button {
  padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: var(--fw-semibold);
  cursor: pointer; border: none;
}
#social-btn-copy { background: #009472; color: #fff; }
#social-btn-copy:hover { background: #013B2D; }
#social-btn-copy.copied { background: #2e7d32; }
#social-btn-close { background: #f5f5f7; color: #333; }
#social-btn-close:hover { background: #e5e5ea; }
#social-btn-regen { background: #f5f5f7; color: #555; }
#social-btn-regen:hover { background: #e5e5ea; }
#social-btn-regen:disabled { opacity: 0.6; cursor: not-allowed; }
#social-modal-spinner { text-align: center; color: #009472; font-size: 14px; }
#social-modal-error { color: #c62828; font-size: 13px; }

#list-view.hidden { display: none !important; }
#editor-view {
  display: none; position: fixed; inset: 0;
  overflow-y: auto; background: #fff; z-index: 999;
}
#editor-view.visible { display: block; }

.editor-topbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #e0e0e0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px; box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.editor-topbar .btn-back {
  flex-shrink: 0; padding: 7px 16px; border-radius: 20px;
  font-size: 13px; font-weight: var(--fw-semibold); cursor: pointer;
  background: #fff; color: #009472; border: 1px solid #009472;
}
.editor-topbar .btn-back:hover { background: #f0f9f7; }
.editor-topbar .topbar-title {
  flex: 1; font-size: 15px; font-weight: var(--fw-semibold); color: #333;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.editor-topbar .topbar-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.editor-topbar .topbar-actions button {
  padding: 0 18px; height: 36px; border-radius: 18px;
  font-weight: var(--fw-semibold); font-size: 13px; cursor: pointer; transition: background 0.2s;
}
.topbar-btn-save { background: #009472; color: #fff; border: none; }
.topbar-btn-save:hover { background: #013B2D; }
.topbar-btn-preview { background: #fff; color: #009472; border: 1px solid #009472; }
.topbar-btn-preview:hover { background: #f0f9f7; }
.topbar-btn-cancel { background: #fff; color: #555; border: 1px solid #ddd; }
.topbar-btn-cancel:hover { background: #f5f5f5; }

.autosave-status { font-size: 12px; color: #aaa; white-space: nowrap; }
.autosave-status.saving { color: #009472; }
.autosave-status.saved { color: #888; }
.autosave-status.error { color: #ef5350; }

.editor-body { max-width: 900px; margin: 0 auto; padding: 28px 32px 80px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: var(--fw-semibold); margin-bottom: 6px; font-size: 14px; color: #333; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid #ddd;
  border-radius: 8px; font-size: 14px; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #009472; box-shadow: 0 0 0 3px rgba(0,148,114,0.1); outline: none;
}
.form-group textarea { min-height: 80px; resize: vertical; }

.editor-wrap { margin-bottom: 0; position: relative; }
.editor-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 2px;
  padding: 6px 10px; background: #f2f2f2;
  border: 1px solid #d0d0d0; border-bottom: 2px solid #bbb;
  border-radius: 8px 8px 0 0;
  position: sticky; top: 58px; z-index: 80;
}
.toolbar-group { display: flex; align-items: center; gap: 1px; }
.toolbar-sep { width: 1px; height: 22px; background: #ccc; margin: 0 5px; flex-shrink: 0; }
.editor-toolbar select {
  padding: 1px 6px; border: 1px solid #ccc; border-radius: 4px;
  font-size: 12px; background: #fff; cursor: pointer; height: 26px; color: #333;
}
.editor-toolbar select:focus { outline: none; border-color: #009472; }
.editor-toolbar button {
  padding: 0 7px; border: 1px solid transparent; background: transparent;
  border-radius: 4px; cursor: pointer; font-size: 13px; color: #333;
  min-width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.1s, border-color 0.1s; white-space: nowrap; gap: 3px;
}
.editor-toolbar button:hover { background: #e0e0e0; border-color: #bbb; }
.editor-toolbar button.active { background: #d6ede8; border-color: #009472; color: #009472; }

.editor-content {
  min-height: calc(100vh - 280px);
  padding: 28px 36px;
  border: 1px solid #d0d0d0; border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff; font-size: 16px; line-height: 1.7; outline: none;
  font-family: 'Silka', Georgia, serif; color: #1a1a1a;
}
.editor-content:focus { border-color: #009472; box-shadow: 0 0 0 3px rgba(0,148,114,0.08); }
.editor-content[data-placeholder]:empty::before { content: attr(data-placeholder); color: #aaa; pointer-events: none; }
.editor-content h1 { font-size: 2em; font-weight: 700; margin: 0.6em 0 0.3em; line-height: 1.2; }
.editor-content h2 { font-size: 1.5em; font-weight: 700; margin: 0.6em 0 0.3em; line-height: 1.3; }
.editor-content h3 { font-size: 1.2em; font-weight: 700; margin: 0.5em 0 0.3em; line-height: 1.3; }
.editor-content p { margin: 0 0 0.8em; }
.editor-content p:last-child { margin-bottom: 0; }
.editor-content ul, .editor-content ol { margin: 0.5em 0 0.8em; padding-left: 1.6em; }
.editor-content li { margin: 0.2em 0; }
.editor-content::after { content: ''; display: block; clear: both; }
.editor-content.editor-drag-over { border-color: #009472; background: #f0f9f7; }
.editor-content figure.figure-dragging { opacity: 0.4; outline: 2px dashed #009472; outline-offset: 4px; }
.editor-content .editor-drop-indicator { height: 3px; background: #009472; margin: 8px 0; border-radius: 2px; pointer-events: none; clear: both; }

.editor-content figure { margin: 20px 0; position: relative; cursor: pointer; }
.editor-content figure img { max-width: 100%; height: auto; border-radius: 8px; display: block; }
.editor-content figcaption { font-size: 13px; color: #888; margin-top: 6px; font-style: italic; }
.editor-content figure.fig-left { float: left; margin: 4px 24px 12px 0; max-width: 42%; clear: left; }
.editor-content figure.fig-right { float: right; margin: 4px 0 12px 24px; max-width: 42%; clear: right; }
.editor-content figure.fig-center { display: block; margin: 24px auto; max-width: 100%; clear: both; text-align: center; }
.editor-content figure.fig-full { width: 100%; margin: 24px 0; clear: both; }
.editor-content figure.fig-selected { outline: 2px solid #009472; border-radius: 8px; }

/* Image position toolbar */
#img-pos-toolbar {
  display: none; position: fixed; z-index: 1100;
  background: #fff; border: 1px solid #ddd; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  padding: 5px 8px; gap: 3px; align-items: center;
}
#img-pos-toolbar.visible { display: flex; }
#img-pos-toolbar button {
  padding: 5px 10px; border: 1px solid #e0e0e0; background: #fff;
  border-radius: 5px; cursor: pointer; font-size: 12px; color: #444;
  transition: background 0.1s, border-color 0.1s, color 0.1s;
  white-space: nowrap; display: flex; align-items: center; gap: 3px;
}
#img-pos-toolbar button:hover { background: #f0f9f7; border-color: #009472; color: #009472; }
#img-pos-toolbar button.active { background: #009472; color: #fff; border-color: #009472; }
#img-pos-toolbar .img-pos-sep { width: 1px; height: 18px; background: #e0e0e0; margin: 0 3px; }
#img-pos-toolbar .btn-img-delete { color: #ef5350; border-color: #f8d7d7; }
#img-pos-toolbar .btn-img-delete:hover { background: #ffebee; color: #c62828; border-color: #ef5350; }

/* Alt tag editor */
.img-alt-editor {
  display: none; position: fixed; z-index: 1101;
  background: #fff; border: 1px solid #ddd; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  padding: 12px 16px; width: 340px; max-width: 90vw;
}
.img-alt-editor.visible { display: block; }
.img-alt-editor label { display: block; font-size: 12px; font-weight: 600; color: #444; margin-bottom: 6px; }
.img-alt-editor input {
  width: 100%; padding: 8px 10px; border: 1px solid #ddd; border-radius: 6px;
  font-size: 13px; font-family: inherit; outline: none; transition: border-color 0.15s; box-sizing: border-box;
}
.img-alt-editor input:focus { border-color: #009472; }
.img-alt-actions { display: flex; gap: 8px; margin-top: 8px; justify-content: flex-end; }
.img-alt-actions button {
  padding: 5px 14px; border: 1px solid #e0e0e0; background: #fff;
  border-radius: 5px; cursor: pointer; font-size: 12px; color: #444; transition: all 0.1s;
}
.img-alt-actions button:hover { border-color: #009472; color: #009472; }
.img-alt-actions .btn-alt-save { background: #009472; color: #fff; border-color: #009472; }
.img-alt-actions .btn-alt-save:hover { background: #007a5e; border-color: #007a5e; }

.prompt-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.prompt-header label { margin: 0; }
.prompt-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.prompt-regenerate-status { font-size: 13px; color: #555; min-height: 1.4em; }
.prompt-regenerate-status.loading { color: #009472; font-weight: var(--fw-semibold); }
.prompt-regenerate-status.success { color: #2e7d32; }
.prompt-regenerate-status.error { color: #c62828; }
.prompt-actions button.btn-regenerate {
  padding: 4px 12px; height: auto; border-radius: 5px; font-size: 12px;
  font-weight: normal; line-height: 1.4; border: 1px solid #009472;
  background: #fff; color: #009472; cursor: pointer;
}
.prompt-actions button.btn-regenerate:hover { background: #f0f9f7; }
.prompt-actions button.btn-regenerate:disabled { opacity: 0.7; cursor: not-allowed; }

.modal-actions { margin-top: 32px; display: flex; gap: 12px; justify-content: flex-end; border-top: 1px solid #e0e0e0; padding-top: 24px; }
.modal-actions button { padding: 0 24px; height: 44px; border-radius: 22px; font-weight: var(--fw-semibold); font-size: 14px; cursor: pointer; border: none; transition: background 0.2s, color 0.2s; }
.modal-actions button:not(.secondary) { background: #009472; color: #fff; }
.modal-actions button:not(.secondary):hover { background: #013B2D; }
.modal-actions button.secondary { background: #fff; color: #009472; border: 1px solid #009472; }
.modal-actions button.secondary:hover { background: #f0f9f7; }

#preview-view { display: none; position: fixed; inset: 0; overflow-y: auto; background: #fff; z-index: 999; }
#preview-view.visible { display: block; }
.preview-topbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #e0e0e0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px; box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.btn-back-preview { padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: var(--fw-semibold); cursor: pointer; background: #fff; color: #009472; border: 1px solid #009472; }
.btn-back-preview:hover { background: #f0f9f7; }
.preview-topbar-label { font-size: 13px; color: #888; }
#preview-body { padding: 0; background: #fff; }

#preview-body .blog-article { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
#preview-body .article-title { font-size: 32px; font-weight: 700; margin-bottom: 12px; color: #000; line-height: 1.2; font-family: Silka, sans-serif; }
#preview-body .article-meta { font-size: 14px; color: #888; margin-bottom: 28px; }
#preview-body .article-content { font-size: 16px; line-height: 1.6; color: #111; font-family: Silka, sans-serif; }
#preview-body .article-content h1 { font-size: 2em; font-weight: 700; margin: 0.6em 0 0.4em; }
#preview-body .article-content h2 { font-size: 1.5em; font-weight: 700; margin: 0.5em 0 0.3em; }
#preview-body .article-content h3 { font-size: 1.2em; font-weight: 700; margin: 0.5em 0 0.3em; }
#preview-body .article-content p { margin: 0 0 1em; }
#preview-body .article-content ul,
#preview-body .article-content ol { margin: 0.5em 0 1em; padding-left: 1.6em; }
#preview-body .article-content li { margin: 0.25em 0; }
#preview-body .article-content figure { margin: 28px 0; }
#preview-body .article-content figure.fig-left { float: left; margin: 4px 24px 12px 0; max-width: 42%; }
#preview-body .article-content figure.fig-right { float: right; margin: 4px 0 12px 24px; max-width: 42%; }
#preview-body .article-content figure.fig-center { margin: 28px auto; max-width: 100%; clear: both; text-align: center; }
#preview-body .article-content figure.fig-full { width: 100%; margin: 28px 0; clear: both; }
#preview-body .article-content figure img { max-width: 100%; height: auto; border-radius: 10px; display: block; }
#preview-body .article-content figcaption { font-size: 13px; color: #666; margin-top: 6px; font-style: italic; }
#preview-body .article-content::after { content: ''; display: block; clear: both; }
#preview-body .back-link { display: block; width: fit-content; margin: 32px auto 0; }
body.preview-open > header, body.preview-open > footer { display: none !important; }

/* Drafty – list view layout */
#list-view { padding-top: 140px; padding-bottom: 60px; background: var(--bg-light); }
#list-view .container { max-width: 960px; }
#list-view .drafty-label { font-size: 14px; font-weight: var(--fw-semibold); color: var(--green); margin-bottom: 4px; }
#list-view .drafty-heading { font-size: 32px; font-weight: 700; margin: 0 0 12px; color: var(--dark); }

/* Drafty – source editor rows */
.source-row { display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start; }
.source-row input { flex: 1; min-width: 0; padding: 9px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.source-row input:focus { border-color: #009472; box-shadow: 0 0 0 3px rgba(0,148,114,0.1); outline: none; }
.source-row .btn-remove-source { flex-shrink: 0; padding: 9px 12px; border: 1px solid #ddd; border-radius: 8px; background: #fff; color: #999; font-size: 13px; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.source-row .btn-remove-source:hover { border-color: #ef5350; color: #ef5350; }
.btn-add-source { margin-top: 2px; padding: 7px 16px; border-radius: 20px; border: 1px dashed #009472; background: transparent; color: #009472; font-size: 13px; font-weight: var(--fw-semibold); cursor: pointer; transition: background 0.2s; }
.btn-add-source:hover { background: #f0f9f7; }
.tags-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; min-height: 0; }
.tags-chips:empty { display: none; }
.tag-chip { display: inline-flex; align-items: center; gap: 4px; background: #f0f9f7; color: #009472; padding: 4px 10px 4px 12px; border-radius: 16px; font-size: 13px; border: 1px solid #d0ede6; line-height: 1.4; }
.tag-chip-remove { background: none; border: none; color: #009472; cursor: pointer; font-size: 15px; padding: 0 2px; line-height: 1; opacity: 0.6; transition: opacity 0.15s; }
.tag-chip-remove:hover { opacity: 1; }
.article-source { margin-top: 28px; display: flex; align-items: baseline; gap: 8px; font-size: 13px; color: #888; flex-wrap: wrap; }
.article-source-label { font-weight: var(--fw-semibold); color: #555; white-space: nowrap; }
.article-source-links { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.article-source-sep { color: #bbb; }
.article-source-link { display: inline-flex; align-items: center; gap: 4px; color: #009472; text-decoration: none; font-weight: var(--fw-medium); }
.article-source-icon { flex-shrink: 0; margin-left: 2px; }


.trends-dashboard { max-width: 100%; }
.trends-meta { color: #666; font-size: 14px; margin-bottom: 24px; }
.trends-section { margin-bottom: 40px; }
.trends-section h3 { color: #009472; margin-bottom: 16px; font-size: 18px; }

.trend-card {
  background: #fff; border: 1px solid #e0e0e0; border-radius: 10px;
  padding: 16px 20px; margin-bottom: 12px; transition: box-shadow 0.2s;
}
.trend-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.trend-card.aligned { border-left: 4px solid #009472; }

.trend-card-header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 12px; align-items: start;
}
.trend-card-header .trend-query { grid-column: 1; grid-row: 1; margin-bottom: 0; min-width: 0; }
.trend-card-header .trend-meta { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.trend-generate-wrap {
  grid-column: 2; grid-row: 1 / -1;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  flex-shrink: 0; min-width: 180px; max-width: 260px;
}

.generate-status { font-size: 12px; color: #009472; text-align: right; word-break: break-word; line-height: 1.35; }
.generate-status.error { color: #c62828; }
.generate-status-disabled { font-size: 12px; color: #888; font-style: italic; }
.generate-status a { color: #009472; font-weight: var(--fw-semibold); text-decoration: underline; cursor: pointer; }
.generate-status a:hover { color: #013B2D; text-decoration: underline; }

.trend-query { font-weight: var(--fw-semibold); font-size: 16px; }
.trend-meta { font-size: 13px; color: #555; margin-bottom: 8px; }
.trend-meta span { margin-right: 12px; }
.trend-badge { display: inline-block; background: #009472; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 11px; margin-left: 8px; }
.trend-link { margin-top: 10px; }
.trend-link a { color: #009472; font-size: 13px; }

.pubmed-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pubmed-table th,
.pubmed-table td { padding: 8px 12px; text-align: left; border-bottom: 1px solid #eee; }
.pubmed-table th { color: #009472; font-weight: var(--fw-semibold); }
.pubmed-table .cat-oncology { color: #c62828; }

.trends-loading, .trends-error { padding: 40px; text-align: center; color: #666; }
.trends-error { color: #c62828; }

.trends-refresh { margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trends-refresh button {
  padding: 0 20px; height: 44px; border-radius: 22px;
  background: #009472; color: #fff; border: none;
  font-weight: var(--fw-semibold); font-size: 16px; line-height: 44px;
  cursor: pointer; display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}
.trends-refresh button:hover { transform: translateY(-5px); opacity: 0.9; color: #fff; }
.trends-refresh .btn-to-drafty {
  padding: 0 20px; height: 44px; border-radius: 22px;
  background: #fff; color: #009472; border: 1px solid #009472;
  font-weight: var(--fw-semibold); font-size: 14px; line-height: 42px;
  display: inline-flex; align-items: center; text-decoration: none;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}
.trends-refresh .btn-to-drafty:hover { background: #009472; color: #fff; transform: translateY(-5px); opacity: 0.95; }

.trends-run-header { background: #f0f9f7; border-left: 4px solid #009472; padding: 12px 16px; margin-bottom: 24px; border-radius: 0 8px 8px 0; font-size: 15px; }
.trends-period { margin-top: 8px; font-size: 13px; color: #555; }

.scoring-box { background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 10px; padding: 20px; margin-top: 32px; }
.scoring-box h3 { color: #009472; font-size: 16px; margin-bottom: 12px; }
.scoring-box ul { margin: 0 0 12px 0; padding-left: 20px; }
.scoring-box p { margin: 0 0 12px 0; font-size: 14px; color: #444; line-height: 1.5; }
.scoring-box p:last-child { margin-bottom: 0; }
.scoring-detail { font-size: 13px; color: #666; margin-top: 12px !important; }

.btn-articles {
  padding: 0 20px; height: 44px; border-radius: 22px;
  background: #fff; color: #009472; border: 1px solid #009472;
  font-weight: var(--fw-semibold); font-size: 14px; line-height: 42px;
  cursor: pointer; display: inline-block; margin-top: 8px;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}
.btn-articles:hover { background: #009472; color: #fff; transform: translateY(-5px); opacity: 0.95; }

.btn-generate-post {
  padding: 0 20px; height: 44px; border-radius: 22px;
  background: #009472; color: #fff; border: none;
  font-weight: var(--fw-semibold); font-size: 14px; line-height: 44px;
  cursor: pointer; display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-generate-post:hover { transform: translateY(-5px); opacity: 0.9; color: #fff; }
.btn-generate-post:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.articles-list { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid #eee; }
.articles-list.open { display: block; }
.article-item { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.article-item:last-child { border-bottom: none; }
.article-title { font-weight: var(--fw-semibold); font-size: 14px; color: #333; }
.article-title a { color: #009472; text-decoration: none; }
.article-title a:hover { text-decoration: underline; }
.article-source-url { font-size: 12px; color: #777; margin-top: 2px; word-break: break-all; }
.article-source-url a { color: #777; text-decoration: none; }
.article-source-url a:hover { text-decoration: underline; color: #009472; }
.article-snippet { font-size: 13px; color: #555; margin-top: 4px; line-height: 1.5; max-height: 80px; overflow: hidden; transition: max-height 0.3s; }
.article-snippet.expanded { max-height: none; }
.btn-expand-snippet {
  background: none; border: none; color: #009472;
  font-size: 14px; font-weight: var(--fw-semibold); cursor: pointer;
  padding: 4px 0; margin-top: 4px;
}
.btn-expand-snippet:hover { text-decoration: underline; }
.article-count { font-size: 12px; color: #888; margin-left: 6px; }
.article-links { margin-top: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.article-link-pdf {
  display: inline-block; background: #009472; color: #fff;
  padding: 6px 14px; border-radius: 22px;
  font-size: 12px; font-weight: var(--fw-semibold); text-decoration: none;
  letter-spacing: 0.02em; transition: background 0.2s, transform 0.2s;
}
.article-link-pdf:hover { background: #013B2D; color: #fff; transform: translateY(-2px); }

.btn-generate-from-article {
  padding: 4px 12px; height: auto; line-height: 1.4; border-radius: 5px;
  font-size: 12px; font-weight: var(--fw-semibold);
  border: 1px solid #009472; background: #fff; color: #009472; cursor: pointer;
}
.btn-generate-from-article:hover { background: #f0f9f7; }
.btn-generate-from-article:disabled { opacity: 0.7; cursor: not-allowed; }
.generate-status-inline { font-size: 12px; margin-left: 4px; }


.component-demo {
  background: #fff; border: 1px solid #ddd; border-radius: 10px;
  padding: 30px; margin-bottom: 40px;
}
.code-block {
  background: #f5f5f5; border: 1px solid #ddd; border-radius: 5px;
  padding: 20px; margin-top: 20px; overflow-x: auto;
  font-family: 'Courier New', monospace; font-size: 14px;
}
.code-block pre { margin: 0; white-space: pre-wrap; word-wrap: break-word; }
.component-info { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; }
.component-info h4 { color: #009472; margin-bottom: 10px; }
.copy-btn {
  background: #009472; color: #fff; border: none;
  padding: 8px 15px; border-radius: 5px; cursor: pointer;
  font-size: 12px; margin-top: 10px;
}
.copy-btn:hover { background: #013B2D; }


.marketing-helper-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

.upload-area {
  border: 2px dashed #009472; border-radius: 10px;
  padding: 40px; text-align: center; background: #F6F6F6;
  margin-bottom: 30px; cursor: pointer; transition: 0.15s linear;
}
.upload-area:hover { background: #e8f5f3; border-color: #013B2D; }
.upload-area.dragover { background: #d4f0ea; border-color: #009472; }

.result-box { background: #F6F6F6; border-radius: 10px; padding: 30px; margin-top: 30px; }

.score-circle {
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700; margin: 0 auto 20px; border: 8px solid;
}
.score-high   { background: #009472; color: #fff; border-color: #013B2D; }
.score-medium { background: #ffa500; color: #fff; border-color: #ff8c00; }
.score-low    { background: #ff4444; color: #fff; border-color: #cc0000; }

.chat-container {
  max-height: 400px; overflow-y: auto; background: #fff;
  border-radius: 10px; padding: 20px; margin-top: 20px; border: 1px solid #ddd;
}
.chat-message { margin-bottom: 15px; padding: 12px; border-radius: 8px; }
.chat-message.user { background: #e8f5f3; text-align: right; }
.chat-message.assistant { background: #f0f0f0; }

.input-group { margin-top: 20px; }
.input-group input {
  border-radius: 22px; border: 1px solid #009472; padding: 12px 20px;
}
.input-group button {
  border-radius: 22px; background: #009472; color: #fff;
  border: none; padding: 12px 30px; font-weight: var(--fw-semibold);
}
.input-group button:hover { background: #013B2D; }

.loading { text-align: center; padding: 20px; color: #009472; }
.tip-box {
  background: #fff; border-left: 4px solid #009472;
  padding: 15px; margin-top: 20px; border-radius: 5px;
}

.z-content-box-1-1 .text a:hover {
  color: #009472 !important;
  transform: translateX(5px);
}


.media-category { margin-bottom: 60px; }
.media-item {
  background: #fff; border: 1px solid #ddd; border-radius: 10px;
  padding: 20px; margin-bottom: 20px;
  transition: transform 0.15s linear, box-shadow 0.15s linear;
}
.media-item:hover { transform: translateY(-5px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.media-preview { max-width: 100%; height: auto; border-radius: 5px; margin-bottom: 15px; }
.media-info h4 { color: #009472; margin-bottom: 10px; }
.media-download {
  display: inline-block; background: #009472; color: #fff;
  padding: 8px 15px; border-radius: 5px; text-decoration: none;
  font-size: 14px; margin-top: 10px;
}
.media-download:hover { background: #013B2D; color: #fff; }
.media-file-info { font-size: 12px; color: #666; margin-top: 5px; }


.x-compare-hero {
  background: #fff;
  padding: 140px 24px 64px;
  text-align: center;
}
.x-compare-hero h1,
.x-compare-hero h2 {
  font-size: 52px;
  font-weight: var(--fw-semibold);
  letter-spacing: -.025em;
  line-height: 1.08;
  color: #1d1d1f;
  margin-bottom: 14px;
}
.x-compare-hero .txt {
  font-size: 17px;
  line-height: 1.47;
  color: #86868b;
  margin: 0 auto;
  max-width: 480px;
}

.x-compare-section {
  padding: 48px 0 96px;
  background: #fff;
  color: #1d1d1f;
}

.x-compare-loading,
.x-compare-error {
  padding: 72px 24px;
  text-align: center;
  font-size: 17px;
  color: #86868b;
}
.x-compare-error { color: #c0392b; }
.x-compare-empty {
  padding: 72px 32px;
  text-align: center;
  font-size: 17px;
  color: #86868b;
}

.x-compare-content-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.x-compare-align-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 40px;
  box-sizing: border-box;
}
.x-compare-label-spacer { display: none; }
.x-compare-pickers {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: flex-end;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.x-compare-picker-slot {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.x-compare-select {
  font-family: inherit;
  font-size: 15px;
  font-weight: var(--fw-regular);
  padding: 10px 40px 10px 14px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  width: 100%;
  background: #fff;
  color: #1d1d1f;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2386868b' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .15s;
}
.x-compare-select:hover { border-color: #86868b; }
.x-compare-select:focus {
  outline: none;
  border-color: #009472;
  box-shadow: 0 0 0 3px rgba(0,148,114,.15);
}

.x-compare-sticky-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid #d2d2d7;
  padding: 16px 0;
  transform: translateY(-120%);
  transition: transform .25s ease-out;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.x-compare-sticky-wrap.is-visible { transform: translateY(0); }
.x-compare-sticky-wrap .x-compare-align-row { margin-bottom: 0; }

.x-compare-table-wrap { box-sizing: border-box; overflow: hidden; }
.x-compare-table-fullwidth { width: 100%; box-sizing: border-box; }
.x-compare-table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.x-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.x-compare-table thead tr th {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid #d2d2d7;
  padding: 20px 16px 18px;
  vertical-align: middle;
  text-align: center;
}
.xth-product {
  border-top: 3px solid #009472;
  text-align: center;
  vertical-align: middle;
}

.xtd-label-full {
  padding: 20px 16px 4px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: #1d1d1f;
  text-align: left;
  border-bottom: none;
  background: #fff;
}
.xtr-label-row-first .xtd-label-full { padding-top: 8px; }
.xtd-section-label {
  padding: 32px 16px 6px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #86868b;
  border-top: 1px solid #d2d2d7;
  border-bottom: none;
  background: #fff;
  text-align: left;
}


.xcp-name {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  letter-spacing: -.01em;
  line-height: 1.3;
  color: #1d1d1f;
  margin-bottom: 5px;
}
.xcp-badge-unavail {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--fw-medium);
  padding: 5px 12px;
  border-radius: 6px;
  background: #fff3f0;
  color: #c0392b;
}


.media-file-info { font-size: 12px; color: #666; margin-top: 5px; }


.x-compare-hero {
  background: #fff;
  padding: 140px 24px 64px;
  text-align: center;
}
.x-compare-hero h1,
.x-compare-hero h2 {
  font-size: 52px;
  font-weight: var(--fw-semibold);
  letter-spacing: -.025em;
  line-height: 1.08;
  color: #1d1d1f;
  margin-bottom: 14px;
}
.x-compare-hero .txt {
  font-size: 17px;
  line-height: 1.47;
  color: #86868b;
  margin: 0 auto;
  max-width: 480px;
}

.x-compare-section {
  padding: 48px 0 96px;
  background: #fff;
  color: #1d1d1f;
}

.x-compare-loading,
.x-compare-error {
  padding: 72px 24px;
  text-align: center;
  font-size: 17px;
  color: #86868b;
}
.x-compare-error { color: #c0392b; }
.x-compare-empty {
  padding: 72px 32px;
  text-align: center;
  font-size: 17px;
  color: #86868b;
}

.x-compare-content-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.x-compare-align-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 40px;
  box-sizing: border-box;
}
.x-compare-label-spacer { display: none; }
.x-compare-pickers {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: flex-end;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.x-compare-picker-slot {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.x-compare-select {
  font-family: inherit;
  font-size: 15px;
  font-weight: var(--fw-regular);
  padding: 10px 40px 10px 14px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  width: 100%;
  background: #fff;
  color: #1d1d1f;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2386868b' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .15s;
}
.x-compare-select:hover { border-color: #86868b; }
.x-compare-select:focus {
  outline: none;
  border-color: #009472;
  box-shadow: 0 0 0 3px rgba(0,148,114,.15);
}

.x-compare-sticky-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid #d2d2d7;
  padding: 16px 0;
  transform: translateY(-120%);
  transition: transform .25s ease-out;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.x-compare-sticky-wrap.is-visible { transform: translateY(0); }
.x-compare-sticky-wrap .x-compare-align-row { margin-bottom: 0; }

.x-compare-table-wrap { box-sizing: border-box; overflow: hidden; }
.x-compare-table-fullwidth { width: 100%; box-sizing: border-box; }
.x-compare-table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.x-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.x-compare-table thead tr th {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid #d2d2d7;
  padding: 20px 16px 18px;
  vertical-align: middle;
  text-align: center;
}
.xth-product {
  border-top: 3px solid #009472;
  text-align: center;
  vertical-align: middle;
}

.xtd-label-full {
  padding: 20px 16px 4px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: #1d1d1f;
  text-align: left;
  border-bottom: none;
  background: #fff;
}
.xtr-label-row-first .xtd-label-full { padding-top: 8px; }
.xtd-section-label {
  padding: 32px 16px 6px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #86868b;
  border-top: 1px solid #d2d2d7;
  border-bottom: none;
  background: #fff;
  text-align: left;
}

.xcp-name {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  letter-spacing: -.01em;
  line-height: 1.3;
  color: #1d1d1f;
  margin-bottom: 5px;
}
.xcp-badge-unavail {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--fw-medium);
  padding: 5px 12px;
  border-radius: 6px;
  background: #fff3f0;
  color: #c0392b;
}

.xtr-section-first .xtd-section-label { border-top: none; padding-top: 24px; }
.x-compare-table .xtr-feature td {
  padding: 4px 16px 16px;
  border-bottom: 1px solid #d2d2d7;
  font-size: 15px;
}
.x-compare-table .xtr-feature:last-child td { border-bottom: none; }

.xtd-val { color: #1d1d1f; text-align: center; vertical-align: middle; }
.x-compare-table .xtr-feature.xtr-feature-desc .xtd-val { text-align: left; vertical-align: top; }
.xtd-val:has(.x-expand-wrap) { vertical-align: top; padding-top: 10px; }

.x-icon-check { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.x-icon-no { color: #c7c7cc; font-size: 20px; font-weight: 300; line-height: 1; }
.x-val-text { color: #1d1d1f; font-size: 15px; }
.x-val-price { font-size: 15px; font-weight: var(--fw-medium); color: #009472; white-space: nowrap; }
.x-val-price-legal { font-size: 11px; color: #86868b; margin-top: 4px; line-height: 1.3; }
.x-val-desc { color: #6e6e73; font-size: 14px; line-height: 1.45; }
.x-val-days { display: inline-flex; align-items: baseline; gap: 4px; }
.x-val-days strong { font-size: 20px; font-weight: var(--fw-semibold); color: #1d1d1f; letter-spacing: -.02em; }
.x-val-days span { font-size: 13px; color: #86868b; }

.x-expand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.x-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: #009472;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.x-expand-btn:hover { text-decoration: underline; }
.x-expand-arrow { flex-shrink: 0; transition: transform .2s ease; }
.x-expand-btn.is-open .x-expand-arrow { transform: rotate(180deg); }
.x-expand-body {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  background: #f5f5f7;
  border-radius: 8px;
  font-size: 13px;
  color: #1d1d1f;
  text-align: left;
}
.x-expand-body ul { margin: 0; padding-left: 16px; line-height: 1.7; }
.x-expand-body li { margin-bottom: 2px; }

@media (max-width: 767px) {
  .x-compare-hero { padding: 100px 16px 40px; }
  .x-compare-hero h1 { font-size: 32px; }
  .x-compare-hero .txt { font-size: 15px; }
  .x-compare-section { padding: 32px 0 56px; }
  .x-compare-content-box { padding: 0 16px; }
  .x-compare-table thead tr th { padding: 14px 10px 12px; }
  .x-compare-table .xtr-feature td { padding: 4px 10px 14px; font-size: 14px; }
  .xtd-label-full { padding: 16px 10px 4px; font-size: 13px; }
  .xtd-section-label { padding: 24px 10px 6px; }
  .xcp-name { font-size: 13px; }
  .x-compare-select { font-size: 14px; padding: 9px 32px 9px 12px; }
}
