:root {
  --teal: #0093a3;
  --teal-dark: #007f8d;
  --teal-soft: #e2f7f7;
  --orange: #ff9801;
  --orange-soft: #fff3e3;
  --pink: #ff627e;
  --pink-soft: #ffe8ee;
  --mint: #13b7aa;
  --ink: #303030;
  --muted: #64748b;
  --line: #e8eef2;
  --bg: #f4f6f8;
  --white: #fff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, input { font: inherit; }
button { cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 48px, 1280px); margin: 0 auto; }
.narrow-container { width: min(100% - 48px, 920px); }
.skip-link, .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  clip: auto;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #edf2f7;
}
.header-inner {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto;
  max-width: 320px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  flex: 0 0 auto;
}
.brand strong {
  display: block;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 230px !important;
  max-height: 72px !important;
  object-fit: contain;
  object-position: left center;
}
.site-header .custom-logo,
.site-header .brand img {
  width: auto !important;
  height: auto !important;
  max-width: 230px !important;
  max-height: 72px !important;
  object-fit: contain;
  object-position: left center;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: var(--teal);
}
.brand-mark.large { width: 64px; height: 64px; border-radius: 24px; }
.brand-mark span {
  width: 32px;
  height: 32px;
  border: 6px solid var(--white);
  border-radius: 999px;
}
.brand-mark.large span { width: 36px; height: 36px; border-width: 7px; }
.brand-mark i {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--orange);
}
.brand-symbol {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: var(--teal);
}
.brand-symbol::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 27px;
  height: 27px;
  border: 6px solid var(--white);
  border-radius: 999px;
}
.brand-symbol::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--orange);
}
.main-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}
.main-nav button, .mobile-menu button, .footer-grid button {
  padding: 0;
  border: 0;
  background: transparent;
}
.main-nav button, .main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
}
.main-nav button:hover, .main-nav button.active, .main-nav a:hover, .main-nav a.active { color: var(--teal); opacity: 1; }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  margin-top: 0;
  margin-right: 0;
  flex: 0 0 auto;
}
.pill-button {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.08;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.pill-orange {
  position: relative;
  z-index: 1;
  min-width: 0;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid #ffe0ad;
}
.pill-pink {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin-left: 0;
  background: var(--pink-soft);
  color: var(--pink);
  border: 1px solid #ffc6d2;
}
.pill-primary {
  background: var(--teal);
  color: var(--white);
  border: 1px solid var(--teal);
  box-shadow: 0 14px 30px rgba(0, 147, 163, 0.22);
}
.mobile-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 18px;
  background: #f1f5f9;
  color: var(--ink);
}
.mobile-menu {
  width: min(100% - 48px, 1280px);
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}
.mobile-menu button, .mobile-menu a { display: block; width: 100%; padding: 12px; text-align: left; font-weight: 850; }

.has-idesami-modal { overflow: hidden; }
.idesami-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.idesami-login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.idesami-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(12px);
}
.idesami-login-modal__dialog {
  position: relative;
  width: min(100%, 480px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.18s ease;
}
.idesami-login-modal.is-open .idesami-login-modal__dialog { transform: translateY(0) scale(1); }
.idesami-login-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}
.idesami-login-modal__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 32px 18px;
}
.idesami-login-modal__brand .brand-symbol {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}
.idesami-login-modal__brand p {
  margin: 0 0 2px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.idesami-login-modal__brand h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}
