@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --sybel-navy: #2b1512;
  --sybel-navy-2: #5a2118;
  --sybel-blue: #ff4a24;
  --sybel-blue-dark: #df251c;
  --sybel-cyan: #ffb22e;
  --sybel-gold: #ffc342;
  --sybel-ink: #201416;
  --sybel-muted: #74656a;
  --sybel-line: #f0ddd3;
  --sybel-soft: #fff7f0;
  --sybel-white: #ffffff;
  --sybel-radius: 8px;
  --sybel-shadow: 0 18px 45px rgba(74, 18, 9, 0.13);
  --sybel-container: 1680px;
  --sybel-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sybel-font-heading: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Sybel Blog */
.blog-page,
.blog-detail {
  background: #ffffff;
}

.blog-hero,
.blog-detail__hero {
  padding: 78px 0 54px;
  border-bottom: 1px solid var(--sybel-line);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 178, 46, 0.2), transparent 28%),
    radial-gradient(circle at 14% 16%, rgba(255, 74, 36, 0.11), transparent 28%),
    linear-gradient(135deg, #fff9f4, #ffffff);
}

.blog-hero h1,
.blog-detail__hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--sybel-font-heading);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--sybel-ink);
}

.blog-hero p:not(.sybel-eyebrow),
.blog-detail__subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--sybel-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.blog-featured {
  padding: 42px 0 0;
}

.blog-featured__label {
  margin-bottom: 14px;
  color: var(--sybel-blue);
  font-family: var(--sybel-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: 46px 0 70px;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background: var(--sybel-white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 74, 36, 0.34);
  box-shadow: var(--sybel-shadow);
}

.blog-card--featured {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  background: #fff1e2;
}

.blog-card--featured .blog-card__image {
  aspect-ratio: auto;
  min-height: 320px;
}

.blog-card__image img,
.blog-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.blog-card__category {
  width: fit-content;
  color: var(--sybel-blue);
  font-family: var(--sybel-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin: 0;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.28;
}

.blog-card--featured h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.14;
}

.blog-card p {
  margin: 0;
  color: var(--sybel-muted);
  line-height: 1.7;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  color: var(--sybel-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.blog-card .blog-meta {
  margin-top: 0;
}

.blog-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 14px;
  border-radius: 50%;
  background: #f0b39f;
  vertical-align: middle;
}

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

.blog-search,
.blog-sidebar__panel {
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background: #fffaf6;
  box-shadow: 0 10px 28px rgba(74, 18, 9, 0.05);
}

.blog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
}

.blog-search input {
  min-width: 0;
  border: 0;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--sybel-ink);
  font: inherit;
}

.blog-search button {
  border: 0;
  padding: 0 16px;
  background: var(--sybel-blue);
  color: #ffffff;
  font-family: var(--sybel-font-heading);
  font-weight: 700;
}

.blog-sidebar__panel {
  padding: 22px;
}

.blog-sidebar__panel h2 {
  margin: 0 0 14px;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-size: 1.05rem;
  line-height: 1.25;
}

.blog-sidebar__panel p {
  margin: 0 0 16px;
  color: var(--sybel-muted);
}

.blog-sidebar__links,
.blog-tags {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar__link {
  color: var(--sybel-ink);
  font-weight: 700;
}

.blog-sidebar__link:hover {
  color: var(--sybel-blue);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 74, 36, 0.22);
  border-radius: 999px;
  background: #fff4ec;
  color: var(--sybel-blue-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.blog-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  color: var(--sybel-muted);
}

.blog-layout .pager {
  display: flex;
  justify-content: center;
  margin: 34px 0 0;
}

.blog-layout .pager__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-layout .pager__item {
  margin: 0;
  padding: 0;
}

.blog-layout .pager__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 74, 36, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(74, 18, 9, 0.06);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.blog-layout .pager__item a:hover,
.blog-layout .pager__item.is-active a {
  border-color: var(--sybel-blue);
  background: var(--sybel-blue);
  color: #ffffff;
  transform: translateY(-1px);
}

.blog-layout .pager__item--next a,
.blog-layout .pager__item--last a,
.blog-layout .pager__item--previous a,
.blog-layout .pager__item--first a {
  min-width: 0;
  padding-inline: 16px;
}

.blog-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: 46px 0 70px;
}

