:root {
  --iseo-blue: #0a58d0;
  --iseo-blue-dark: #083b8b;
  --iseo-blue-soft: #eef5ff;
  --iseo-ink: #172335;
  --iseo-muted: #5d677c;
  --iseo-line: #d9e2f1;
  --iseo-bg: #f5f8fc;
  --iseo-card: #ffffff;
  --iseo-red: #d92d20;
  --iseo-header-bg: #f5f8fc;
  --iseo-hero-start: #0b57d0;
  --iseo-hero-end: #083a8c;
  --iseo-hero-card-bg: #ffffff;
  --iseo-media-bg-start: #f9fbff;
  --iseo-media-bg-end: #eef4ff;
  --iseo-soft-start: #f7faff;
  --iseo-soft-end: #edf4ff;
  --iseo-footer-start: #0f203f;
  --iseo-footer-end: #0a1730;
  --iseo-home-kicker-size: 12px;
  --iseo-home-hero-title-size: 52px;
  --iseo-home-hero-text-size: 17px;
  --iseo-home-highlight-title-size: 40px;
  --iseo-home-section-title-size: 40px;
  --iseo-home-card-title-size: 20px;
  --iseo-home-card-text-size: 15px;
  --iseo-home-copy-title-size: 28px;
  --iseo-home-cta-title-size: 40px;
  --iseo-radius: 24px;
  --iseo-shadow: 0 18px 50px rgba(10, 38, 84, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--iseo-ink);
  background: var(--iseo-bg);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: var(--iseo-blue-dark);
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.screen-reader-text:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--iseo-shadow);
  z-index: 99;
}

.iseo-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.iseo-main {
  display: block;
}

.iseo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 10px 0 12px;
  backdrop-filter: blur(18px);
  background: var(--iseo-header-bg);
  border-bottom: 1px solid var(--iseo-line);
  box-shadow: 0 10px 24px rgba(10, 38, 84, 0.04);
}

.iseo-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand cta"
    "nav nav";
  gap: 18px 22px;
  align-items: center;
  padding: 18px 22px 20px;
  min-height: 88px;
  border: 1px solid rgba(217, 226, 241, 0.92);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 255, 0.94) 100%);
  box-shadow: 0 16px 36px rgba(10, 38, 84, 0.08);
}

.iseo-header__inner--no-menu {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "brand cta";
}

.iseo-header__inner--no-cta {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "brand"
    "nav";
}

.iseo-header__inner--no-menu.iseo-header__inner--no-cta {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "brand";
}

.iseo-header__summary {
  display: none;
  margin: 0;
}

.iseo-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.iseo-brand__text {
  display: grid;
  flex: 1 1 auto;
  gap: 6px;
  min-width: 0;
}

.iseo-brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 18px;
}

.iseo-brand__logo .custom-logo-link {
  display: block;
}