.idesami-login-modal__content { padding: 0 32px 32px; }
.idesami-login-modal .idesami-register-box {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.idesami-login-modal .idesami-register-box > h2 { display: none; }
.idesami-login-modal .idesami-muted,
.idesami-login-modal .login-remember {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.idesami-login-modal .idesami-success,
.idesami-login-modal .idesami-error {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.35;
}
.idesami-login-modal .idesami-success {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.idesami-login-modal .idesami-error {
  background: var(--pink-soft);
  color: #b42343;
}
.idesami-login-modal .idesami-register-form,
.idesami-login-modal #loginform {
  display: grid;
  gap: 16px;
  margin: 0;
}
.idesami-login-modal .idesami-login-reset-form {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.idesami-login-modal .idesami-field,
.idesami-login-modal #loginform p:not(.login-submit):not(.login-remember) {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}
.idesami-login-modal .idesami-field span,
.idesami-login-modal #loginform label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.idesami-login-modal input[type="text"],
.idesami-login-modal input[type="email"],
.idesami-login-modal input[type="password"] {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  font-size: 16px;
  font-weight: 800;
}
.idesami-login-modal input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 147, 163, 0.12);
}
.idesami-login-modal .idesami-button,
.idesami-login-modal .button,
.idesami-login-modal #wp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 14px 28px rgba(0, 147, 163, 0.2);
}
.idesami-login-modal .idesami-button.soft {
  background: var(--teal-soft);
  color: var(--teal-dark);
  box-shadow: none;
}
.idesami-login-modal small {
  color: var(--muted);
  font-weight: 700;
}