.blog-detail__main {
  min-width: 0;
}

.blog-detail__image {
  max-height: 520px;
  border-radius: var(--sybel-radius);
  box-shadow: var(--sybel-shadow);
}

.blog-detail__content {
  max-width: 860px;
  margin-top: 34px;
  color: var(--sybel-ink);
  font-size: 1.04rem;
  line-height: 1.82;
}

.blog-detail__content p {
  margin: 0 0 22px;
}

.blog-detail__content h2,
.blog-detail__content h3 {
  margin: 34px 0 14px;
  font-family: var(--sybel-font-heading);
  line-height: 1.2;
}

.blog-detail__tags,
.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.blog-share span {
  color: var(--sybel-muted);
  font-weight: 700;
}

.blog-share a {
  color: var(--sybel-blue);
  font-weight: 700;
}

.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 32px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 195, 66, 0.28), transparent 28%),
    linear-gradient(135deg, #fff7ef, #ffffff);
}

.blog-cta h2 {
  margin: 0;
  font-family: var(--sybel-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.18;
}

.blog-related {
  padding-bottom: 74px;
}

@media (max-width: 1100px) {
  .blog-layout,
  .blog-detail__layout {
    grid-template-columns: 1fr;
  }

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

  .blog-card--featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .blog-hero,
  .blog-detail__hero {
    padding: 52px 0 36px;
  }

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

  .blog-card__body,
  .blog-sidebar__panel,
  .blog-cta {
    padding: 20px;
  }

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

  .blog-search {
    grid-template-columns: 1fr;
  }

  .blog-search button {
    min-height: 42px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--sybel-ink);
  background: var(--sybel-white);
  font-family: var(--sybel-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.sybel-btn,
.sybel-nav {
  font-family: var(--sybel-font-heading);
}

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

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

.sybel-container {
  width: min(100% - 32px, var(--sybel-container));
  margin-inline: auto;
}

/* Header and navigation */
.sybel-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 246, 0.94);
  border-bottom: 1px solid rgba(255, 74, 36, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(74, 18, 9, 0.06);
}

.sybel-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 74, 36, 0.7), rgba(255, 195, 66, 0.7), transparent);
}

.sybel-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 18px;
}

.sybel-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.sybel-logo img {
  width: 142px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.sybel-logo--footer {
  margin-bottom: 18px;
}

.sybel-logo--footer img {
  width: 152px;
}

.sybel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--sybel-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.sybel-nav a,
.sybel-nav .menu a {
  color: rgba(32, 20, 22, 0.78);
  transition: color 180ms ease;
}

.sybel-nav-item {
  position: relative;
}

.sybel-nav-item > a {
  display: inline-flex;
  align-items: center;
}

.sybel-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(255, 74, 36, 0.16);
  border-radius: var(--sybel-radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(74, 18, 9, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.sybel-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--sybel-ink);
  font-size: 0.86rem;
  line-height: 1.25;
  white-space: nowrap;
}

.sybel-dropdown a:hover {
  background: #fff3e8;
  color: var(--sybel-blue);
}

.sybel-nav-item:hover .sybel-dropdown,
.sybel-nav-item:focus-within .sybel-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.sybel-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  color: rgba(32, 20, 22, 0.5);
  transition: color 180ms ease, transform 180ms ease;
}

.sybel-caret svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sybel-nav-item:hover .sybel-caret,
.sybel-nav-item:focus-within .sybel-caret {
  color: var(--sybel-blue);
  transform: translateY(1px);
}

.sybel-search-form {
  display: inline-flex;
  align-items: center;
  width: 42px;
  height: 40px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition: width 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.sybel-search-form:focus-within {
  width: 220px;
  border-color: rgba(255, 74, 36, 0.26);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(74, 18, 9, 0.08);
}

.sybel-search-form input {
  width: 0;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: var(--sybel-ink);
  font: inherit;
  opacity: 0;
  transition: width 180ms ease, padding 180ms ease, opacity 180ms ease;
}

.sybel-search-form:focus-within input {
  width: 172px;
  padding-left: 14px;
  opacity: 1;
}

.sybel-search {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.sybel-search::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--sybel-ink);
  border-radius: 50%;
}