.iseo-brand--has-logo .iseo-brand__logo {
  max-width: min(190px, 28vw);
  padding: 8px 10px;
  border: 1px solid rgba(217, 226, 241, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.iseo-brand__logo img {
  display: block;
  width: 100%;
  max-height: 56px;
}

.iseo-brand__title {
  display: inline-block;
  color: var(--iseo-ink);
  max-width: 100%;
  font-size: clamp(20px, 1.75vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  text-wrap: balance;
}

.iseo-brand--has-logo .iseo-brand__title {
  font-size: clamp(17px, 1.4vw, 21px);
}

.iseo-brand--has-logo .iseo-brand__text {
  max-width: 620px;
}

.iseo-brand__tagline {
  margin: 0;
  color: var(--iseo-muted);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.iseo-navigation {
  grid-area: nav;
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  justify-self: stretch;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 226, 241, 0.92);
}

.iseo-navigation__panel {
  display: contents;
}

.iseo-navigation__mobile-head,
.iseo-navigation__mobile-copy {
  display: none;
}

.iseo-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.iseo-menu li {
  display: flex;
}

.iseo-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--iseo-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 12px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.iseo-menu a:hover,
.current-menu-item > a,
.current_page_item > a {
  color: var(--iseo-blue-dark);
  background: var(--iseo-card);
  transform: translateY(-1px);
}

.iseo-header__cta {
  grid-area: cta;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  justify-self: end;
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--iseo-blue) 0%, var(--iseo-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(10, 56, 136, 0.18);
}

.iseo-header__cta span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.iseo-header__cta strong {
  font-size: 16px;
}

.iseo-menu-toggle {
  grid-area: toggle;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  min-width: 120px;
  padding: 0 18px;
  border: 1px solid var(--iseo-line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
  color: var(--iseo-ink);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(10, 38, 84, 0.08);
}

.iseo-menu-toggle::before {
  content: "";
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.iseo-menu-toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.iseo-menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.iseo-menu-toggle span {
  flex: 1 1 auto;
  text-align: left;
}

.iseo-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--iseo-blue-soft);
  color: var(--iseo-blue-dark);
  font-size: var(--iseo-home-kicker-size);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iseo-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.iseo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iseo-button:hover {
  transform: translateY(-2px);
}

.iseo-button--primary {
  background: linear-gradient(135deg, var(--iseo-blue) 0%, var(--iseo-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(10, 56, 136, 0.16);
}

.iseo-button--secondary {
  border: 1px solid #d6e5ff;
  background: var(--iseo-card);
  color: var(--iseo-blue-dark);
}

.iseo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.iseo-pill-list li {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.iseo-home-hero,
.iseo-page-hero {
  padding: 28px 0 0;
}

.iseo-home-hero__grid,
.iseo-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.iseo-home-hero__copy,
.iseo-page-hero__grid > div:first-child {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, var(--iseo-hero-start) 0%, var(--iseo-hero-end) 100%);
  color: #fff;
  box-shadow: var(--iseo-shadow);
}

.iseo-home-hero__copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 5vw, var(--iseo-home-hero-title-size));
  line-height: 1.08;
}

.iseo-page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
}

.iseo-home-hero__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--iseo-home-hero-text-size);
}

.iseo-page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.iseo-home-hero__card,
.iseo-page-hero__media {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--iseo-line);
  box-shadow: var(--iseo-shadow);
}

.iseo-home-hero__card {
  background: var(--iseo-hero-card-bg);
}

.iseo-page-hero__media {
  background: var(--iseo-card);
}

.iseo-home-hero__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--iseo-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iseo-home-hero__card h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, var(--iseo-home-highlight-title-size));
  line-height: 1.1;
  color: var(--iseo-blue-dark);
}

.iseo-home-hero__card p {
  margin: 0;
  color: var(--iseo-muted);
}

.iseo-stat-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.iseo-stat-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--iseo-blue-soft);
}

.iseo-stat-list strong {
  display: block;
  color: var(--iseo-blue-dark);
  font-size: 19px;
}

.iseo-stat-list span {
  display: block;
  margin-top: 4px;
  color: var(--iseo-muted);
  font-size: 14px;
}

.iseo-section {
  margin-top: 26px;
  padding: 30px;
  border: 1px solid var(--iseo-line);
  border-radius: 28px;
  background: var(--iseo-card);
  box-shadow: var(--iseo-shadow);
}

.iseo-section--soft {
  background: linear-gradient(135deg, var(--iseo-soft-start) 0%, var(--iseo-soft-end) 100%);
}

.iseo-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.iseo-section__heading h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, var(--iseo-home-section-title-size));
  line-height: 1.1;
}

.iseo-section__heading p {
  max-width: 620px;
  margin: 0;
  color: var(--iseo-muted);
}

.iseo-grid {
  display: grid;
  gap: 18px;
}

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

.iseo-grid-card {
  overflow: hidden;
  border: 1px solid var(--iseo-line);
  border-radius: 24px;
  background: var(--iseo-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iseo-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(10, 34, 80, 0.1);
}

.iseo-grid-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 18px;
  background: linear-gradient(180deg, var(--iseo-media-bg-start) 0%, var(--iseo-media-bg-end) 100%);
}

.iseo-grid-card__image {
  width: 100%;
  height: auto;
}

.iseo-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--iseo-blue-soft), var(--iseo-media-bg-end));
  color: var(--iseo-blue-dark);
  font-weight: 800;
  text-align: center;
}

.iseo-grid-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.iseo-grid-card__body h3 {
  margin: 0;
  font-size: var(--iseo-home-card-title-size);
  line-height: 1.4;
}

.iseo-grid-card__body p {
  margin: 0;
  color: var(--iseo-muted);
  font-size: var(--iseo-home-card-text-size);
}

.iseo-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--iseo-blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.iseo-inline-link::after {
  content: "→";
}

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

.iseo-copy-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 226, 241, 0.9);
}

.iseo-copy-card h2 {
  margin: 0 0 12px;
  font-size: var(--iseo-home-copy-title-size);
}