.page-view { display: none; }
.page-view.is-active { display: block; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 56px;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 35%, #e6f6f7 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}
.hero::before { top: -180px; right: -160px; background: rgba(0, 147, 163, 0.22); }
.hero::after { bottom: -180px; left: -190px; background: rgba(255, 98, 126, 0.18); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 14px;
  font-weight: 950;
}
.hero h1, .section-heading h1, .section-heading h2, .article-hero h1 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(46px, 6vw, 78px); }
.hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 950;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--teal); color: var(--white); box-shadow: 0 16px 34px rgba(0, 147, 163, 0.22); }
.button-primary:hover { background: var(--teal-dark); }
.button-light { background: var(--white); border-color: var(--line); color: var(--ink); }
.button-light:hover { border-color: var(--teal); color: var(--teal); }
.button-white { background: var(--white); color: var(--teal); }
.button-ghost { border-color: rgba(255,255,255,0.34); color: var(--white); background: rgba(255,255,255,0.08); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
  margin-top: 54px;
}
.metric, .highlight-grid article, .service-card, .news-card, .content-card {
  background: var(--white);
  border: 1px solid #eef3f6;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.metric { padding: 20px; border-radius: 24px; }
.metric strong { display: block; font-size: 30px; font-weight: 950; }
.metric span { display: block; margin-top: 4px; color: var(--muted); font-weight: 800; }
.hero-panel {
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
  border: 1px solid var(--white);
  box-shadow: var(--shadow);
}
.hero-panel-top {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: linear-gradient(135deg, var(--teal), var(--mint) 62%, #16c7b7);
  color: var(--white);
}
.hero-panel-top::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.hero-panel-top > * { position: relative; z-index: 1; }
.hero-panel-top > span, .article-hero span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-panel h2 { max-width: 540px; margin: 0; font-size: clamp(38px, 4.8vw, 56px); line-height: 1.05; letter-spacing: -0.04em; }
.hero-panel p { margin: 20px 0 30px; color: rgba(255,255,255,0.86); font-size: 19px; line-height: 1.6; }
.hero-stats, .quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-stats { margin-top: 34px; }
.hero-stats article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-stats span { display: block; margin-bottom: 7px; color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 800; }
.hero-stats strong { font-size: 28px; font-weight: 950; }
.quick-grid { padding: 28px; background: #f8fafb; }
.quick-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid #edf2f7;
}
.quick-card svg {
  width: 52px;
  height: 52px;
  padding: 14px;
  border-radius: 18px;
  margin-bottom: 20px;
}
.quick-card.teal svg { background: var(--teal-soft); color: var(--teal); }
.quick-card.orange svg { background: var(--orange-soft); color: var(--orange); }
.quick-card.pink svg { background: var(--pink-soft); color: var(--pink); }
.quick-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 950; }
.quick-card p { margin: 0; color: var(--muted); font-weight: 600; line-height: 1.55; }

.section { padding: 80px 0; }
.section.compact { padding: 56px 0; }
.white-band { background: var(--white); border-block: 1px solid #edf2f7; }
.highlight-grid, .service-grid, .news-grid, .value-grid, .recognition-grid, .professional-grid, .service-page-grid, .info-grid {
  display: grid;
  gap: 24px;
}
.highlight-grid { grid-template-columns: repeat(4, 1fr); }
.highlight-grid article {
  padding: 28px;
  border-radius: 28px;
}
.highlight-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 38px;
  font-weight: 950;
}
.highlight-grid h3, .value-grid h3, .service-card h3, .news-card h3, .content-card h2, .info-grid h3 {
  margin: 0 0 12px;
  font-weight: 950;
  line-height: 1.16;
}
.highlight-grid p, .value-grid p, .service-card p, .news-card p, .content-card p, .info-grid p, .section-heading span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.65;
}
.section-heading { max-width: 720px; }
.section-heading.narrow { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin: 0 auto 52px; text-align: center; }
.section-heading p {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-heading p em {
  display: inline-flex;
  margin-left: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid #ffe0ad;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.section-heading h1 { font-size: clamp(44px, 5vw, 66px); margin-bottom: 18px; }
.section-heading h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 20px; }
.section-heading span { display: block; font-size: 20px; }
.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 46px;
}
.value-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid article {
  padding: 32px;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid #eef3f6;
}
.why-idesami-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 36%, #e9f8f8 100%);
  border-block: 1px solid #edf2f7;
}
.why-idesami-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  gap: 34px;
  align-items: center;
}
.why-idesami-copy {
  position: relative;
  z-index: 2;
}
.why-idesami-copy .section-heading {
  margin-bottom: 34px;
}
.why-idesami-copy .section-heading h2 {
  color: #22272f;
  font-size: clamp(42px, 5.1vw, 72px);
}
.why-idesami-copy .section-heading span {
  max-width: 620px;
  color: #426070;
  font-size: 22px;
  font-weight: 800;
}
.why-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
  max-width: 560px;
}
.why-icon-grid article {
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(0, 147, 163, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
  text-align: center;
}
.why-icon-grid svg {
  color: var(--teal);
}
.why-icon-grid span {
  color: #426070;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}
.why-idesami-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
}
.why-idesami-visual::before {
  content: "";
  position: absolute;
  inset: 8% auto 8% -16%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0));
  z-index: 1;
  pointer-events: none;
}
.why-idesami-visual img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(980px, 118%);
  max-width: none;
  transform: translate(-46%, -50%);
  object-fit: contain;
}
.recognition-grid { grid-template-columns: repeat(6, 1fr); }
.recognition-grid article {
  min-height: 220px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 26px;
  border-radius: 28px;
  background: #f8fafb;
  border: 1px solid #edf2f7;
  text-align: center;
}
.recognition-grid div {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
}
.recognition-grid .recognition-logo {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}
.recognition-grid .recognition-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.recognition-grid h3 { margin: 0 0 8px; font-size: 20px; font-weight: 950; }
.recognition-grid p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 650; line-height: 1.45; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card {
  padding: 32px;
  border-radius: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover, .news-card:hover, .professional-card:hover { transform: translateY(-2px); box-shadow: 0 22px 45px rgba(15, 23, 42, 0.1); }
.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 18px;
  color: var(--white);
}
.service-card span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 950;
}
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
  padding: 24px;
  border: 1px solid #edf2f7;
  border-radius: 30px;
  background: var(--bg);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--muted);
  font-weight: 950;
}
.filter-chip.active { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 12px 26px rgba(0,147,163,0.2); }
.search-box {
  min-width: min(100%, 330px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: #94a3b8;
}
.search-box input { width: 100%; border: 0; outline: 0; color: var(--muted); font-weight: 750; }
.professional-grid { grid-template-columns: repeat(3, 1fr); }
.professional-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--bg);
  border: 1px solid #edf2f7;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.image-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}