.sybel-search::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 8px;
  height: 2px;
  background: var(--sybel-ink);
  transform: rotate(45deg);
  transform-origin: left center;
}

.sybel-nav a:hover,
.sybel-nav .menu a:hover {
  color: var(--sybel-blue);
}

.sybel-nav .menu {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sybel-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 74, 36, 0.28);
  border-radius: var(--sybel-radius);
  background: transparent;
  cursor: pointer;
}

.sybel-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--sybel-ink);
}

.sybel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--sybel-blue);
  border-radius: var(--sybel-radius);
  background: linear-gradient(135deg, var(--sybel-blue), var(--sybel-cyan));
  color: var(--sybel-white);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sybel-btn span {
  margin-left: 6px;
}

.sybel-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--sybel-blue-dark), #ff8a23);
  border-color: var(--sybel-blue-dark);
  box-shadow: 0 14px 28px rgba(255, 74, 36, 0.28);
}

.sybel-btn--small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.sybel-btn--ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 74, 36, 0.3);
  color: var(--sybel-ink);
}

.sybel-btn--ghost:hover {
  background: #fff2e4;
  border-color: var(--sybel-blue);
  color: var(--sybel-blue-dark);
}

/* Hero */
.sybel-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 18px;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 178, 46, 0.28), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 74, 36, 0.12), transparent 26%),
    linear-gradient(135deg, #fff9f3 0%, #fff1e2 52%, #fffaf7 100%);
  color: var(--sybel-ink);
}

.sybel-hero-carousel {
  position: relative;
  min-height: 500px;
}

.sybel-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.sybel-hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.sybel-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: 34px;
}

.sybel-eyebrow {
  margin: 0 0 12px;
  color: var(--sybel-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sybel-hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--sybel-font-heading);
  font-size: clamp(2.45rem, 4vw, 3.95rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.sybel-hero h1 span {
  color: var(--sybel-cyan);
}

.sybel-hero__lead {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--sybel-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.sybel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.sybel-hero__visual {
  position: relative;
  min-height: 450px;
  margin-right: calc((100vw - min(100vw - 32px, var(--sybel-container))) / -2);
}

.sybel-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 249, 243, 0.72) 0%, rgba(255, 249, 243, 0.14) 30%, rgba(255, 74, 36, 0.08) 100%),
    radial-gradient(circle at 78% 28%, rgba(255, 195, 66, 0.16), transparent 24%);
  mix-blend-mode: normal;
}

.sybel-hero__visual > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  filter: saturate(1.04) contrast(1.01);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.sybel-hero-slide:not(.is-active) .sybel-hero__visual > img {
  visibility: hidden;
}

.sybel-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(45deg, rgba(255, 74, 36, 0.16) 25%, transparent 25% 50%, rgba(255, 178, 46, 0.12) 50% 75%, transparent 75%);
  background-size: auto, 34px 34px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  text-transform: uppercase;
}

.sybel-experience-card {
  position: absolute;
  z-index: 3;
  right: 86px;
  bottom: 88px;
  left: auto;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  width: 308px;
  padding: 18px;
  border-radius: var(--sybel-radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--sybel-ink);
  border: 1px solid rgba(255, 74, 36, 0.18);
  box-shadow: 0 20px 44px rgba(74, 18, 9, 0.14);
  backdrop-filter: blur(14px);
}

.sybel-experience-card strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sybel-blue);
  color: var(--sybel-white);
  font-size: 1.65rem;
  line-height: 1;
}

.sybel-experience-card span {
  font-weight: 700;
  line-height: 1.22;
}

.sybel-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100% - 32px, var(--sybel-container));
  margin: 12px auto 18px;
  padding-left: 0;
  position: relative;
  z-index: 4;
}

.sybel-carousel-arrow,
.sybel-carousel-dots button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 74, 36, 0.28);
  background: rgba(255, 255, 255, 0.82);
  color: var(--sybel-blue);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.sybel-carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-weight: 700;
}

.sybel-carousel-arrow:hover,
.sybel-carousel-dots button:hover,
.sybel-carousel-dots button.is-active {
  background: var(--sybel-blue);
  border-color: var(--sybel-blue);
  color: var(--sybel-white);
  transform: translateY(-1px);
}

.sybel-carousel-dots {
  display: flex;
  gap: 9px;
}

.sybel-carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
}