.iseo-copy-card p {
  margin: 0 0 12px;
  color: var(--iseo-muted);
}

.iseo-copy-card p:last-child {
  margin-bottom: 0;
}

.iseo-home-cta {
  padding: 0 0 36px;
}

.iseo-home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--iseo-soft-start) 0%, var(--iseo-soft-end) 100%);
  border: 1px solid var(--iseo-line);
  box-shadow: var(--iseo-shadow);
}

.iseo-home-cta__inner h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, var(--iseo-home-cta-title-size));
  line-height: 1.15;
}

.iseo-home-cta__inner p {
  margin: 0;
  max-width: 700px;
  color: var(--iseo-muted);
}

.iseo-breadcrumb {
  margin-bottom: 18px;
  color: var(--iseo-muted);
  font-size: 14px;
}

.iseo-breadcrumb a {
  color: var(--iseo-muted);
  text-decoration: none;
}

.iseo-breadcrumb__sep {
  margin: 0 6px;
}

.iseo-page-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iseo-page-layout {
  padding: 26px 0 36px;
}

.iseo-page-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.iseo-article,
.iseo-sidebar-card {
  border-radius: 26px;
  border: 1px solid var(--iseo-line);
  background: var(--iseo-card);
  box-shadow: var(--iseo-shadow);
}

.iseo-article {
  padding: 30px;
}

.iseo-content h2,
.iseo-sitemap-section h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.2;
}

.iseo-content h2:first-child {
  margin-top: 0;
}

.iseo-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
}

.iseo-content p,
.iseo-content li,
.iseo-sitemap-section p {
  color: var(--iseo-ink);
  font-size: 16px;
}

.iseo-content ul,
.iseo-content ol {
  padding-left: 20px;
}

.iseo-content p + ul,
.iseo-content p + ol {
  margin-top: 12px;
}

.iseo-sidebar {
  display: grid;
  gap: 18px;
}

.iseo-sidebar-card {
  padding: 22px;
}

.iseo-sidebar-card h2,
.iseo-sidebar-card h3 {
  margin: 10px 0 10px;
  line-height: 1.2;
}

.iseo-sidebar-card p {
  margin: 0;
  color: var(--iseo-muted);
}

.iseo-sidebar-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.iseo-sidebar-links,
.iseo-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.iseo-sidebar-links a,
.iseo-footer__list a {
  color: var(--iseo-blue-dark);
  text-decoration: none;
}

.iseo-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.iseo-contact-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--iseo-blue-soft);
}

.iseo-contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--iseo-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.iseo-contact-card a {
  color: var(--iseo-blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.iseo-link-columns {
  columns: 3 220px;
  column-gap: 22px;
}

.iseo-link-columns a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--iseo-blue-dark);
}

.iseo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--iseo-blue-soft);
  color: var(--iseo-blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.iseo-footer {
  margin-top: 18px;
  padding: 34px 0 22px;
  background: linear-gradient(135deg, var(--iseo-footer-start) 0%, var(--iseo-footer-end) 100%);
  color: #fff;
}

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

.iseo-footer__card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.iseo-footer__card h2,
.iseo-footer__card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #fff;
}

.iseo-footer__card p,
.iseo-footer__card a {
  color: rgba(255, 255, 255, 0.86);
}