.professional-card img { width: 100%; height: 340px; object-fit: cover; }
.professional-card > div { padding: 26px; }
.professional-card span, .tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
}
.tag { background: var(--teal-soft); }
.professional-card h3 { margin: 0 0 10px; font-size: 24px; font-weight: 950; line-height: 1.12; }
.professional-card p { margin: 0 0 20px; color: var(--muted); font-weight: 800; line-height: 1.55; }
.professional-card .next-available {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 13px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 14px;
  font-weight: 950;
}
.professional-card.is-hidden { display: none; }
.news-grid { grid-template-columns: repeat(3, 1fr); }
.news-card {
  overflow: hidden;
  border-radius: 30px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.news-cover {
  position: relative;
  width: 100%;
  height: 224px;
  border: 0;
  text-align: left;
}
.gradient-teal { background: linear-gradient(135deg, #0093a3, #13c7b8); }
.gradient-orange { background: linear-gradient(135deg, #ff9801, #ffd26a); }
.gradient-pink { background: linear-gradient(135deg, #ff627e, #ff9db0); }
.news-cover span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.news-card > div { padding: 26px; }
.news-card > div > p:first-child { margin: 0 0 12px; color: #94a3b8; font-size: 14px; font-weight: 950; }
.news-card button:not(.button) { padding: 0; border: 0; background: transparent; text-align: left; }
.news-card h3 { font-size: 24px; }
.news-card h3:hover { color: var(--teal); }
.cta-section { padding-top: 20px; }
.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 64px);
  border-radius: 36px;
  background: var(--teal);
  color: var(--white);
}
.cta-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}
.cta-card h2 {
  position: relative;
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.cta-card p {
  position: relative;
  max-width: 740px;
  margin: 24px 0 34px;
  color: rgba(255,255,255,0.82);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.6;
}
.cta-card div { position: relative; display: flex; flex-wrap: wrap; gap: 14px; }

.detail-wrap { padding: 64px 0 80px; }
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 950;
}
.back-button.light { color: rgba(255,255,255,0.92); }
.content-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 34px;
}
.professional-detail { display: none; grid-template-columns: 380px 1fr; gap: 46px; align-items: start; }
.professional-detail.is-active { display: grid; }
.professional-detail > img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12); }
.professional-detail h1 { margin: 0 0 12px; font-size: clamp(42px, 5vw, 62px); line-height: 1.03; letter-spacing: -0.04em; }
.professional-detail h2 { margin: 0 0 28px; color: var(--muted); font-size: 24px; font-weight: 850; }
.professional-detail p { font-size: 19px; }
.detail-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0; }
.detail-stats article {
  padding: 20px;
  border: 1px solid #edf2f7;
  border-radius: 22px;
  background: var(--white);
}
.detail-stats strong { display: block; color: var(--teal); font-size: 24px; font-weight: 950; }
.detail-stats span { color: var(--muted); font-weight: 800; }
.info-grid { grid-template-columns: repeat(2, 1fr); margin-bottom: 32px; }
.info-grid article {
  padding: 22px;
  border: 1px solid #edf2f7;
  border-radius: 22px;
  background: var(--white);
}
.service-page-grid { grid-template-columns: repeat(2, 1fr); }
.service-page-grid .content-card h2 { font-size: 30px; }
.article-detail { display: none; }
.article-detail.is-active { display: block; }
.article-hero {
  padding: 78px 0;
  color: var(--white);
}
.article-hero h1 { margin-bottom: 22px; font-size: clamp(44px, 6vw, 74px); }
.article-hero p { color: rgba(255,255,255,0.84); font-size: 20px; font-weight: 700; }
.article-body { max-width: 900px; padding: 56px 24px 80px; }
.article-body .lead { color: #475569; font-size: 24px; font-weight: 800; line-height: 1.55; }
.article-body h2 { margin-top: 28px; font-size: 30px; }
.article-body blockquote {
  margin: 34px 0;
  padding: 24px;
  border-left: 8px solid var(--teal);
  border-radius: 18px;
  background: var(--teal-soft);
  font-size: 20px;
  font-weight: 950;
}
.article-body ul { display: grid; gap: 14px; padding: 0; list-style: none; }
.article-body li { display: flex; gap: 12px; align-items: start; color: var(--muted); font-size: 18px; font-weight: 700; }
.article-body li svg { color: var(--teal); flex: 0 0 auto; }

.site-footer {
  margin-top: 40px;
  padding: 64px 0 0;
  background: var(--white);
  border-top: 1px solid #edf2f7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 54px;
}
.footer-brand { margin-bottom: 28px; }
.footer-logo {
  max-width: 190px;
  max-height: 82px;
}
.footer-brand strong {
  font-size: 36px;
  font-weight: 950;
}
.footer-brand small { color: #94a3b8; }
.footer-grid p { color: var(--muted); font-size: 17px; font-weight: 600; line-height: 1.6; }
.footer-grid h3 { margin: 0 0 24px; font-size: 22px; font-weight: 950; }
.footer-grid a, .footer-grid button {
  display: block;
  margin-bottom: 17px;
  color: var(--muted);
  text-align: left;
  font-size: 17px;
  font-weight: 700;
}
.footer-grid a:hover, .footer-grid button:hover { color: var(--teal); }
.footer-icons { display: flex; gap: 12px; margin-top: 26px; }
.footer-icons span, .contact-row svg {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  background: var(--bg);
}
.footer-icons span:nth-child(1), .contact-row:nth-child(2) svg { color: var(--teal); }
.footer-icons span:nth-child(2), .contact-row:nth-child(3) svg { color: var(--orange); }
.footer-icons span:nth-child(3), .contact-row:nth-child(4) svg { color: var(--pink); }
.contact-row { display: flex; gap: 14px; align-items: start; margin-bottom: 18px; }
.contact-row p { margin: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding: 26px 0;
  border-top: 1px solid #edf2f7;
  color: #94a3b8;
  font-weight: 650;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }

.generic-page { padding: 64px 0; }

@media (max-width: 1350px) {
  .header-actions { display: none; }
}
@media (max-width: 1100px) {
  .header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
  }
  .main-nav, .header-actions { display: none; }
  .mobile-menu-button { display: grid; place-items: center; }
  .hero-grid, .professional-detail, .footer-grid { grid-template-columns: 1fr; }
  .highlight-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-idesami-grid { grid-template-columns: 1fr; }
  .why-idesami-visual {
    min-height: 430px;
    order: -1;
  }
  .why-idesami-visual img {
    width: min(900px, 112%);
    transform: translate(-50%, -50%);
  }
  .recognition-grid { grid-template-columns: repeat(3, 1fr); }
  .professional-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar, .split-heading { align-items: start; flex-direction: column; }
}
@media (max-width: 760px) {
  .container, .narrow-container { width: min(100% - 32px, 1280px); }
  .header-inner { min-height: 78px; }
  .brand strong { font-size: 20px; }
  .brand-symbol { width: 48px; height: 48px; border-radius: 16px; }
  .brand-symbol::before { left: 10px; top: 10px; width: 24px; height: 24px; border-width: 5px; }
  .brand-symbol::after { right: 4px; bottom: 4px; width: 17px; height: 17px; }
  .site-header .custom-logo,
  .site-header .brand img {
    max-width: 190px !important;
    max-height: 58px !important;
  }
  .brand-mark { width: 48px; height: 48px; border-radius: 16px; }
  .brand-mark span { width: 28px; height: 28px; border-width: 5px; }
  .hero { padding-top: 48px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: 44px; }
  .hero p, .section-heading span, .cta-card p { font-size: 18px; }
  .metric-grid, .hero-stats, .quick-grid, .highlight-grid, .value-grid, .recognition-grid, .service-grid, .professional-grid, .news-grid, .detail-stats, .info-grid, .service-page-grid { grid-template-columns: 1fr; }
  .why-idesami-copy .section-heading h2 { font-size: 40px; }
  .why-icon-grid { grid-template-columns: 1fr; }
  .why-idesami-visual { min-height: 320px; }
  .why-idesami-visual img { width: 760px; }
  .hero-panel-top { padding: 28px; }
  .hero-panel h2 { font-size: 38px; }
  .quick-grid { padding: 20px; }
  .section { padding: 58px 0; }
  .section-heading p em { margin: 10px 0 0; }
  .search-box { min-width: 100%; }
  .professional-detail > img { height: 420px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