.sybel-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.sybel-feature-row div {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sybel-ink);
  font-weight: 800;
}

.sybel-feature-row span {
  width: 22px;
  height: 22px;
  border-radius: 99px;
  border: 2px solid var(--sybel-blue);
  background: transparent;
}

/* Shared content sections */
.sybel-section {
  padding: 56px 0;
}

.sybel-section--soft,
.sybel-logo-strip {
  background: var(--sybel-soft);
}

.sybel-section-heading {
  max-width: 620px;
  margin-bottom: 38px;
}

.sybel-section-heading--split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr) auto;
  align-items: end;
  max-width: none;
  gap: 34px;
}

.sybel-section-heading--split > p {
  margin: 0;
  color: var(--sybel-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.sybel-section-heading > p:not(.sybel-eyebrow) {
  margin: 16px 0 0;
  color: var(--sybel-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.sybel-section-heading h2,
.sybel-cta h2 {
  margin: 0;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.sybel-logo-strip {
  padding: 22px 0;
  border-bottom: 1px solid var(--sybel-line);
  background: #ffffff;
}

.sybel-logo-strip .sybel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.sybel-logo-strip p {
  margin: 0;
  color: var(--sybel-muted);
  font-weight: 700;
}

.sybel-client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 46px;
  color: #98a2b3;
  font-weight: 800;
  font-size: 1.35rem;
}

.sybel-section--industries {
  background: linear-gradient(135deg, #fffaf6, #ffffff);
  border-bottom: 1px solid var(--sybel-line);
}

.sybel-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sybel-industry-grid a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 74, 36, 0.16);
  border-radius: var(--sybel-radius);
  background: var(--sybel-white);
  color: var(--sybel-ink);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(74, 18, 9, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sybel-industry-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 74, 36, 0.34);
  box-shadow: var(--sybel-shadow);
}

.sybel-card-grid,
.sybel-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sybel-service-card,
.sybel-case-card {
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background: var(--sybel-white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sybel-service-card {
  min-height: 258px;
  padding: 30px;
}

.sybel-service-card:hover,
.sybel-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 74, 36, 0.34);
  box-shadow: var(--sybel-shadow);
}

.sybel-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: var(--sybel-radius);
  background: #fff0df;
  color: var(--sybel-blue);
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(255, 74, 36, 0.2);
}

.sybel-service-card h3,
.sybel-case-card h3 {
  margin: 0 0 12px;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
}

.sybel-service-card p,
.sybel-case-card p {
  margin: 0;
  color: var(--sybel-muted);
}

.sybel-service-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--sybel-blue);
  font-weight: 700;
}

/* Product cards use the existing card language with denser feature lists. */
.sybel-section--products {
  background: var(--sybel-white);
}

.sybel-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sybel-product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background:
    linear-gradient(180deg, rgba(255, 247, 240, 0.82), rgba(255, 255, 255, 0.92));
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sybel-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 74, 36, 0.34);
  box-shadow: var(--sybel-shadow);
}

.sybel-product-card h3 {
  margin: 0 0 12px;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.28;
}

.sybel-product-card p {
  margin: 0;
  color: var(--sybel-muted);
}

.sybel-product-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 26px;
  padding: 0;
  color: var(--sybel-ink);
  font-weight: 800;
  list-style: none;
}

.sybel-product-card li {
  position: relative;
  padding-left: 24px;
}

.sybel-product-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sybel-blue);
  box-shadow: 0 0 0 4px rgba(255, 74, 36, 0.12);
}

.sybel-product-card .sybel-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Stats and case studies */
.sybel-stats {
  padding: 68px 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 74, 36, 0.12), transparent 20%),
    radial-gradient(circle at 86% 50%, rgba(255, 178, 46, 0.18), transparent 22%),
    linear-gradient(135deg, #fff6ee, #ffffff);
  color: var(--sybel-ink);
  border-block: 1px solid var(--sybel-line);
}

.sybel-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sybel-stats__grid div {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  align-items: center;
  gap: 18px;
  padding: 8px 26px;
  text-align: left;
}

.sybel-stat-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.72), transparent 34%),
    rgba(255, 74, 36, 0.12);
  border: 1px solid rgba(255, 178, 46, 0.24);
  box-shadow: 0 12px 28px rgba(255, 74, 36, 0.11);
}