.iseo-footer__phone {
  display: inline-block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.iseo-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.iseo-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.iseo-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.iseo-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.iseo-footer__menu a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 1080px) {
  .iseo-grid--three,
  .iseo-copy-grid,
  .iseo-footer__grid,
  .iseo-contact-cards,
  .iseo-page-layout__grid,
  .iseo-home-hero__grid,
  .iseo-page-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .iseo-page-layout__grid {
    grid-template-columns: 1fr;
  }

  .iseo-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    gap: 14px 18px;
  }

  .iseo-brand {
    gap: 14px;
  }

  .iseo-header__inner--no-menu {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand cta";
  }

  .iseo-header__inner--no-cta {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "nav";
  }

  .iseo-header__inner--no-menu.iseo-header__inner--no-cta {
    grid-template-areas: "brand";
  }

  .iseo-menu {
    gap: 10px 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .iseo-header {
    position: static;
    padding: 8px 0 10px;
    backdrop-filter: none;
  }

  .iseo-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand"
      "toggle cta"
      "nav nav";
    gap: 12px 12px;
    padding: 16px 16px 18px;
    border-radius: 26px;
  }

  .iseo-header__inner--no-menu {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand cta";
  }

  .iseo-header__inner--no-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
  }

  .iseo-header__inner--no-menu.iseo-header__inner--no-cta {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "brand";
  }

  .iseo-brand__title {
    white-space: normal;
  }

  .iseo-brand--has-logo .iseo-brand__logo {
    max-width: min(170px, 42vw);
  }

  .iseo-menu-toggle {
    display: inline-flex;
    width: 100%;
  }

  .iseo-navigation {
    position: static;
    display: none;
    overflow: visible;
    padding: 14px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-top: 1px solid rgba(217, 226, 241, 0.92);
    z-index: auto;
  }

  .iseo-navigation.is-open {
    display: block;
  }

  .iseo-navigation__panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 18px 18px 16px;
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
      linear-gradient(180deg, #15273f 0%, #0a1528 100%);
    color: #fff;
    box-shadow: 0 28px 70px rgba(8, 36, 86, 0.3);
  }

  .iseo-navigation__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 4px;
  }

  .iseo-navigation__eyebrow {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .iseo-navigation__close {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .iseo-navigation__close-icon,
  .iseo-navigation__close-icon::before {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
  }

  .iseo-navigation__close-icon {
    transform: rotate(45deg);
  }

  .iseo-navigation__close-icon::before {
    position: absolute;
    inset: 0;
    transform: rotate(90deg);
  }

  .iseo-navigation__close-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .iseo-navigation__mobile-copy {
    display: grid;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .iseo-navigation__mobile-copy strong {
    font-size: 22px;
    line-height: 1.15;
  }

  .iseo-navigation__mobile-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
  }

  .iseo-menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .iseo-menu li {
    width: 100%;
  }

  .iseo-menu a {
    justify-content: space-between;
    min-height: 50px;
    padding: 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .iseo-menu a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.72);
    border-right: 2px solid rgba(255, 255, 255, 0.72);
    transform: rotate(45deg);
    opacity: 1;
  }

  .iseo-menu a:hover,
  .iseo-menu .current-menu-item > a,
  .iseo-menu .current_page_item > a {
    background: transparent;
    color: #ffffff;
    transform: none;
  }

}

@media (max-width: 720px) {
  .iseo-shell {
    width: min(100% - 20px, 1120px);
  }

  .iseo-home-hero__grid,
  .iseo-page-hero__grid,
  .iseo-grid--three,
  .iseo-copy-grid,
  .iseo-footer__grid,
  .iseo-contact-cards {
    grid-template-columns: 1fr;
  }

  .iseo-section,
  .iseo-article,
  .iseo-home-hero__copy,
  .iseo-home-hero__card,
  .iseo-page-hero__media,
  .iseo-home-cta__inner {
    padding: 22px;
    border-radius: 22px;
  }

  .iseo-section__heading,
  .iseo-home-cta__inner,
  .iseo-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .iseo-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand"
      "toggle cta"
      "summary summary"
      "nav nav";
    gap: 10px;
    min-height: 76px;
  }

  .iseo-header__inner--no-menu {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "summary summary";
  }

  .iseo-header__inner--no-cta {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "toggle"
      "summary"
      "nav";
   }

  .iseo-header__inner--no-menu.iseo-header__inner--no-cta {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "summary";
  }

  .iseo-brand__tagline,
  .iseo-header__cta span {
    display: none;
  }

  .iseo-brand {
    padding: 10px 12px;
  }

  .iseo-brand--has-logo {
    justify-content: center;
  }

  .iseo-brand--has-logo .iseo-brand__text {
    display: none;
  }

  .iseo-brand--has-logo .iseo-brand__logo {
    max-width: min(220px, 62vw);
  }

  .iseo-header__summary {
    display: block;
    grid-area: summary;
    color: var(--iseo-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    text-wrap: balance;
  }

  .iseo-header__cta {
    min-height: 58px;
    padding: 12px 16px;
    align-items: center;
    justify-content: center;
  }

  .iseo-menu-toggle {
    min-width: 0;
  }

}

@media (max-width: 860px) and (max-height: 640px) {
  .iseo-navigation__panel {
    gap: 12px;
    padding: 16px 16px 12px;
    border-radius: 24px;
  }

  .iseo-navigation__mobile-copy p {
    display: none;
  }

  .iseo-navigation__mobile-copy strong {
    font-size: 18px;
  }

  .iseo-menu a {
    min-height: 42px;
    font-size: 18px;
  }
}