.sybel-stat-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--sybel-blue);
}

.sybel-stats__grid strong {
  grid-area: number;
  display: block;
  color: var(--sybel-blue);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.sybel-stats__grid div > span:not(.sybel-stat-icon) {
  grid-area: label;
  display: block;
  margin-top: -12px;
  color: var(--sybel-muted);
  font-weight: 600;
}

.sybel-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sybel-case-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--sybel-radius) var(--sybel-radius) 0 0;
  background: var(--sybel-navy);
}

.sybel-case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 11, 18, 0.12), rgba(255, 74, 36, 0.16));
  pointer-events: none;
}

.sybel-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.sybel-case-card:hover .sybel-case-image img {
  transform: scale(1.04);
}

.sybel-case-card__body {
  position: relative;
  padding: 26px 74px 28px 26px;
}

.sybel-case-card__body > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sybel-blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sybel-arrow {
  position: absolute;
  left: 26px;
  top: -21px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sybel-blue);
  color: var(--sybel-white);
  font-size: 1.4rem;
  transition: transform 180ms ease, background 180ms ease;
}

.sybel-case-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.sybel-case-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd9c8;
}

.sybel-case-dots span:first-child {
  background: var(--sybel-blue);
}

.sybel-arrow:hover {
  transform: translateX(3px);
  background: var(--sybel-blue-dark);
}

.sybel-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sybel-blog-card {
  padding: 30px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background: var(--sybel-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sybel-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 74, 36, 0.34);
  box-shadow: var(--sybel-shadow);
}

.sybel-blog-card span {
  color: var(--sybel-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sybel-blog-card h3 {
  margin: 12px 0;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
}

.sybel-blog-card p {
  margin: 0;
  color: var(--sybel-muted);
}

.sybel-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px;
  border-radius: var(--sybel-radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 195, 66, 0.3), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(255, 74, 36, 0.14), transparent 28%),
    linear-gradient(135deg, #fff7ef, #ffffff);
  color: var(--sybel-ink);
  border: 1px solid var(--sybel-line);
  box-shadow: var(--sybel-shadow);
}

.sybel-btn--outline {
  background: var(--sybel-white);
  border-color: rgba(255, 74, 36, 0.46);
  color: var(--sybel-blue);
}

.sybel-btn--outline:hover {
  color: var(--sybel-white);
}

.sybel-cta h2 {
  color: var(--sybel-ink);
}

.sybel-cta p:not(.sybel-eyebrow) {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--sybel-muted);
}

.sybel-region-space {
  margin-top: 34px;
}

.sybel-page-content {
  background: var(--sybel-white);
}

/* Rich landing pages rendered from Drupal content. */
.sybel-rich-page {
  display: grid;
  gap: 54px;
}

.sybel-rich-page h1,
.sybel-rich-page h2,
.sybel-rich-page h3 {
  margin: 0;
  color: var(--sybel-ink);
  font-family: var(--sybel-font-heading);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.sybel-rich-page p {
  margin: 0;
  color: var(--sybel-muted);
}

.sybel-rich-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 42px;
  padding: 48px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 195, 66, 0.32), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(255, 74, 36, 0.14), transparent 26%),
    linear-gradient(135deg, #fff8f0, #ffffff);
  box-shadow: var(--sybel-shadow);
}

.sybel-rich-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4vw, 3.95rem);
  line-height: 1.08;
}

.sybel-rich-hero .sybel-rich-lead {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.sybel-rich-hero__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--sybel-radius);
  background: #fff1e2;
  box-shadow: 0 20px 42px rgba(74, 18, 9, 0.12);
}

.sybel-rich-hero__image img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.sybel-rich-hero__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 74, 36, 0.18);
  border-radius: var(--sybel-radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--sybel-ink);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(74, 18, 9, 0.12);
}

.sybel-rich-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.sybel-rich-section {
  display: grid;
  gap: 24px;
}

.sybel-rich-section--soft {
  padding: 42px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background: linear-gradient(135deg, #fffaf6, #ffffff);
}

.sybel-rich-section--soft .sybel-rich-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  gap: 18px 28px;
}

.sybel-rich-kicker {
  margin-bottom: -10px;
  color: var(--sybel-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sybel-rich-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.sybel-rich-copy {
  display: grid;
  gap: 14px;
  max-width: 960px;
}

.sybel-rich-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  align-items: stretch;
  gap: 42px;
}

.sybel-rich-overview-grid .sybel-rich-copy {
  max-width: none;
}

.sybel-rich-overview-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 195, 66, 0.3), transparent 28%),
    linear-gradient(135deg, #fff7ef, #ffffff);
  box-shadow: var(--sybel-shadow);
}

.sybel-rich-overview-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.sybel-rich-overview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 46%, rgba(32, 20, 22, 0.32)),
    radial-gradient(circle at 18% 18%, rgba(255, 74, 36, 0.12), transparent 30%);
}

.sybel-rich-overview-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--sybel-radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--sybel-ink);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(74, 18, 9, 0.12);
}

.sybel-quick-answer {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 28px;
  padding: 30px;
  border-left: 5px solid var(--sybel-blue);
  border-radius: var(--sybel-radius);
  background: #fff7f0;
}

.sybel-quick-answer ul,
.sybel-rich-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sybel-quick-answer li,
.sybel-rich-list li {
  position: relative;
  padding-left: 24px;
  color: var(--sybel-muted);
}

.sybel-quick-answer li::before,
.sybel-rich-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sybel-blue);
  box-shadow: 0 0 0 4px rgba(255, 74, 36, 0.12);
}

.sybel-feature-grid,
.sybel-benefit-grid,
.sybel-dashboard-grid,
.sybel-related-grid,
.sybel-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sybel-feature-card,
.sybel-benefit-card,
.sybel-dashboard-card,
.sybel-related-card,
.sybel-faq-item {
  display: block;
  padding: 24px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background: var(--sybel-white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sybel-feature-card:hover,
.sybel-benefit-card:hover,
.sybel-dashboard-card:hover,
.sybel-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 74, 36, 0.34);
  box-shadow: var(--sybel-shadow);
}

.sybel-feature-card strong,
.sybel-benefit-card strong,
.sybel-dashboard-card strong,
.sybel-related-card strong,
.sybel-faq-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--sybel-ink);
  font-size: 1.05rem;
}

.sybel-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: var(--sybel-radius);
  background: #fff0df;
  color: var(--sybel-blue);
  font-weight: 800;
}

.sybel-workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  counter-reset: workflow;
}

.sybel-workflow-step {
  position: relative;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--sybel-line);
  border-radius: var(--sybel-radius);
  background: #ffffff;
  color: var(--sybel-ink);
  font-weight: 700;
}

.sybel-workflow-step::before {
  counter-increment: workflow;
  content: counter(workflow, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--sybel-blue);
  font-size: 0.82rem;
}

.sybel-faq-item {
  background: #fffaf6;
}

.sybel-related-card {
  display: block;
}

.sybel-rich-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: var(--sybel-radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 195, 66, 0.32), transparent 28%),
    linear-gradient(135deg, #fff7ef, #ffffff);
  border: 1px solid var(--sybel-line);
  box-shadow: var(--sybel-shadow);
}

.sybel-rich-cta p {
  margin-top: 12px;
  max-width: 760px;
}

/* Footer */
.sybel-footer {
  padding: 72px 0 36px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 195, 66, 0.2), transparent 26%),
    linear-gradient(180deg, #fff7f0, #ffffff);
  color: var(--sybel-muted);
  border-top: 1px solid var(--sybel-line);
}

.sybel-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 42px;
}

.sybel-footer h2 {
  margin: 0 0 18px;
  color: var(--sybel-ink);
  font-size: 1rem;
}

.sybel-footer p {
  margin: 0 0 10px;
}

.sybel-footer a:not(.sybel-logo):not(.sybel-social a) {
  display: block;
  margin-bottom: 10px;
  transition: color 180ms ease;
}

.sybel-footer a:hover {
  color: var(--sybel-blue);
}

.sybel-social-wrap {
  margin-top: 24px;
}

.sybel-social-wrap h2 {
  margin-bottom: 12px;
}

.sybel-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sybel-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 74, 36, 0.28);
  border-radius: 50%;
  background: var(--sybel-white);
  color: var(--sybel-blue);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(74, 18, 9, 0.08);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sybel-social a:hover {
  transform: translateY(-2px);
  border-color: var(--sybel-blue);
  background: linear-gradient(135deg, var(--sybel-blue), var(--sybel-cyan));
  color: var(--sybel-white);
  box-shadow: 0 12px 24px rgba(255, 74, 36, 0.18);
}

.sybel-footer__blocks {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--sybel-line);
}

.sybel-header-region {
  color: var(--sybel-ink);
}

@media (max-width: 1024px) {
  .sybel-header__inner {
    gap: 14px;
  }

  .sybel-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .sybel-search-form {
    display: none;
  }

  .sybel-social--header {
    display: none;
  }

  .sybel-hero__grid,
  .sybel-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sybel-section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sybel-card-grid,
  .sybel-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sybel-rich-hero,
  .sybel-quick-answer,
  .sybel-rich-overview-grid {
    grid-template-columns: 1fr;
  }

  .sybel-feature-grid,
  .sybel-benefit-grid,
  .sybel-dashboard-grid,
  .sybel-related-grid,
  .sybel-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sybel-workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .sybel-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .sybel-header__inner {
    min-height: 70px;
  }

  .sybel-menu-toggle {
    display: block;
    order: 3;
  }

  .sybel-header .sybel-btn--small {
    display: none;
  }

  .sybel-nav {
    position: absolute;
    inset: 70px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 74, 36, 0.18);
    border-radius: var(--sybel-radius);
    background: rgba(255, 250, 246, 0.98);
    box-shadow: var(--sybel-shadow);
  }

  .sybel-nav.is-open {
    display: flex;
  }

  .sybel-nav .menu {
    flex-direction: column;
    gap: 14px;
  }

  .sybel-nav-item {
    width: 100%;
  }

  .sybel-nav-item > a {
    width: 100%;
  }

  .sybel-dropdown {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-color: rgba(255, 74, 36, 0.12);
    background: #fff6ef;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .sybel-dropdown a {
    white-space: normal;
  }

  .sybel-hero {
    padding-top: 36px;
  }

  .sybel-hero-carousel {
    min-height: 0;
  }

  .sybel-carousel-controls {
    margin: 14px auto 18px;
  }

  .sybel-hero__grid,
  .sybel-product-grid,
  .sybel-case-grid,
  .sybel-blog-grid,
  .sybel-stats__grid,
  .sybel-footer__grid {
    grid-template-columns: 1fr;
  }

  .sybel-hero__visual {
    min-height: 380px;
    margin-right: 0;
  }

  .sybel-hero__visual img {
    height: 420px;
    border-radius: var(--sybel-radius);
    mask-image: linear-gradient(180deg, #000 0%, #000 100%);
  }

  .sybel-image-placeholder {
    min-height: 380px;
  }

  .sybel-experience-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .sybel-stats__grid div {
    grid-template-columns: 58px 1fr;
    padding-inline: 0;
  }

  .sybel-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .sybel-logo-strip .sybel-container,
  .sybel-cta,
  .sybel-rich-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sybel-client-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .sybel-container {
    width: min(100% - 24px, var(--sybel-container));
  }

  .sybel-section {
    padding: 64px 0;
  }

  .sybel-logo img {
    width: 124px;
  }

  .sybel-card-grid,
  .sybel-product-grid,
  .sybel-industry-grid,
  .sybel-feature-row {
    grid-template-columns: 1fr;
  }

  .sybel-carousel-controls {
    display: none;
  }

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

  .sybel-btn {
    width: 100%;
  }

  .sybel-cta {
    padding: 34px 24px;
  }

  .sybel-rich-page {
    gap: 38px;
  }

  .sybel-rich-hero,
  .sybel-rich-section--soft,
  .sybel-rich-cta {
    padding: 28px 20px;
  }

  .sybel-rich-overview-visual,
  .sybel-rich-overview-visual img {
    min-height: 280px;
  }

  .sybel-feature-grid,
  .sybel-benefit-grid,
  .sybel-dashboard-grid,
  .sybel-related-grid,
  .sybel-faq-grid,
  .sybel-workflow-steps {
    grid-template-columns: 1fr;
  }

  .sybel-rich-section--soft .sybel-rich-copy {
    grid-template-columns: 1fr;
  }

  .sybel-rich-actions .sybel-btn {
    width: 100%;
  }
}
