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

:root {
  --ink: #2b2a32;
  --muted: #666666;
  --line: #eeeeee;
  --pink: #f84464;
  --pink-dark: #d93452;
  --gold: #c89452;
  --hero-gold: #f6c56f;
  --paper: #ffffff;
  --surface: #fbfaf8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 28px rgba(25, 24, 30, 0.06);
  --shadow-card: 0 16px 34px rgba(25, 24, 30, 0.08);
  --eyebrow-size: 10px;
  --eyebrow-spacing: 0.09em;
  --section-heading-size: clamp(27px, 3.6vw, 40px);
  --section-heading-line: 1.1;
  --support-size: 14px;
  --support-line: 1.66;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 9px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(238, 238, 238, 0.92);
  box-shadow: 0 8px 22px rgba(31, 31, 43, 0.035);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #111111;
}

.brand img {
  width: 63px;
  height: 64px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 19px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777777;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav a {
  position: relative;
  padding: 12px 0;
  color: #2b2a32;
  opacity: 0.82;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  min-height: 44px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #2b2a32;
  opacity: 0.82;
  font: inherit;
  cursor: pointer;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 180px;
  display: grid;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(31, 31, 43, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu span {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 1;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: #f8f4f0;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: #111111;
  opacity: 1;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav a:hover,
.nav a.is-active {
  color: #111111;
  opacity: 1;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px !important;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(248, 68, 100, 0.14);
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--pink-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.izin-hero {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 24px auto 0;
  aspect-ratio: 1179 / 477;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(17, 17, 20, 0.12);
  background: url("https://izindesigns.com/wp-content/uploads/2026/06/izin-designs-interior-studio.png") center center / cover no-repeat;
}

.izin-intro-section {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.izin-intro-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  gap: 46px;
}

.izin-hero-title {
  max-width: 760px;
  color: #ffffff;
}

.izin-intro-copy {
  color: var(--ink);
}

.izin-intro-copy .izin-small-label {
  border-bottom-color: rgba(43, 42, 50, 0.18);
  color: var(--pink);
  text-shadow: none;
}

.izin-intro-copy h1 {
  color: var(--ink);
  text-shadow: none;
}

.izin-intro-copy h1 span {
  color: var(--gold);
}

.izin-intro-copy .izin-hero-sub {
  color: var(--muted);
  text-shadow: none;
}

.izin-intro-copy .izin-hero-tags span {
  border-color: rgba(43, 42, 50, 0.12);
  background: #f7f4f0;
  color: var(--ink);
  backdrop-filter: none;
}

.izin-small-label {
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
}

.izin-hero-title h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #ffffff;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.72);
}

.izin-hero-title h1 span {
  display: block;
  margin-top: 8px;
  font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--hero-gold);
}

.izin-hero-sub {
  max-width: 620px;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.90);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
}

.izin-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.izin-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.mobile-consultation-btn {
  display: none;
  width: max-content;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(248, 68, 100, 0.18);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.izin-form-card {
  width: 100%;
  background: #ffffff;
  color: #222222;
  border: 1px solid rgba(43, 42, 50, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(17, 17, 20, 0.08);
}

.izin-intro-copy.izin-hero-title h1 {
  color: var(--ink);
  text-shadow: none;
}

.izin-intro-copy.izin-hero-title h1 span {
  color: var(--gold);
}

.izin-intro-copy .izin-hero-sub {
  color: var(--muted);
  text-shadow: none;
}

.izin-intro-copy .izin-hero-tags span {
  border-color: rgba(43, 42, 50, 0.12);
  background: #f7f4f0;
  color: var(--ink);
  backdrop-filter: none;
}

.izin-form-head {
  position: relative;
  padding: 12px 16px 11px;
  background: var(--ink);
  color: #ffffff;
}

.izin-form-head small {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.izin-form-head h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.24;
  font-weight: 500;
}

.izin-form-close {
  display: none;
  position: absolute;
  top: 9px;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.izin-form-body {
  padding: 16px 18px 18px;
}

.izin-form-progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.izin-form-progress-step {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #9a96a0;
}

.izin-form-progress-step span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 42, 50, 0.12);
  border-radius: 50%;
  background: #faf8f5;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  color: #6d6872;
}

.izin-form-progress-step small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.izin-form-progress-step.is-active {
  color: var(--ink);
}

.izin-form-progress-step.is-active span {
  border-color: var(--pink);
  background: rgba(248, 68, 100, 0.08);
  color: var(--pink);
}

.izin-form-progress-line {
  position: relative;
  height: 1px;
  background: rgba(43, 42, 50, 0.12);
}

.izin-form-progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--pink);
  transition: width 0.22s ease;
}

.izin-form-panel[hidden] {
  display: none !important;
}

.izin-form-panel.is-active {
  display: block;
}

.izin-field {
  margin-bottom: 9px;
}

.izin-field label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 500;
  color: #555555;
}

.izin-field input,
.izin-field select {
  width: 100%;
  height: 38px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 12px;
  outline: none;
  background: #fafafa;
  color: #222222;
}

.izin-field input:focus,
.izin-field select:focus {
  border-color: var(--pink);
  background: #ffffff;
}

.izin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.izin-submit {
  width: 100%;
  height: 41px;
  margin-top: 3px;
  border: 0;
  border-radius: 8px;
  background: var(--pink);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.izin-submit:hover {
  background: var(--pink-dark);
}

.izin-submit.is-secondary {
  background: #f7f4f0;
  color: var(--ink);
  border: 1px solid rgba(43, 42, 50, 0.12);
  box-shadow: none;
}

.izin-submit.is-secondary:hover {
  background: #f1ede7;
}

.izin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

.izin-form-actions .izin-submit {
  width: auto;
  min-width: 130px;
  padding: 0 18px;
}

.izin-form-actions-split {
  justify-content: space-between;
}

.izin-form-note {
  margin: 8px 0 0;
  font-size: 10px;
  line-height: 1.4;
  color: #777777;
}

.career-page {
  min-height: 100vh;
  background: #f7f4f0;
  color: var(--ink);
}

.career-hero {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  gap: 40px;
  align-items: start;
}

.career-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--pink);
  font-size: 13px;
  text-decoration: none;
}

.career-hero-copy h1 {
  margin: 14px 0 18px;
  max-width: 680px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.04;
  font-weight: 400;
}

.career-hero-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.career-form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(20, 20, 20, 0.1);
}

.izin-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.career-form-head {
  margin-bottom: 18px;
}

.career-form-head small,
.career-roles small {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-form-head h2,
.career-roles h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
}

.career-form-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  font-size: 12px;
  color: var(--muted);
}

.career-form-card input,
.career-form-card select,
.career-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #ffffff;
}

.career-form-card textarea {
  resize: vertical;
}

.career-form-card label small {
  font-size: 11px;
  color: #777777;
}

.career-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.career-submit {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 13px 18px;
  background: var(--pink);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.career-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.career-form-status {
  min-height: 18px;
  margin: 12px 0 0;
  font-size: 13px;
}

.career-form-status.is-success {
  color: #1f7a3a;
}

.career-form-status.is-error {
  color: #b32d2e;
}

.career-roles {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 70px;
  border-top: 1px solid var(--line);
}

.bid-project-page {
  background: linear-gradient(180deg, rgba(247, 244, 240, 0.98) 0%, rgba(247, 244, 240, 1) 56%, #f5f1eb 100%);
}

.free-consultation-page {
  background: linear-gradient(180deg, rgba(248, 246, 242, 0.94) 0%, #fbfaf8 56%, #ffffff 100%);
}

.bid-project-hero {
  padding-bottom: 74px;
}

.free-consultation-hero {
  width: min(1180px, calc(100% - 48px));
  padding-top: 94px;
  padding-bottom: 36px;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.78fr);
  gap: 26px;
  align-items: start;
}

.free-consultation-copy h1 {
  max-width: 560px;
}

.free-consultation-copy p {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.62;
}

.free-consultation-support {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.free-consultation-support-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(43, 42, 50, 0.08);
}

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

.free-consultation-notes article {
  height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid rgba(43, 42, 50, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.free-consultation-notes h2 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.free-consultation-notes p,
.free-consultation-reassurance,
.free-consultation-direct {
  margin: 0;
  font-size: 14px;
  line-height: 1.66;
  color: var(--muted);
}

.free-consultation-support-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.free-consultation-reassurance {
  max-width: 300px;
}

.free-consultation-direct {
  max-width: 280px;
}

.free-consultation-direct a {
  color: var(--ink);
  font-weight: 500;
}

.free-consultation-form-card {
  position: sticky;
  top: 98px;
}

.free-consultation-form-only {
  min-height: auto;
}

.free-consultation-hero-form-only {
  width: min(680px, calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 28px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
}

.free-consultation-brand-lockup {
  width: 100%;
  text-align: center;
}

.free-consultation-brand-lockup h1 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #121212;
}

.free-consultation-brand-lockup p {
  position: relative;
  display: inline-block;
  margin: 12px 0 0;
  padding-top: 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2b2a32;
}

.free-consultation-brand-lockup p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 42px;
  height: 2px;
  background: #2b2a32;
  transform: translateX(-50%);
}

.free-consultation-form-only .free-consultation-form-card {
  width: 100%;
  position: static;
  top: auto;
}

.free-consultation-videos {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 32px;
}

.free-consultation-videos-head {
  margin-bottom: 12px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.free-consultation-videos-head h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.free-consultation-video-slider {
  display: flex;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  gap: 16px;
}

.free-consultation-video-slider .video-card {
  flex: 0 0 168px;
  max-width: 168px;
  width: 168px;
}

.free-consultation-footer {
  background: #f7f4f0;
  border-top: 0;
  padding-top: 0;
}

.free-consultation-footer-inner {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 4px;
  grid-template-columns: 1fr;
  gap: 16px;
}

.free-consultation-footer-brand {
  display: grid;
  gap: 8px;
}

.free-consultation-footer-eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.free-consultation-footer-brand strong {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.2;
}

.free-consultation-footer-brand .site-footer-service-area {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.free-consultation-company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.free-consultation-company-card {
  min-width: 0;
  padding: 14px 14px 13px;
  border: 1px solid rgba(43, 42, 50, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.free-consultation-company-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.free-consultation-company-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: var(--ink);
}

.free-consultation-company-card a {
  color: var(--ink);
}

.bid-project-copy h1 {
  max-width: 760px;
}

.bid-project-copy p {
  max-width: 650px;
}

.bid-project-notes {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}

.bid-project-notes article {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.bid-project-notes h2 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.bid-project-notes p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.bid-project-form-card {
  position: sticky;
  top: 98px;
}

.project-status-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f4f0 0%, #f4efe8 100%);
}

.project-status-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 72px;
}

.project-status-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 22px 60px rgba(20, 20, 20, 0.08);
}

.project-status-card h1 {
  margin: 14px 0 16px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(33px, 4.5vw, 54px);
  line-height: 1.04;
  font-weight: 400;
}

.project-status-card > p {
  max-width: 700px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.project-status-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.project-status-current,
.project-status-current-meta article,
.project-status-progress,
.project-status-files {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fcfbf8;
}

.project-status-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.project-status-current-meta {
  display: grid;
  gap: 14px;
}

.project-status-current h1 {
  margin: 0 0 14px;
}

.project-status-lead {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.project-status-current-meta h2,
.project-status-progress h2,
.project-status-files h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.project-status-current-meta p,
.project-status-progress > p,
.project-status-files p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.project-status-progress,
.project-status-files {
  margin-top: 18px;
}

.project-status-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.project-status-step {
  position: relative;
  min-width: 0;
}

.project-status-step::before {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 16px);
  width: calc(100% - 20px);
  height: 1px;
  background: var(--line);
}

.project-status-step:last-child::before {
  display: none;
}

.project-status-step-marker {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.project-status-step-copy {
  margin-top: 14px;
}

.project-status-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.project-status-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.project-status-step.is-completed .project-status-step-marker {
  background: #171717;
  border-color: #171717;
}

.project-status-step.is-completed::before {
  background: #171717;
}

.project-status-step.is-current .project-status-step-marker {
  border-color: var(--pink);
  background: #ffffff;
  box-shadow: inset 0 0 0 6px rgba(194, 76, 122, 0.18);
}

.project-status-step.is-current h3 {
  color: #171717;
}

.project-status-step.is-upcoming {
  opacity: 0.72;
}

.project-status-step-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.project-status-step-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #171717;
}

.project-status-step-note p {
  font-size: 13px;
}

.project-status-file-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.project-status-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
}

.project-status-file strong,
.project-status-file span {
  display: block;
}

.project-status-file span {
  font-size: 12px;
  color: var(--muted);
}

.career-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.career-role-grid article {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.career-role-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.career-role-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.shorts-section {
  padding: 42px 0;
  background: #ffffff;
}

.video-section-head {
  max-width: 1240px;
  margin: 0 auto 16px;
  padding: 0 24px;
}

.video-section-head small,
.video-card > span {
  display: block;
  margin-bottom: 7px;
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--pink);
}

.video-section-head h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.video-slider {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}

.video-slider::-webkit-scrollbar {
  height: 5px;
}

.video-slider::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 999px;
}

.video-card {
  min-width: 0;
}

.izin-shorts-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000000;
}

.video-card:first-child .izin-shorts-video {
  box-shadow: 0 18px 38px rgba(17, 17, 20, 0.1);
}

.izin-shorts-video iframe,
.izin-shorts-video video,
.izin-video-card-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.izin-video-card-placeholder {
  display: grid;
  place-items: end start;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2)),
    #151515;
}

.izin-video-card-placeholder span {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}

.izin-feature-video-section {
  padding: 0 0 40px;
  background: #ffffff;
}

.izin-feature-video-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.izin-feature-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000000;
  box-shadow: var(--shadow-card);
}

.izin-feature-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.izin-package-section {
  padding: 14px 0 42px;
  background: #ffffff;
}

.izin-package-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.izin-package-head {
  margin-bottom: 18px;
}

.izin-package-head p,
.izin-package-page-head p {
  max-width: 480px;
  margin: 14px 0 0;
  font-size: var(--support-size);
  line-height: var(--support-line);
  color: var(--muted);
}

.izin-package-summary {
  min-width: 0;
}

.izin-package-head small,
.izin-package-page-head small,
.izin-package-eyebrow {
  display: block;
  margin-bottom: 7px;
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--pink);
}

.izin-package-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.izin-package-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 312px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 42, 50, 0.22) transparent;
}

.izin-package-rail::-webkit-scrollbar {
  height: 7px;
}

.izin-package-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(43, 42, 50, 0.22);
}

.izin-package-poster {
  display: block;
  scroll-snap-align: start;
  border: 1px solid rgba(24, 24, 24, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f2efea;
  box-shadow: var(--shadow-soft);
}

.izin-package-poster img {
  width: 100%;
  height: auto;
  display: block;
}

.izin-package-copy {
  max-width: 420px;
  align-self: center;
}

.izin-package-copy h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 400;
  color: var(--ink);
}

.izin-package-copy p {
  max-width: 100%;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.66;
  color: var(--muted);
}

.izin-package-copy-list {
  max-width: 100%;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.izin-package-copy-list li {
  margin: 0;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--muted);
}

.izin-package-copy-list li::before {
  display: none;
}

.izin-package-copy-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
}

.izin-package-booking {
  width: 100%;
  margin-top: 16px;
  min-height: 54px;
  border-radius: 6px;
  background: transparent;
  color: var(--pink);
  border: 1px solid rgba(194, 76, 122, 0.8);
  box-shadow: none;
}

.izin-package-booking:hover {
  color: var(--pink);
  background: rgba(194, 76, 122, 0.05);
}

.izin-package-summary-card,
.izin-package-include-card,
.izin-package-faq-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #ffffff;
}

.izin-package-price-line {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  color: var(--ink);
}

.izin-package-meta-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.izin-package-meta-list p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.izin-package-meta-list strong {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
}

.izin-package-meta-list span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.izin-package-feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.izin-package-feature-list li,
.izin-package-include-card p,
.izin-package-faq-card p {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.izin-package-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.izin-package-link,
.izin-package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 16px 30px rgba(255, 73, 117, 0.18);
}

.izin-package-link {
  margin-top: 14px;
}

.izin-package-link:hover,
.izin-package-cta:hover {
  color: #ffffff;
}

.izin-package-page {
  background: #fbf9f4;
  padding: 28px 0 56px;
}

.izin-package-product,
.izin-package-hero-shell,
.izin-package-page-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.izin-package-product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 440px);
  gap: 28px;
  align-items: start;
}

.izin-package-product-media,
.izin-package-product-info,
.izin-package-page-section {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}

.izin-package-product-media,
.izin-package-product-info {
  padding: 24px;
}

.izin-package-product-info .breadcrumbs {
  margin-bottom: 14px;
}

.izin-package-product-info h1,
.izin-package-page-head h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
}

.izin-package-price {
  margin: 18px 0 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  color: var(--ink);
}

.izin-package-intro,
.izin-package-detail-pane p,
.izin-package-faq-card p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
}

.izin-package-product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.izin-package-product-meta div {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f7f3ec;
}

.izin-package-product-meta span,
.izin-package-detail-pane small {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.izin-package-product-meta strong,
.izin-package-detail-pane h2,
.izin-package-faq-card h3 {
  display: block;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
}

.izin-package-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #f4f1eb;
}

.izin-package-stage-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.izin-package-stage-card.is-active,
.izin-package-detail-pane.is-active {
  opacity: 1;
  pointer-events: auto;
}

.izin-package-stage-card img,
.izin-package-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.izin-package-stage-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 2;
}

.izin-package-stage-control.is-prev {
  left: 14px;
}

.izin-package-stage-control.is-next {
  right: 14px;
}

.izin-package-thumb-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.izin-package-thumb {
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #f4f1eb;
  cursor: pointer;
}

.izin-package-thumb.is-active {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(255, 73, 117, 0.12);
}

.izin-package-detail-card {
  position: relative;
  min-height: 260px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #ffffff;
}

.izin-package-detail-pane {
  position: absolute;
  inset: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.izin-package-detail-pane ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.izin-package-detail-pane li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.izin-package-detail-pane li + li {
  margin-top: 10px;
}

.izin-package-detail-pane li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.izin-package-page-section {
  margin-top: 28px;
  padding: 28px 24px;
}

.izin-package-page-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.izin-package-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.izin-package-brochure-section .izin-package-slider {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-top: 22px;
}

.izin-package-faq-card {
  margin-top: 22px;
}

.izin-solutions-section {
  width: 100%;
  background: #ffffff;
  padding: 46px 0 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.izin-solutions-wrap,
.izin-metric-inner,
.izin-portfolio-section,
.signature-section,
.izin-contact-wrap,
.strip-head {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.izin-solutions-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.izin-solutions-label,
.strip-head small,
.izin-contact-head span {
  display: block;
  margin-bottom: 7px;
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--pink);
}

.izin-solutions-title,
.izin-contact-head h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.izin-solutions-title span,
.izin-contact-head em {
  color: var(--gold);
  font-style: italic;
}

.izin-solutions-text,
.izin-contact-head p {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: var(--support-size);
  line-height: var(--support-line);
  color: var(--muted);
}

.izin-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.izin-solution-card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.25s ease;
}

.izin-solution-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.izin-solution-card:nth-child(1) {
  background: radial-gradient(circle at top right, rgba(248, 68, 100, 0.08), transparent 34%), linear-gradient(135deg, #fffaf8 0%, #ffffff 52%, #fbf4ef 100%);
}

.izin-solution-card:nth-child(2) {
  background: radial-gradient(circle at top right, rgba(200, 148, 82, 0.09), transparent 34%), linear-gradient(135deg, #fffbf4 0%, #ffffff 52%, #f7f1e7 100%);
}

.izin-solution-card:nth-child(3) {
  background: radial-gradient(circle at top right, rgba(43, 42, 50, 0.06), transparent 34%), linear-gradient(135deg, #fafafa 0%, #ffffff 52%, #f4f1ec 100%);
}

.izin-solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 23px;
  right: 23px;
  height: 4px;
  border-radius: 999px;
  background: var(--pink);
}

.izin-solution-card:nth-child(2)::before {
  background: var(--gold);
}

.izin-solution-card:nth-child(3)::before {
  background: var(--ink);
}

.izin-solution-number {
  display: block;
  margin-bottom: 14px;
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--pink);
}

.izin-solution-card:nth-child(2) .izin-solution-number {
  color: var(--gold);
}

.izin-solution-card:nth-child(3) .izin-solution-number {
  color: var(--ink);
}

.izin-solution-card h3 {
  margin: 0 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 400;
  color: var(--ink);
}

.izin-solution-intro {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.62;
  color: #5f5f5f;
}

.izin-service-group {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.izin-service-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
}

.izin-service-detail strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
}

.izin-service-detail p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #555555;
}

.izin-metric-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  font-family: "Times New Roman", Times, serif;
}

.izin-metric-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.izin-metric-item {
  padding: 4px 22px;
  border-right: 1px solid var(--line);
}

.izin-metric-item:last-child {
  border-right: 0;
}

.izin-metric-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.izin-metric-number,
.izin-metric-suffix {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.izin-metric-suffix {
  color: var(--hero-gold);
  font-style: italic;
}

.izin-metric-label {
  font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.izin-metric-note {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #888888;
}

.izin-review-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 24px 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: start;
}

.izin-review-head small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pink);
}

.izin-review-head h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
}

.izin-review-head p {
  max-width: 360px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.izin-google-mark {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.izin-review-summary {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #faf8f4;
}

.izin-review-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.izin-review-score strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
}

.izin-review-score span {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

.izin-review-summary-stars {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.izin-review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(194, 76, 122, 0.28);
  border-radius: 6px;
  background: #ffffff;
  color: var(--pink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

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

.izin-review-card {
  min-height: 188px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fcfbf8;
}

.izin-review-card p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
}

.izin-review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.izin-review-meta strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.izin-review-meta span {
  font-size: 11px;
  color: var(--muted);
}

.izin-review-stars {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.izin-client-strip {
  padding: 28px 0 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.strip-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  color: #1f1f2b;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.izin-client-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.izin-client-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 30px;
  animation: izinClientScroll 38s linear infinite;
}

.izin-client-track.reverse {
  animation: izinClientScrollReverse 44s linear infinite;
}

.izin-client-track span {
  flex: 0 0 auto;
  font-family: "Times New Roman", Times, serif;
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0.84;
}

.izin-client-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}

@keyframes izinClientScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes izinClientScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.izin-portfolio-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.izin-gallery-section {
  padding-top: 0;
  padding-bottom: 30px;
}

.izin-gallery-section,
.izin-portfolio-section {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.izin-gallery-card {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.izin-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  background: #f3f3f3;
}

.izin-gallery-card figcaption {
  padding: 10px 12px 11px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.izin-gallery-card span {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.izin-portfolio-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 14px;
}

.izin-project-card {
  flex: 0 0 230px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  color: inherit;
  transition: 0.25s ease;
}

.izin-project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.izin-project-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3f3f3;
}

.izin-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.izin-project-card:hover img {
  transform: scale(1.04);
}

.izin-project-info {
  min-height: 42px;
  padding: 12px 14px 13px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.izin-project-info span {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.signature-section {
  padding-top: 10px;
  padding-bottom: 42px;
}

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

.signature-head h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(27px, 3.6vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.signature-head button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.signature-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.signature-gallery img {
  flex: 0 0 250px;
  width: 250px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  scroll-snap-align: start;
  background: #f1f1f1;
}

.izin-contact-section {
  padding: 48px 0 56px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.izin-contact-head {
  margin-bottom: 24px;
}

.izin-contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 24px;
}

.izin-contact-details,
.izin-map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.izin-contact-details {
  padding: 22px 22px;
}

.izin-contact-details > div:not(.izin-contact-actions) {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.izin-contact-details h3 {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--pink);
}

.izin-contact-details p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
}

.izin-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.izin-contact-actions a,
.izin-map-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  border: 1px solid var(--ink);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.izin-contact-actions .primary {
  background: var(--pink);
  border-color: var(--pink);
}

.izin-contact-actions .outline {
  background: transparent;
  color: var(--ink);
}

.izin-map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.izin-map-card > div {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
}

.izin-map-card h3 {
  margin: 0 0 7px;
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.izin-map-card p {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #555555;
}

.izin-map-card a {
  color: var(--ink);
  background: #f7f2ec;
  border-color: #e8dfd5;
}

.site-footer {
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.site-footer-brand {
  text-align: left;
}

.site-footer-brand strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.site-footer-brand p {
  margin: 0 0 7px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}

.site-footer-brand p span {
  display: inline-block;
  margin: 0 7px;
  color: #b5b5b5;
}

.site-footer-service-area {
  color: var(--ink);
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 12px;
}

.site-footer-nav a {
  color: var(--ink);
}

.izin-breadcrumbs,
.rank-math-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 11px;
  color: #777777;
}

.izin-breadcrumbs a,
.rank-math-breadcrumb a {
  color: var(--pink);
}

.post-page,
.page-main,
.archive-main {
  background: #f7f4f0;
  min-height: 100vh;
}

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

.post-article,
.page-article,
.archive-shell {
  padding: 108px 0 72px;
}

.post-header,
.page-header,
.archive-header {
  max-width: 840px;
  margin-bottom: 24px;
}

.post-category,
.archive-header span,
.section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.post-header h1,
.page-header h1,
.archive-header h1 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(33px, 4.5vw, 54px);
  line-height: 1.1;
  font-weight: 400;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

.post-featured-image,
.page-featured-image {
  margin: 0 0 26px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.post-featured-image img,
.page-featured-image img {
  width: 100%;
  height: auto;
}

.post-content,
.page-content,
.archive-description {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a42;
}

.post-content > *:first-child,
.page-content > *:first-child {
  margin-top: 0;
}

.post-content h2,
.post-content h3,
.page-content h2,
.page-content h3 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.post-content a,
.page-content a,
.archive-description a {
  color: var(--pink);
}

.post-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.post-author-box {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.post-author-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.post-author-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.post-tags a {
  display: inline-flex;
  margin: 0 8px 8px 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 11px;
}

.post-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.post-pagination a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.post-related {
  padding: 0 0 72px;
}

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

.section-heading h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(27px, 3.6vw, 38px);
  line-height: 1.14;
  font-weight: 400;
}

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

.post-card {
  min-width: 0;
}

.post-card-link {
  display: block;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.post-card-media {
  aspect-ratio: 3 / 2;
  background: #efefef;
  overflow: hidden;
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666666;
}

.post-card-body {
  padding: 16px 16px 18px;
}

.post-card-category {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.post-card-title {
  margin: 0 0 10px;
  font-family: "Times New Roman", Times, serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.post-card-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
}

.archive-pagination,
.archive-empty {
  margin-top: 28px;
}

.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.archive-empty form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.archive-empty input[type="search"] {
  min-width: min(100%, 340px);
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.archive-empty input[type="submit"] {
  height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .izin-intro-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .izin-solutions-grid,
  .izin-contact-main {
    grid-template-columns: 1fr;
  }

  .izin-metric-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .izin-metric-item:nth-child(2) {
    border-right: 0;
  }

  .izin-metric-item:nth-child(1),
  .izin-metric-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 68px;
    padding: 8px 14px;
    align-items: center;
  }

  .brand img {
    width: 46px;
    height: 47px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 0.07em;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(31, 31, 43, 0.14);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 12px;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 6px;
    border-radius: 12px;
    background: #f8f4f0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav-dropdown-menu a {
    min-height: 0;
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav a:hover,
  .nav-dropdown-toggle:hover,
  .nav a.is-active {
    background: #f8f4f0;
  }

  .nav-cta {
    margin-top: 6px;
    width: 100%;
  }

  .izin-hero {
    display: none;
  }

  .izin-intro-inner {
    width: calc(100% - 32px);
    padding: 30px 0 34px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .izin-intro-copy {
    min-height: 0;
    max-width: 100%;
  }

  .izin-small-label {
    font-size: 8px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .izin-intro-copy h1 {
    max-width: 360px;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.01em;
  }

  .izin-intro-copy h1 span {
    font-size: 17px;
  }

  .izin-intro-copy .izin-hero-sub {
    max-width: 100%;
    font-size: 11.5px;
  }

  .izin-intro-copy .izin-hero-tags {
    display: none;
  }

  .izin-intro-copy .mobile-consultation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .izin-form-card {
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(17, 17, 20, 0.08);
  }

  .career-hero,
  .career-roles {
    width: calc(100% - 32px);
  }

  .career-hero {
    padding: 88px 0 38px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .career-hero-copy h1 {
    font-size: 42px;
  }

  .career-form-card {
    padding: 18px;
  }

  .career-form-grid,
  .career-role-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bid-project-notes {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .bid-project-notes article {
    padding: 18px 18px 16px;
  }

  .bid-project-form-card {
    position: static;
  }

  .project-status-shell {
    width: calc(100% - 32px);
    padding: 88px 0 46px;
  }

  .project-status-card {
    padding: 22px 18px;
  }

  .project-status-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .project-status-current,
  .project-status-current-meta article,
  .project-status-progress,
  .project-status-files {
    padding: 18px;
  }

  .project-status-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-status-step::before {
    top: 34px;
    left: 12px;
    width: 1px;
    height: calc(100% + 14px);
  }

  .project-status-step {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 14px;
  }

  .project-status-step-copy {
    margin-top: 0;
  }

  .project-status-file {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-roles {
    padding-bottom: 46px;
  }

  .izin-review-section {
    grid-template-columns: 1fr;
    padding: 24px 16px 28px;
    gap: 18px;
  }

  .izin-review-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
  }

  .izin-review-card {
    flex: 0 0 280px;
    min-height: 172px;
    scroll-snap-align: start;
  }

  .izin-review-head p {
    max-width: none;
  }

  .izin-review-summary {
    padding: 16px;
  }

  .izin-review-score strong {
    font-size: 34px;
  }

  .shorts-section {
    padding: 30px 0;
  }

  .video-section-head,
  .video-slider,
  .izin-feature-video-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .video-slider {
    display: flex;
    --video-card-width: 39vw;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-gutter: stable;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .video-card {
    flex: 0 0 var(--video-card-width);
    max-width: var(--video-card-width);
    scroll-snap-align: start;
  }

  .video-section-head {
    margin-bottom: 12px;
  }

  .izin-feature-video-section {
    padding-bottom: 32px;
  }

  .izin-feature-video-frame {
    border-radius: 16px;
  }

  .izin-package-section {
    padding: 6px 0 36px;
  }

  .izin-package-shell,
  .izin-package-product,
  .izin-package-page-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .izin-package-shell,
  .izin-package-includes-grid,
  .izin-package-product,
  .izin-package-product-meta {
    grid-template-columns: 1fr;
  }

  .izin-package-page {
    padding: 18px 0 40px;
  }

  .izin-package-product-media,
  .izin-package-product-info,
  .izin-package-page-section {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .izin-package-head h2,
  .izin-package-page-head h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  .izin-package-head {
    margin-bottom: 14px;
  }

  .izin-package-head p,
  .izin-package-page-head p,
  .izin-package-product-info p {
    font-size: 14px;
    line-height: 1.65;
  }

  .izin-package-layout {
    gap: 14px;
  }

  .izin-package-rail {
    grid-auto-columns: 74vw;
    gap: 12px;
    padding-bottom: 8px;
  }

  .izin-package-copy {
    max-width: 100%;
    padding-top: 0;
    align-self: start;
  }

  .izin-package-copy h2 {
    font-size: 21px;
    line-height: 1.14;
  }

  .izin-package-copy p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.58;
  }

  .izin-package-copy-list {
    margin-top: 10px;
    gap: 7px;
  }

  .izin-package-copy-list li {
    font-size: 13px;
    line-height: 1.5;
  }

  .izin-package-booking {
    margin-top: 14px;
  }

  .izin-package-overview article,
  .izin-package-summary-card,
  .izin-package-include-card,
  .izin-package-faq-card,
  .izin-package-product-meta div {
    padding: 16px;
    border-radius: 14px;
  }

  .izin-package-link,
  .izin-package-cta {
    width: 100%;
    min-height: 44px;
  }

  .izin-package-booking {
    margin-top: 16px;
    min-height: 48px;
  }

  .izin-package-stage-control {
    width: 38px;
    height: 38px;
  }

  .izin-package-product {
    gap: 16px;
  }

  .izin-package-thumb-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .izin-package-detail-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .izin-package-detail-pane {
    position: static;
    inset: auto;
  }

  .izin-package-slider {
    --package-card-width: 84vw;
    gap: 14px;
    padding-bottom: 10px;
    scroll-padding-inline: 0;
  }

  .izin-package-brochure-section .izin-package-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .izin-form-close {
    display: grid;
    place-items: center;
  }

  .izin-form-head {
    padding-right: 50px;
  }

  .izin-form-progress {
    margin-bottom: 12px;
    gap: 8px;
  }

  .izin-form-progress-step span {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .izin-form-progress-step small {
    font-size: 8px;
  }

  .izin-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .izin-field input,
  .izin-field select {
    height: 34px;
    font-size: 11px;
  }

  .izin-form-actions .izin-submit {
    min-width: 0;
    flex: 1 1 auto;
  }

  .izin-solutions-section,
  .izin-contact-section {
    padding: 36px 0 40px;
  }

  .free-consultation-hero {
    width: min(100%, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .free-consultation-copy h1 {
    max-width: none;
  }

  .free-consultation-copy p {
    max-width: none;
    font-size: 14px;
    line-height: 1.58;
  }

  .free-consultation-support {
    width: min(100%, calc(100% - 32px));
    padding-bottom: 44px;
  }

  .free-consultation-support-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .free-consultation-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .free-consultation-notes article {
    padding: 14px 14px 13px;
  }

  .free-consultation-support-copy {
    gap: 8px;
  }

  .free-consultation-reassurance,
  .free-consultation-direct {
    max-width: none;
  }

  .free-consultation-form-card {
    position: static;
    top: auto;
  }

  .free-consultation-form-only {
    min-height: auto;
  }

  .free-consultation-hero-form-only {
    width: min(100%, calc(100% - 24px));
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 24px;
    gap: 10px;
  }

  .free-consultation-brand-lockup h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .free-consultation-brand-lockup p {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 12px;
    letter-spacing: 0.07em;
  }

  .free-consultation-videos {
    width: min(100%, calc(100% - 24px));
    padding-bottom: 28px;
  }

  .free-consultation-videos-head {
    margin-bottom: 10px;
  }

  .free-consultation-videos-head h2 {
    font-size: 22px;
    line-height: 1.14;
  }

  .free-consultation-video-slider {
    padding-left: 0;
    padding-right: 0;
    --video-card-width: 58vw;
  }

  .free-consultation-footer-inner {
    width: min(100%, calc(100% - 24px));
    gap: 14px;
  }

  .free-consultation-footer-brand strong {
    font-size: 16px;
  }

  .free-consultation-company-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .free-consultation-company-card {
    padding: 13px 13px 12px;
  }

  .izin-solutions-wrap,
  .izin-metric-inner,
  .izin-portfolio-section,
  .izin-gallery-section,
  .signature-section,
  .izin-contact-wrap,
  .strip-head {
    padding-left: 16px;
    padding-right: 16px;
  }

  .izin-solutions-title,
  .izin-contact-head h2 {
    font-size: 28px;
    line-height: 1.12;
    max-width: 340px;
  }

  .izin-metric-item {
    padding: 9px 8px 12px;
  }

  .izin-client-track {
    gap: 18px;
  }

  .izin-client-track span {
    font-size: 14px;
  }

  .izin-project-card {
    flex-basis: 205px;
    border-radius: 13px;
  }

  .izin-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .signature-gallery img {
    flex-basis: 205px;
    width: 205px;
  }

  .izin-contact-actions {
    flex-direction: column;
  }

  .izin-contact-actions a {
    width: 100%;
  }

  .site-footer-inner,
  .post-grid,
  .post-pagination {
    grid-template-columns: 1fr;
  }

  .site-footer-brand,
  .site-footer-nav {
    text-align: left;
    justify-content: flex-start;
  }

  .post-shell,
  .archive-shell {
    width: calc(100% - 32px);
  }

  .post-article,
  .page-article,
  .archive-shell,
  .post-related {
    padding-top: 88px;
    padding-bottom: 44px;
  }

  .post-card-title {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .izin-form-grid {
    grid-template-columns: 1fr;
  }
}

/* IZIN Creatives */
.creatives-page {
  background: #f7f4ee;
  color: #171717;
}

.creatives-hero,
.creatives-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 24px;
}

.creatives-hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 86% 14%, rgba(222, 211, 191, 0.34), rgba(222, 211, 191, 0) 34%),
    radial-gradient(circle at 14% 82%, rgba(15, 111, 114, 0.44), rgba(15, 111, 114, 0) 38%),
    linear-gradient(135deg, #173d33 0%, #235c4b 48%, #0f2b26 100%);
  color: #fff;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
}

.creatives-hero-copy {
  max-width: 780px;
}

.creatives-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.creatives-hero-title {
  display: grid;
  gap: 10px;
}

.creatives-hero-title-kicker {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.creatives-hero-title-main {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #fff;
}

.creatives-hero p {
  max-width: 620px;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.5;
}

.creatives-hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.creatives-hero-services span:not(:last-child)::after {
  content: " | ";
  white-space: pre;
}

.creatives-mobile-index {
  display: none;
}

.creatives-service-showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 64px;
}

.creatives-service-showcase-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 560px);
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.creatives-service-showcase-head > span {
  color: #0f6f72;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creatives-service-showcase-head h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.creatives-service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 5px;
  background: #173d33;
}

.creatives-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 15, 0.02) 30%, rgba(4, 17, 15, 0.9) 100%);
}

.creatives-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.creatives-service-card:hover img {
  transform: scale(1.025);
}

.creatives-service-card-copy {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px 22px;
  color: #ffffff;
}

.creatives-service-card-copy > span {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.68);
}

.creatives-service-card-copy h3 {
  margin: 0 0 7px;
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.creatives-service-card-copy p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.55;
}

.creatives-section {
  border-bottom: 1px solid rgba(23,23,23,0.12);
}

.creatives-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.creatives-section-head span {
  display: block;
  color: #0f6f72;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.creatives-section-head h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.creatives-section-head h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin-top: 20px;
  background: #0f6f72;
}

.creatives-section-head p {
  color: #626262;
  font-size: 18px;
  line-height: 1.55;
}

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

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

.creatives-card-grid article {
  border-top: 2px solid #173d33;
  padding-top: 20px;
}

.creatives-card-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.creatives-card-grid p {
  margin: 0;
  color: #626262;
  line-height: 1.58;
}

.creatives-flow {
  display: grid;
  gap: 12px;
}

.creatives-flow-step {
  display: grid;
  grid-template-columns: 54px 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,23,23,0.14);
}

.creatives-flow-step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0f6f72;
  color: #fff;
  font-weight: 900;
}

.creatives-flow-step h3,
.creatives-flow-step p {
  margin: 0;
}

.creatives-flow-step p {
  color: #626262;
  line-height: 1.45;
}

.creatives-rates {
  background: #050505;
  color: #fff;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
}

.creatives-rates .creatives-section-head p {
  color: rgba(255,255,255,0.72);
}

.creatives-rates .creatives-section-head h2 {
  color: #fff;
}

.creatives-rate-table {
  margin-top: 28px;
}

.creatives-rate-table h3 {
  display: inline-block;
  margin: 0 0 10px;
  padding: 10px 14px;
  background: #0f6f72;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.creatives-rate-row {
  display: grid;
  grid-template-columns: 260px 1fr 170px;
  gap: 8px;
  margin-bottom: 8px;
}

.creatives-rate-row > * {
  padding: 13px 14px;
  background: rgba(255,255,255,0.96);
  color: #111;
  line-height: 1.3;
}

.creatives-rate-row strong {
  background: #0f6f72;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

.creatives-rate-row em {
  border: 2px solid #0f8a8f;
  border-radius: 10px;
  color: #0d3f41;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.creatives-rate-row.is-head span {
  background: transparent;
  color: #ded3bf;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 0;
  padding-bottom: 4px;
}

.creatives-checkset {
  border: 1px solid rgba(23,23,23,0.16);
  padding: 18px;
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}

.creatives-checkset legend {
  padding: 0 8px;
  font-weight: 900;
  color: #0f6f72;
}

.creatives-checkset label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.creatives-form-card {
  max-width: 920px;
}

.creatives-form-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23,23,23,0.16);
  border-radius: 4px;
  background: #fff;
  color: #171717;
  padding: 0 13px;
  font: inherit;
}

.creatives-process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}

.creatives-process-step,
.creatives-form-progress-step {
  border: 1px solid rgba(23,23,23,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
}

.creatives-process-step {
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}

.creatives-process-step strong {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f6f72;
}

.creatives-process-step span {
  font-size: 16px;
  line-height: 1.35;
}

.creatives-form-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.creatives-form-progress-step {
  padding: 14px 16px;
  display: grid;
  gap: 3px;
  opacity: 0.72;
}

.creatives-form-progress-step strong {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #676767;
}

.creatives-form-progress-step span {
  font-size: 16px;
  line-height: 1.3;
}

.creatives-form-progress-step.is-active,
.creatives-form-progress-step.is-complete {
  opacity: 1;
  border-color: rgba(15,111,114,0.24);
}

.creatives-form-progress-step.is-active {
  background: #ffffff;
}

.creatives-form-progress-step.is-complete {
  background: rgba(15,111,114,0.08);
}

.creatives-form-stage {
  display: grid;
  gap: 18px;
}

.creatives-form-stage[hidden] {
  display: none;
}

.creatives-form-stage-head {
  display: grid;
  gap: 6px;
}

.creatives-form-stage-head span {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f6f72;
}

.creatives-form-stage-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
}

.creatives-optional-details {
  border: 1px solid rgba(23,23,23,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.5);
}

.creatives-optional-details > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #173d33;
}

.creatives-optional-details > summary::-webkit-details-marker {
  display: none;
}

.creatives-optional-body {
  display: grid;
  gap: 18px;
  padding: 0 16px 16px;
}

.creatives-form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.creatives-form-actions .career-submit {
  min-width: 160px;
  margin-top: 0;
}

.career-submit.is-secondary {
  background: transparent;
  color: #173d33;
  border: 1px solid rgba(23,61,51,0.18);
  box-shadow: none;
}

.creatives-mobile-summary {
  display: none;
}

.creatives-rate-mobile-summary {
  display: none;
}

.creatives-rate-mobile-detail {
  display: block;
  margin-top: 18px;
}

@media (max-width: 820px) {
  .creatives-page {
    display: flex;
    flex-direction: column;
  }

  .creatives-hero { order: 1; }
  .creatives-service-showcase { order: 2; }
  .creatives-mobile-index { order: 3; }
  #creatives-form { order: 4; }
  #creatives-about { order: 5; }
  #creatives-clients { order: 6; }
  #creatives-process { order: 7; }
  #creatives-rates { order: 8; }

  .creatives-hero,
  .creatives-section {
    width: 100%;
    padding: 40px 16px;
  }

  .creatives-hero,
  .creatives-card-grid,
  .creatives-card-grid.three,
  .creatives-flow-step,
  .creatives-rate-row,
  .creatives-checkset {
    grid-template-columns: 1fr;
  }

  .creatives-hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 34px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .creatives-hero-copy {
    max-width: 100%;
  }

  .creatives-hero h1 {
    margin: 0;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1;
    letter-spacing: 0;
  }

  .creatives-hero-title {
    gap: 6px;
  }

  .creatives-hero-title-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .creatives-hero-title-main {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.96;
    letter-spacing: 0;
  }

  .creatives-hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .creatives-hero-services {
    display: grid;
    gap: 3px;
    margin-top: 14px;
  }

  .creatives-hero-services span:not(:last-child)::after {
    content: none;
  }

  .creatives-mobile-index {
    position: sticky;
    top: 68px;
    z-index: 20;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    background: rgba(247,244,238,0.96);
    border-bottom: 1px solid rgba(23,23,23,0.1);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .creatives-mobile-index::-webkit-scrollbar {
    display: none;
  }

  .creatives-mobile-index a {
    flex: 0 0 auto;
    padding: 8px 11px;
    border: 1px solid rgba(23,23,23,0.14);
    border-radius: 4px;
    background: #fff;
    color: #171717;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
  }

  .creatives-mobile-index a.is-primary {
    border-color: #0f6f72;
    background: #0f6f72;
    color: #fff;
  }

  .creatives-service-showcase {
    width: 100%;
    padding: 30px 0 34px;
  }

  .creatives-service-showcase-head {
    display: block;
    margin: 0 16px 16px;
  }

  .creatives-service-showcase-head > span {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
  }

  .creatives-service-showcase-head h2 {
    max-width: 310px;
    font-size: 25px;
    line-height: 1.1;
  }

  .creatives-service-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 16px 4px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .creatives-service-cards::-webkit-scrollbar {
    display: none;
  }

  .creatives-service-card {
    flex: 0 0 min(78vw, 294px);
    min-height: 338px;
    scroll-snap-align: start;
  }

  .creatives-service-card-copy {
    padding: 20px 18px 18px;
  }

  .creatives-service-card-copy h3 {
    font-size: 25px;
  }

  .creatives-service-card-copy p {
    font-size: 11px;
    line-height: 1.5;
  }

  .creatives-section {
    border-bottom: 1px solid rgba(23,23,23,0.08);
  }

  .creatives-collapsible {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .creatives-mobile-accordion {
    display: block;
  }

  .creatives-mobile-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    color: #171717;
  }

  .creatives-rates .creatives-mobile-summary {
    color: #ffffff;
  }

  .creatives-mobile-summary::-webkit-details-marker {
    display: none;
  }

  .creatives-mobile-summary::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1;
    color: #0f6f72;
  }

  .creatives-mobile-accordion[open] > .creatives-mobile-summary::after {
    content: "-";
  }

  .creatives-mobile-panel {
    padding-top: 12px;
  }

  .creatives-section-head {
    margin-bottom: 18px;
  }

  .creatives-mobile-panel .creatives-section-head span,
  .creatives-mobile-panel .creatives-section-head h2,
  .creatives-mobile-accordion-rates .creatives-section-head p {
    display: none;
  }

  .creatives-mobile-panel .creatives-section-head {
    margin-bottom: 12px;
  }

  .creatives-mobile-panel .creatives-section-head p {
    font-size: 13px;
    line-height: 1.5;
  }

  .creatives-section-head span {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .creatives-section-head h2 {
    margin-bottom: 12px;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.06;
    letter-spacing: 0;
  }

  .creatives-section-head h2::after {
    width: 56px;
    height: 2px;
    margin-top: 14px;
  }

  .creatives-section-head p {
    font-size: 14px;
    line-height: 1.55;
  }

  .creatives-card-grid {
    gap: 16px;
  }

  .creatives-card-grid article {
    padding-top: 14px;
  }

  .creatives-card-grid h3 {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.28;
  }

  .creatives-card-grid p {
    font-size: 13px;
    line-height: 1.55;
  }

  .creatives-flow {
    gap: 8px;
  }

  .creatives-flow-step {
    gap: 10px;
    padding: 14px 0;
  }

  .creatives-flow-step span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .creatives-flow-step h3 {
    font-size: 15px;
    line-height: 1.3;
  }

  .creatives-flow-step p {
    font-size: 13px;
    line-height: 1.5;
  }

  .creatives-rates {
    padding-left: 16px;
    padding-right: 16px;
  }

  .creatives-rate-mobile-summary {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .creatives-rate-mobile-summary::-webkit-scrollbar {
    display: none;
  }

  .creatives-rate-mobile-summary article {
    flex: 0 0 min(76vw, 280px);
    scroll-snap-align: start;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.98);
    color: #111;
    border-radius: 8px;
  }

  .creatives-rate-mobile-summary strong,
  .creatives-rate-mobile-summary span,
  .creatives-rate-mobile-summary em {
    display: block;
  }

  .creatives-rate-mobile-summary strong {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.35;
    color: #0d3f41;
  }

  .creatives-rate-mobile-summary span {
    font-size: 12px;
    line-height: 1.5;
    color: #4d4d4d;
  }

  .creatives-rate-mobile-summary em {
    margin-top: 8px;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: #0f6f72;
  }

  .creatives-rate-mobile-detail {
    display: block;
    margin-top: 12px;
  }

  .creatives-rate-mobile-detail > summary {
    list-style: none;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #ffffff;
  }

  .creatives-rate-mobile-detail > summary::-webkit-details-marker {
    display: none;
  }

  .creatives-rate-mobile-detail-inner {
    padding-top: 12px;
  }

  .creatives-rate-table {
    margin-top: 18px;
  }

  .creatives-rate-table h3 {
    margin-bottom: 8px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .creatives-rate-row {
    gap: 6px;
    margin-bottom: 6px;
  }

  .creatives-rate-row > * {
    padding: 10px 11px;
    font-size: 12px;
    line-height: 1.45;
  }

  .creatives-rate-row strong {
    font-size: 11px;
  }

  .creatives-rate-row em {
    border-width: 1px;
    border-radius: 8px;
    font-size: 12px;
  }

  .creatives-rate-row.is-head {
    display: none;
  }

  .creatives-checkset {
    padding: 12px;
    margin: 14px 0;
    gap: 10px;
  }

  .creatives-checkset legend {
    font-size: 12px;
  }

  .creatives-checkset label {
    font-size: 13px;
    line-height: 1.4;
  }

  .creatives-form-card {
    max-width: none;
    padding: 16px;
  }

  .creatives-process-rail {
    position: relative;
    display: flex;
    gap: 0;
    overflow-x: auto;
    margin-bottom: 18px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .creatives-process-rail::-webkit-scrollbar {
    display: none;
  }

  .creatives-process-rail::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(15,111,114,0.24);
  }

  .creatives-process-step {
    position: relative;
    flex: 0 0 112px;
    padding: 0 12px 0 0;
    gap: 7px;
    border: 0;
    background: transparent;
  }

  .creatives-process-step strong {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f7f4ee;
    border: 1px solid rgba(15,111,114,0.35);
    font-size: 9px;
  }

  .creatives-process-step span {
    font-size: 13px;
  }

  .creatives-form-progress {
    gap: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(23,23,23,0.12);
  }

  .creatives-form-progress-step {
    padding: 8px 2px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .creatives-form-progress-step.is-active,
  .creatives-form-progress-step.is-complete {
    background: transparent;
    box-shadow: inset 0 -2px 0 #0f6f72;
  }

  .creatives-form-progress-step strong,
  .creatives-form-stage-head span {
    font-size: 10px;
  }

  .creatives-form-progress-step span {
    font-size: 13px;
  }

  .creatives-form-stage {
    gap: 14px;
  }

  .creatives-form-stage-head h3 {
    font-size: 22px;
  }

  .creatives-optional-details > summary {
    padding: 12px;
    font-size: 12px;
  }

  .creatives-optional-body {
    gap: 14px;
    padding: 0 12px 12px;
  }

  .creatives-form-card .career-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .creatives-form-card label span {
    font-size: 12px;
  }

  .creatives-form-card input,
  .creatives-form-card textarea,
  .creatives-form-card select {
    font-size: 14px;
  }

  .creatives-form-card .career-submit {
    min-height: 44px;
    font-size: 12px;
  }

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

  .creatives-form-actions.is-next {
    grid-template-columns: 1fr;
  }

  .creatives-form-actions .career-submit {
    min-width: 0;
  }
}

@media print {
  .site-header,
  .site-footer,
  .creatives-hero-actions,
  .nav-toggle,
  .creatives-form-card button,
  .career-form-status {
    display: none !important;
  }

  .creatives-page {
    background: #fff;
  }

  .creatives-hero,
  .creatives-section,
  .creatives-rates {
    max-width: none;
    padding: 24px 0;
    background: #fff !important;
    color: #111 !important;
    border-bottom: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .creatives-hero {
    min-height: auto;
  }

  .creatives-hero p,
  .creatives-hero aside,
  .creatives-section-head p,
  .creatives-rates .creatives-section-head p,
  .creatives-card-grid p,
  .creatives-flow-step p {
    color: #333 !important;
  }

  .creatives-rate-row > *,
  .creatives-rate-row strong,
  .creatives-rate-row em {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #999;
  }

  .creatives-rate-table,
  .creatives-card-grid article,
  .creatives-flow-step {
    page-break-inside: avoid;
  }
}

/* IZIN Creatives reference redesign */
.izin-creatives-view {
  background: #f7f6ef;
  color: #151715;
}

.izin-creatives-view .site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 60;
  width: min(100% - 48px, 1200px);
  min-height: 86px;
  transform: translateX(-50%);
  padding: 10px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.izin-creatives-view .brand {
  gap: 8px;
  color: #ffffff;
}

.izin-creatives-view .brand img {
  width: 34px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.izin-creatives-view .brand strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 0.82;
}

.izin-creatives-view .brand small {
  margin-top: 4px;
  color: rgba(255,255,255,0.82);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.izin-creatives-view .nav-toggle {
  display: block;
  color: #ffffff;
}

.izin-creatives-view .nav-toggle span:not(.sr-only) {
  background: #ffffff;
}

.izin-creatives-view .nav {
  position: absolute;
  top: 70px;
  right: 0;
  left: auto;
  width: 230px;
  display: grid;
  gap: 0;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  background: rgba(7,58,48,0.98);
  box-shadow: 0 14px 30px rgba(5,22,18,0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.izin-creatives-view .nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.izin-creatives-view .nav > a,
.izin-creatives-view .nav-dropdown-toggle {
  min-height: 40px;
  padding: 10px 11px;
  color: #ffffff;
  opacity: 0.9;
  font-size: 12px;
}

.izin-creatives-view .nav > a::after {
  display: none;
}

.izin-creatives-view .nav .nav-cta {
  margin-top: 5px;
  border-radius: 4px;
  background: #ffffff;
  color: #173d33 !important;
  box-shadow: none;
}

.izin-creatives-view .nav-dropdown-menu {
  position: static;
  display: none;
  min-width: 0;
  padding: 4px 8px 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.izin-creatives-view .nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}

.izin-creatives-view .nav-dropdown-menu span {
  color: rgba(255,255,255,0.75);
}

.izin-creatives-view .creatives-page {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7f6ef;
}

.izin-creatives-view .creatives-hero { order: 1; }
.izin-creatives-view .creatives-service-showcase { order: 2; }
.izin-creatives-view .creatives-mobile-index { order: 3; }
.izin-creatives-view #creatives-form { order: 4; }
.izin-creatives-view #creatives-about { order: 5; }
.izin-creatives-view #creatives-clients { order: 6; }
.izin-creatives-view #creatives-process { order: 7; }
.izin-creatives-view #creatives-rates { order: 8; }

.izin-creatives-view .creatives-hero {
  width: 100%;
  max-width: none;
  min-height: 390px;
  display: grid;
  place-items: start center;
  padding: 135px 24px 0;
  background: #0a3d2e;
  text-align: center;
}

.izin-creatives-view .creatives-hero-copy {
  max-width: 900px;
}

.izin-creatives-view .creatives-hero-title {
  display: block;
}

.izin-creatives-view .creatives-hero-title-main {
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
}

.izin-creatives-view .creatives-hero-services {
  display: block;
  margin: 10px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.izin-creatives-view .creatives-service-showcase {
  z-index: 4;
  width: min(100% - 48px, 1200px);
  max-width: none;
  margin: -155px auto 0;
  padding: 0;
}

.izin-creatives-view .creatives-service-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.izin-creatives-view .creatives-service-card {
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15,32,27,0.13);
}

.izin-creatives-view .creatives-service-card::after {
  display: none;
}

.izin-creatives-view .creatives-service-card img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: none;
}

.izin-creatives-view .creatives-service-card:hover img {
  transform: none;
}

.izin-creatives-view .creatives-service-card-copy {
  position: static;
  min-height: 154px;
  padding: 18px 18px 20px;
  color: #151715;
}

.izin-creatives-view .creatives-service-card-copy h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
}

.izin-creatives-view .creatives-service-card-copy p {
  max-width: none;
  color: #30332f;
  font-size: 12px;
  line-height: 1.55;
}

.izin-creatives-view .creatives-mobile-index {
  position: static;
  width: min(100% - 48px, 1200px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 38px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.izin-creatives-view .creatives-mobile-index a {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 8px 16px;
  border: 1px solid #969a94;
  border-radius: 999px;
  background: transparent;
  color: #151715;
  font-size: 14px;
  font-weight: 400;
}

.izin-creatives-view .creatives-mobile-index a.is-primary {
  border: 4px double #ffffff;
  background: #2f3431;
  color: #ffffff;
  box-shadow: 0 0 0 1px #777b76;
}

.izin-creatives-view #creatives-form {
  width: min(100% - 48px, 1100px);
  max-width: none;
  margin: 48px auto 0;
  padding: 0;
  border: 0;
}

.izin-creatives-view .creatives-enquiry-title {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 28px;
  font-size: 17px;
}

.izin-creatives-view .creatives-enquiry-title strong {
  font-weight: 600;
}

.izin-creatives-view .creatives-process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 38px 28px;
}

.izin-creatives-view .creatives-process-rail::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: #a8aca6;
}

.izin-creatives-view .creatives-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.izin-creatives-view .creatives-process-step strong {
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid #969b95;
  border-radius: 50%;
  background: #f7f6ef;
  color: transparent;
  font-size: 0;
}

.izin-creatives-view .creatives-process-step:first-child strong {
  border-color: #126955;
  background: #126955;
}

.izin-creatives-view .creatives-process-step span {
  font-size: 12px;
  line-height: 1.3;
}

.izin-creatives-view .creatives-process-step:first-child span {
  font-weight: 600;
}

.izin-creatives-view .creatives-form-card {
  max-width: none;
  padding: 28px 30px 30px;
  border: 0;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(25,34,30,0.12);
}

.izin-creatives-view .creatives-form-progress {
  display: none;
}

.izin-creatives-view .creatives-form-stage {
  gap: 18px;
}

.izin-creatives-view .creatives-form-stage-head > span {
  display: none;
}

.izin-creatives-view .creatives-form-stage-head h3 {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.izin-creatives-view .creatives-form-card label > span {
  margin-bottom: 7px;
  color: #151715;
  font-size: 12px;
  font-weight: 500;
}

.izin-creatives-view .creatives-form-card input,
.izin-creatives-view .creatives-form-card select,
.izin-creatives-view .creatives-form-card textarea {
  border: 1px solid #aeb2ac;
  border-radius: 6px;
  background: #ffffff;
  color: #171917;
  box-shadow: none;
}

.izin-creatives-view .creatives-form-card input,
.izin-creatives-view .creatives-form-card select {
  min-height: 44px;
}

.izin-creatives-view .creatives-form-actions {
  justify-content: center;
  margin-top: 6px;
}

.izin-creatives-view .creatives-form-actions.is-next {
  display: flex;
}

.izin-creatives-view .creatives-form-actions .career-submit {
  min-width: 190px;
  min-height: 42px;
  padding: 9px 22px;
  border: 0;
  border-radius: 999px;
  background: #2f3431;
  color: #ffffff;
  box-shadow: none;
  font-size: 12px;
}

.izin-creatives-view .creatives-form-actions .career-submit.is-secondary {
  border: 1px solid #aeb2ac;
  background: #ffffff;
  color: #2f3431;
}

.izin-creatives-view .creatives-form-actions.is-next .career-submit {
  border: 0;
  background: #2f3431;
  color: #ffffff;
}

.izin-creatives-view .creatives-optional-details {
  border-radius: 5px;
  background: #fafaf7;
}

.izin-creatives-view .creatives-section.creatives-collapsible,
.izin-creatives-view .creatives-rates {
  width: min(100% - 48px, 1200px);
  max-width: none;
  margin: 34px auto 0;
  padding: 0;
  border-top: 1px solid #b9bcb5;
  border-bottom: 0;
  background: transparent;
  color: #151715;
}

.izin-creatives-view .creatives-section.creatives-collapsible + .creatives-section.creatives-collapsible,
.izin-creatives-view .creatives-rates {
  margin-top: 0;
}

.izin-creatives-view .creatives-mobile-summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 38px 16px 10px;
  border-bottom: 1px solid #b9bcb5;
  color: #151715;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.izin-creatives-view .creatives-mobile-summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #151715;
  font-size: 26px;
  font-weight: 300;
}

.izin-creatives-view .creatives-mobile-accordion[open] > .creatives-mobile-summary::after {
  content: "-";
}

.izin-creatives-view .creatives-mobile-panel {
  padding: 22px 10px 28px;
}

.izin-creatives-view .creatives-mobile-panel .creatives-section-head span,
.izin-creatives-view .creatives-mobile-panel .creatives-section-head h2,
.izin-creatives-view .creatives-mobile-accordion-rates .creatives-section-head p {
  display: block;
}

.izin-creatives-view .creatives-rates .creatives-section-head h2,
.izin-creatives-view .creatives-rates .creatives-section-head p {
  color: #151715;
}

.izin-creatives-view .creatives-rate-mobile-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.izin-creatives-view .creatives-rate-mobile-summary article {
  padding: 14px;
  border: 1px solid #c5c8c2;
  border-radius: 5px;
  background: #ffffff;
}

.izin-creatives-view .creatives-rate-mobile-summary strong,
.izin-creatives-view .creatives-rate-mobile-summary span,
.izin-creatives-view .creatives-rate-mobile-summary em {
  display: block;
}

.izin-creatives-view .creatives-rate-mobile-summary strong {
  font-size: 13px;
}

.izin-creatives-view .creatives-rate-mobile-summary span {
  margin-top: 5px;
  color: #626662;
  font-size: 11px;
}

.izin-creatives-view .creatives-rate-mobile-summary em {
  margin-top: 10px;
  color: #126955;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.izin-creatives-view .creatives-rate-mobile-detail {
  margin-top: 16px;
}

.izin-creatives-view .creatives-rate-mobile-detail > summary {
  color: #126955;
}

.izin-creatives-view .site-footer {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid #b9bcb5;
  background: #f7f6ef;
}

.izin-creatives-view .site-footer-inner {
  width: min(100% - 48px, 1200px);
  max-width: none;
  margin: 0 auto;
  padding: 0 0 42px;
}

.creatives-bottom-nav {
  display: none;
}

@media (max-width: 760px) {
  .izin-creatives-view {
    padding-bottom: 0;
  }

  .izin-creatives-view .site-header {
    width: calc(100% - 32px);
    min-height: 70px;
    padding: 8px 0;
  }

  .izin-creatives-view .brand img {
    width: 28px;
    height: 29px;
  }

  .izin-creatives-view .brand strong {
    font-size: 23px;
  }

  .izin-creatives-view .nav {
    top: 58px;
    right: 0;
    left: auto;
    width: min(260px, calc(100vw - 32px));
  }

  .izin-creatives-view .creatives-hero {
    min-height: 300px;
    padding: 105px 16px 0;
  }

  .izin-creatives-view .creatives-hero-title-main {
    font-size: clamp(39px, 12vw, 51px);
  }

  .izin-creatives-view .creatives-hero-services {
    margin-top: 7px;
    font-size: 12px;
  }

  .izin-creatives-view .creatives-service-showcase {
    width: 100%;
    margin-top: -94px;
  }

  .izin-creatives-view .creatives-service-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 18px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .izin-creatives-view .creatives-service-card {
    flex: 0 0 min(76vw, 286px);
    scroll-snap-align: start;
  }

  .izin-creatives-view .creatives-service-card-copy {
    min-height: 140px;
    padding: 15px 15px 17px;
  }

  .izin-creatives-view .creatives-service-card-copy h3 {
    font-size: 17px;
  }

  .izin-creatives-view .creatives-service-card-copy p {
    font-size: 11px;
    line-height: 1.48;
  }

  .izin-creatives-view .creatives-mobile-index {
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 18px;
    padding: 0 16px 5px;
    scrollbar-width: none;
  }

  .izin-creatives-view .creatives-mobile-index a {
    flex: 0 0 auto;
    min-width: 92px;
    min-height: 38px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .izin-creatives-view #creatives-form {
    width: calc(100% - 32px);
    margin-top: 34px;
  }

  .izin-creatives-view .creatives-enquiry-title {
    flex-wrap: wrap;
    margin-bottom: 22px;
    font-size: 13px;
  }

  .izin-creatives-view .creatives-process-rail {
    margin: 0 0 22px;
  }

  .izin-creatives-view .creatives-process-rail::before {
    top: 8px;
  }

  .izin-creatives-view .creatives-process-step {
    gap: 7px;
  }

  .izin-creatives-view .creatives-process-step strong {
    width: 16px;
    height: 16px;
  }

  .izin-creatives-view .creatives-process-step span {
    max-width: 80px;
    font-size: 9px;
  }

  .izin-creatives-view .creatives-form-card {
    padding: 20px 16px 22px;
  }

  .izin-creatives-view .creatives-form-stage-head h3 {
    font-size: 18px;
  }

  .izin-creatives-view .creatives-form-card .career-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .izin-creatives-view .creatives-form-card label > span {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .izin-creatives-view .creatives-form-actions,
  .izin-creatives-view .creatives-form-actions.is-next {
    display: grid;
    grid-template-columns: 1fr;
  }

  .izin-creatives-view .creatives-form-actions .career-submit {
    width: 100%;
  }

  .izin-creatives-view .creatives-section.creatives-collapsible,
  .izin-creatives-view .creatives-rates {
    width: calc(100% - 32px);
    margin-top: 28px;
  }

  .izin-creatives-view .creatives-section.creatives-collapsible + .creatives-section.creatives-collapsible,
  .izin-creatives-view .creatives-rates {
    margin-top: 0;
  }

  .izin-creatives-view .creatives-mobile-summary {
    min-height: 54px;
    padding: 15px 34px 15px 6px;
    font-size: 14px;
  }

  .izin-creatives-view .creatives-mobile-summary::after {
    right: 6px;
  }

  .izin-creatives-view .creatives-rate-mobile-summary {
    display: flex;
    overflow-x: auto;
    margin-right: -10px;
    padding-right: 10px;
    scrollbar-width: none;
  }

  .izin-creatives-view .creatives-rate-mobile-summary article {
    flex: 0 0 min(74vw, 260px);
  }

  .izin-creatives-view .site-footer {
    margin-top: 38px;
  }

  .izin-creatives-view .site-footer-inner {
    width: calc(100% - 32px);
    padding-bottom: 28px;
  }

  .creatives-bottom-nav {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid #d6d8d3;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 -6px 18px rgba(21,27,23,0.07);
    backdrop-filter: blur(12px);
  }

  .creatives-bottom-nav a {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 2px;
    color: #141714;
  }

  .creatives-bottom-nav .material-symbols-outlined {
    font-size: 22px;
  }

  .creatives-bottom-nav small {
    font-size: 10px;
  }
}

/* IZIN Creatives supplied layout */
.izin-creatives-view,
.izin-creatives-view button,
.izin-creatives-view input,
.izin-creatives-view select,
.izin-creatives-view textarea {
  font-family: "Inter", "Poppins", sans-serif;
}

.izin-creatives-view .site-header {
  min-height: 64px;
  width: min(100% - 40px, 1280px);
  justify-content: flex-start;
  padding: 0;
}

.izin-creatives-view .brand {
  position: absolute;
  left: 50%;
  gap: 0;
  transform: translateX(-50%);
  pointer-events: auto;
}

.izin-creatives-view .brand img {
  display: none;
}

.izin-creatives-view .brand span {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.izin-creatives-view .brand strong {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.izin-creatives-view .brand small {
  display: block;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.izin-creatives-view .nav-toggle {
  position: absolute;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
}

.izin-creatives-view .nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  border-radius: 0;
}

.izin-creatives-view .nav {
  top: 58px;
  right: auto;
  left: 0;
}

.izin-creatives-view .creatives-hero-title-main,
.izin-creatives-view .creatives-mobile-summary,
.izin-creatives-view .creatives-form-stage-head h3,
.izin-creatives-view .creatives-section-head h2,
.izin-creatives-view .site-footer-brand strong {
  font-family: "Playfair Display", "Times New Roman", serif;
}

.izin-creatives-view .creatives-hero {
  min-height: 360px;
  padding-top: 102px;
}

.izin-creatives-view .creatives-hero-title-main {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
}

.izin-creatives-view .creatives-hero-services {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.izin-creatives-view .creatives-service-showcase {
  width: min(100% - 40px, 1280px);
  margin-top: -130px;
}

.izin-creatives-view .creatives-service-cards {
  gap: 10px;
}

.izin-creatives-view .creatives-service-card {
  border: 1px solid rgba(10, 61, 46, 0.1);
  box-shadow: 0 8px 18px rgba(20, 35, 30, 0.08);
}

.izin-creatives-view .creatives-service-card img {
  aspect-ratio: 2 / 1;
}

.izin-creatives-view .creatives-service-card-copy {
  min-height: 92px;
  padding: 13px 14px 15px;
}

.izin-creatives-view .creatives-service-card-copy h3 {
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.izin-creatives-view .creatives-service-card-copy p {
  color: #404944;
  font-size: 12px;
  line-height: 1.42;
}

.izin-creatives-view .creatives-mobile-index {
  width: min(100% - 40px, 720px);
  gap: 8px;
  margin-top: 30px;
}

.izin-creatives-view .creatives-mobile-index a {
  min-height: 40px;
  border-color: #31584b;
  color: #0a3d2e;
  font-size: 13px;
}

.izin-creatives-view .creatives-mobile-index a.is-primary {
  border: 1px solid #00261b;
  background: #00261b;
  box-shadow: none;
}

.izin-creatives-view #creatives-form {
  margin-top: 40px;
}

.izin-creatives-view .creatives-enquiry-title {
  color: #0a3d2e;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.izin-creatives-view .creatives-enquiry-title strong {
  text-transform: uppercase;
}

.izin-creatives-view .creatives-form-card {
  border: 1px solid rgba(10, 61, 46, 0.1);
  box-shadow: 0 9px 22px rgba(20, 35, 30, 0.08);
}

.izin-creatives-view .creatives-form-stage-head h3 {
  color: #00261b;
  font-size: 24px;
}

.izin-creatives-view .creatives-form-card input,
.izin-creatives-view .creatives-form-card select,
.izin-creatives-view .creatives-form-card textarea {
  border: 0;
  background: #f4f4f0;
}

.izin-creatives-view .creatives-form-actions .career-submit,
.izin-creatives-view .creatives-form-actions.is-next .career-submit {
  background: #181a19;
}

.izin-creatives-view .creatives-section.creatives-collapsible,
.izin-creatives-view .creatives-rates {
  border-color: rgba(10, 61, 46, 0.16);
}

.izin-creatives-view .creatives-mobile-summary {
  color: #00261b;
  font-weight: 600;
}

.izin-creatives-view .site-footer {
  background: #efeeea;
}

@media (max-width: 760px) {
  .izin-creatives-view .site-header {
    width: calc(100% - 40px);
    min-height: 64px;
    padding: 0;
  }

  .izin-creatives-view .creatives-hero {
    min-height: 220px;
    padding: 88px 20px 0;
  }

  .izin-creatives-view .creatives-hero-title-main {
    font-size: clamp(34px, 10.3vw, 40px);
    line-height: 1.08;
  }

  .izin-creatives-view .creatives-hero-services {
    margin-top: 5px;
    font-size: 11px;
  }

  .izin-creatives-view .creatives-service-showcase {
    width: calc(100% - 40px);
    margin-top: -28px;
  }

  .izin-creatives-view .creatives-service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .izin-creatives-view .creatives-service-card {
    min-width: 0;
  }

  .izin-creatives-view .creatives-service-card img {
    aspect-ratio: 1.12 / 1;
  }

  .izin-creatives-view .creatives-service-card-copy {
    min-height: 79px;
    padding: 8px 7px 9px;
  }

  .izin-creatives-view .creatives-service-card-copy h3 {
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.15;
  }

  .izin-creatives-view .creatives-service-card-copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 9px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .izin-creatives-view .creatives-mobile-index {
    width: calc(100% - 40px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    overflow: visible;
    margin-top: 24px;
    padding: 0;
  }

  .izin-creatives-view .creatives-mobile-index a {
    flex: 1 1 29%;
    min-width: 94px;
    min-height: 38px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .izin-creatives-view #creatives-form {
    width: calc(100% - 40px);
    margin-top: 36px;
  }

  .izin-creatives-view .creatives-enquiry-title {
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .izin-creatives-view .creatives-form-card {
    padding: 20px 14px 22px;
  }

  .izin-creatives-view .creatives-form-stage-head h3 {
    font-size: 21px;
  }

  .izin-creatives-view .creatives-section.creatives-collapsible,
  .izin-creatives-view .creatives-rates {
    width: calc(100% - 40px);
  }

  .izin-creatives-view .creatives-mobile-summary {
    font-size: 17px;
  }

  .izin-creatives-view .site-footer-inner {
    width: calc(100% - 40px);
  }
}

/* IZIN Hub */
.izin-hub-view {
  background: #faf9f5;
  color: #1b1c1a;
  font-family: "Inter", "Poppins", sans-serif;
}

.izin-hub-view button,
.izin-hub-view input,
.izin-hub-view select {
  font: inherit;
}

.izin-hub-header {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(10, 61, 46, 0.1);
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(14px);
}

.izin-hub-wordmark {
  color: #00261b;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.izin-hub-header-action {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #0a3d2e;
}

.izin-hub-header-action .material-symbols-outlined {
  font-size: 22px;
}

.izin-hub {
  width: min(100% - 40px, 1180px);
  min-height: calc(100vh - 130px);
  margin: 0 auto;
  padding: 112px 0 72px;
}

.izin-hub-hero {
  max-width: 720px;
  margin-bottom: 42px;
}

.izin-hub-eyebrow,
.izin-hub-section-head > p {
  margin: 0 0 8px;
  color: #557067;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.izin-hub-hero h1,
.izin-hub-section-head h2,
.izin-hub-consultation h2 {
  margin: 0;
  color: #00261b;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.izin-hub-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
}

.izin-hub-hero > p:last-child {
  max-width: 580px;
  margin: 14px 0 0;
  color: #52605b;
  font-size: 16px;
  line-height: 1.65;
}

.izin-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.izin-hub-section-head {
  margin-bottom: 16px;
}

.izin-hub-section-head h2 {
  font-size: 29px;
  line-height: 1.15;
}

.izin-hub-division-list {
  display: grid;
  gap: 12px;
}

.izin-hub-division {
  min-height: 112px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(10, 61, 46, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 43, 34, 0.05);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

a.izin-hub-division:hover,
a.izin-hub-division:focus-visible {
  border-color: rgba(10, 61, 46, 0.36);
  transform: translateY(-2px);
}

.izin-hub-division > img {
  width: 112px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
}

.izin-hub-division-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.izin-hub-division-copy strong {
  color: #00261b;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
}

.izin-hub-division-copy small {
  color: #52605b;
  font-size: 12px;
  line-height: 1.45;
}

.izin-hub-division-copy em {
  width: max-content;
  margin-top: 4px;
  padding: 3px 7px;
  border: 1px solid rgba(10, 61, 46, 0.15);
  border-radius: 4px;
  color: #66736e;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.izin-hub-division-arrow {
  color: #4a7567;
  font-size: 21px;
}

.izin-hub-division.is-upcoming {
  background: #f4f4f0;
  box-shadow: none;
}

.izin-hub-consultation {
  padding: 28px;
  border-radius: 8px;
  background: #0a3d2e;
  color: #ffffff;
}

.izin-hub-consultation .izin-hub-eyebrow {
  color: #a0d1bc;
}

.izin-hub-consultation h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.1;
}

.izin-hub-consultation > p:not(.izin-hub-eyebrow) {
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.izin-hub-form {
  display: grid;
  gap: 14px;
}

.izin-hub-form label {
  display: grid;
  gap: 6px;
}

.izin-hub-form label > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 500;
}

.izin-hub-form input,
.izin-hub-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
}

.izin-hub-form select option {
  color: #1b1c1a;
}

.izin-hub-form input:focus,
.izin-hub-form select:focus {
  border-color: #bbedd7;
}

.izin-hub-form .izin-submit {
  min-height: 46px;
  margin-top: 4px;
  border: 0;
  border-radius: 6px;
  background: #bbedd7;
  color: #00261b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.izin-hub-footer {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(10, 61, 46, 0.1);
  color: #52605b;
  font-size: 11px;
}

.izin-hub-footer strong {
  color: #00261b;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 19px;
}

.izin-hub-bottom-nav {
  display: none;
}

@media (max-width: 820px) {
  .izin-hub-view {
    padding-bottom: 72px;
  }

  .izin-hub {
    padding: 94px 0 42px;
  }

  .izin-hub-hero {
    margin-bottom: 30px;
  }

  .izin-hub-hero h1 {
    font-size: clamp(40px, 12vw, 50px);
  }

  .izin-hub-hero > p:last-child {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }

  .izin-hub-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .izin-hub-section-head h2 {
    font-size: 25px;
  }

  .izin-hub-division {
    min-height: 92px;
    grid-template-columns: 72px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 9px 11px 9px 9px;
  }

  .izin-hub-division > img {
    width: 72px;
    height: 72px;
  }

  .izin-hub-division-copy strong {
    font-size: 18px;
  }

  .izin-hub-division-copy small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .izin-hub-consultation {
    padding: 24px 18px;
  }

  .izin-hub-consultation h2 {
    font-size: 28px;
  }

  .izin-hub-footer {
    display: grid;
    justify-content: start;
    gap: 4px;
    padding-bottom: 24px;
  }

  .izin-hub-bottom-nav {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(10, 61, 46, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -6px 18px rgba(21, 27, 23, 0.07);
    backdrop-filter: blur(12px);
  }

  .izin-hub-bottom-nav a {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 2px;
    color: #26463c;
  }

  .izin-hub-bottom-nav .material-symbols-outlined {
    font-size: 21px;
  }

  .izin-hub-bottom-nav small {
    font-size: 9px;
  }
}

/* IZIN Creatives service rate dialog */
.izin-creatives-view .creatives-service-card {
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.izin-creatives-view .creatives-service-card:focus-visible {
  outline: 2px solid #bbedd7;
  outline-offset: 3px;
}

.izin-creatives-view .creatives-service-card-copy > span {
  display: block;
}

.izin-creatives-view .creatives-service-price {
  margin-top: 9px;
  color: #44564f;
  font-size: 10px;
  font-weight: 500;
}

.izin-creatives-view .creatives-service-link {
  margin-top: 4px;
  color: #176b56;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

body.creatives-rate-dialog-open {
  overflow: hidden;
}

.creatives-rate-dialog[hidden],
.creatives-rate-panel[hidden] {
  display: none;
}

.creatives-rate-dialog {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.creatives-rate-dialog-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 22, 15, 0.7);
  cursor: pointer;
}

.creatives-rate-dialog-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  max-height: min(82vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(10, 61, 46, 0.14);
  border-radius: 8px;
  background: #faf9f5;
  box-shadow: 0 26px 70px rgba(0, 25, 18, 0.24);
}

.creatives-rate-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(10, 61, 46, 0.12);
  background: #ffffff;
}

.creatives-rate-dialog-head small {
  display: block;
  margin-bottom: 4px;
  color: #557067;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creatives-rate-dialog-head h2 {
  margin: 0;
  color: #00261b;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.12;
}

.creatives-rate-dialog-close {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(10, 61, 46, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: #00261b;
  cursor: pointer;
}

.creatives-rate-dialog-close .material-symbols-outlined {
  font-size: 20px;
}

.creatives-rate-dialog-body {
  overflow-y: auto;
  padding: 10px 22px 22px;
}

.creatives-rate-panel {
  display: grid;
}

.creatives-rate-group {
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(10, 61, 46, 0.12);
}

.creatives-rate-group h3 {
  margin: 0 0 8px;
  color: #00261b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creatives-rate-group dl {
  margin: 0;
}

.creatives-rate-group dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  padding: 9px 0;
}

.creatives-rate-group dl > div + div {
  border-top: 1px solid rgba(10, 61, 46, 0.08);
}

.creatives-rate-group dt,
.creatives-rate-group dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.creatives-rate-group dt {
  color: #38443f;
}

.creatives-rate-group dd {
  color: #0a624d;
  font-weight: 600;
  text-align: right;
}

.creatives-rate-note {
  margin: 14px 0 0;
  color: #69746f;
  font-size: 10px;
  line-height: 1.5;
}

.creatives-rate-enquire {
  min-height: 44px;
  margin-top: 16px;
  border: 0;
  border-radius: 6px;
  background: #0a3d2e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 760px) {
  .izin-creatives-view .creatives-service-cards {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .izin-creatives-view .creatives-service-card {
    min-height: 104px;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .izin-creatives-view .creatives-service-card img {
    width: 104px;
    height: 100%;
    min-height: 104px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .izin-creatives-view .creatives-service-card-copy {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 12px;
  }

  .izin-creatives-view .creatives-service-card-copy h3 {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.16;
  }

  .izin-creatives-view .creatives-service-card-copy p {
    display: -webkit-box;
    font-size: 10.5px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .izin-creatives-view .creatives-service-price {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.25;
  }

  .izin-creatives-view .creatives-service-link {
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.25;
  }

  .creatives-rate-dialog {
    place-items: end center;
    padding: 0;
  }

  .creatives-rate-dialog-sheet {
    width: 100%;
    max-height: 82vh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
  }

  .creatives-rate-dialog-head {
    padding: 16px 16px 13px;
  }

  .creatives-rate-dialog-head h2 {
    font-size: 24px;
  }

  .creatives-rate-dialog-body {
    padding: 4px 16px calc(18px + env(safe-area-inset-bottom));
  }

  .creatives-rate-group {
    padding-top: 15px;
  }

  .creatives-rate-group dl > div {
    gap: 12px;
    padding: 8px 0;
  }

  .creatives-rate-group dt,
  .creatives-rate-group dd {
    font-size: 12px;
  }
}

/* Interiors homepage mobile system */
.izin-solution-toggle {
  display: none;
}

@media (max-width: 760px) {
  .home .izin-form-body input,
  .home .izin-form-body select {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
  }

  .home .izin-field label {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .home .izin-form-progress {
    margin-bottom: 12px;
  }

  .home .izin-form-actions .izin-submit {
    min-width: 0;
    min-height: 44px;
    border-radius: 6px;
    font-size: 11px;
  }

  .home .izin-form-actions:not(.izin-form-actions-split) .izin-submit {
    width: 100%;
  }

  .home .izin-form-actions-split {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
  }

  .izin-solutions-section {
    padding: 32px 0 36px;
  }

  .izin-solutions-head {
    margin-bottom: 16px;
  }

  .izin-solutions-title,
  .izin-contact-head h2,
  #videos .video-section-head h2 {
    max-width: 340px;
    font-size: 23px;
    line-height: 1.14;
  }

  .izin-solutions-text,
  .izin-contact-head p {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .izin-solutions-grid {
    gap: 10px;
  }

  .izin-solution-card,
  .izin-solution-card:nth-child(1),
  .izin-solution-card:nth-child(2),
  .izin-solution-card:nth-child(3) {
    padding: 17px 16px 14px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 7px 18px rgba(30, 29, 34, 0.05);
  }

  .izin-solution-card:hover {
    transform: none;
  }

  .izin-solution-card::before {
    right: 16px;
    left: 16px;
    height: 2px;
    border-radius: 0;
  }

  .izin-solution-number {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .izin-solution-card h3 {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.18;
  }

  .izin-solution-intro {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.48;
  }

  .izin-solution-toggle {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
  }

  .izin-solution-toggle strong {
    font-size: 20px;
    font-weight: 400;
  }

  .izin-solution-card .izin-service-group {
    display: none;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding: 12px 0;
  }

  .izin-solution-card.is-open .izin-service-group {
    display: grid;
  }

  .izin-service-index {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }

  .izin-service-detail strong {
    font-size: 12px;
  }

  .izin-service-detail p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.45;
  }

  #works .strip-head h2,
  #gallery .strip-head h2 {
    margin: 5px 0 0;
    font-family: "Times New Roman", Times, serif;
    font-size: 21px;
    line-height: 1.16;
    font-weight: 400;
  }

  .izin-contact-section {
    padding: 32px 0 36px;
  }

  .izin-contact-head {
    margin-bottom: 16px;
  }

  .izin-contact-main {
    gap: 14px;
  }

  .izin-contact-details,
  .izin-map-card {
    border-radius: 8px;
  }

  .izin-contact-details {
    padding: 14px 16px 16px;
  }

  .izin-contact-details > div:not(.izin-contact-actions) {
    padding: 11px 0;
  }

  .izin-contact-details h3 {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .izin-contact-details p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .izin-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .izin-contact-actions a {
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 10px;
  }

  .izin-contact-actions .outline {
    display: none;
  }

  .izin-map-card iframe {
    height: 230px;
  }

  .izin-map-card > div {
    padding: 15px 16px 17px;
  }

  .izin-map-card h3 {
    font-size: 20px;
  }

  .izin-map-card p {
    margin-bottom: 11px;
    font-size: 12px;
    line-height: 1.55;
  }

  .izin-map-card a {
    min-height: 42px;
    border-radius: 6px;
    font-size: 9.5px;
  }
}

/* IZIN Creatives interaction refinement */
.izin-creatives-view .creatives-hero {
  min-height: 260px;
  padding: 92px 24px 0;
}

.izin-creatives-view .creatives-service-showcase {
  margin-top: 28px;
}

.izin-creatives-view .creatives-service-card {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.izin-creatives-view .creatives-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 61, 46, 0.32);
  box-shadow: 0 12px 26px rgba(20, 35, 30, 0.13);
}

.izin-creatives-view .creatives-service-card-copy > .creatives-service-link {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 8px;
  border: 1px solid rgba(10, 61, 46, 0.2);
  border-radius: 4px;
  color: #0a5d49;
  background: #f7faf8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.izin-creatives-view .creatives-service-link .material-symbols-outlined {
  font-size: 14px;
  transition: transform 0.18s ease;
}

.izin-creatives-view .creatives-service-card:hover .creatives-service-link .material-symbols-outlined,
.izin-creatives-view .creatives-service-card:focus-visible .creatives-service-link .material-symbols-outlined {
  transform: translateX(2px);
}

.creatives-enquiry-panel[hidden] {
  display: none;
}

.creatives-enquiry-open {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid #0a3d2e;
  border-radius: 6px;
  background: #0a3d2e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.creatives-enquiry-open .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.18s ease;
}

.creatives-enquiry-open:hover .material-symbols-outlined,
.creatives-enquiry-open:focus-visible .material-symbols-outlined {
  transform: translateX(3px);
}

.creatives-enquiry-open:focus-visible {
  outline: 2px solid #81bca8;
  outline-offset: 3px;
}

.creatives-enquiry.is-open .creatives-enquiry-open {
  display: none;
}

.creatives-enquiry-panel {
  animation: creatives-form-reveal 0.22s ease both;
}

@keyframes creatives-form-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.izin-creatives-view .creatives-site-footer {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(10, 61, 46, 0.14);
  background: #efeeea;
}

.izin-creatives-view .creatives-site-footer .site-footer-inner {
  width: min(100% - 40px, 1280px);
  padding: 0;
  align-items: center;
}

.izin-creatives-view .creatives-site-footer .site-footer-brand strong {
  margin-bottom: 4px;
  color: #00261b;
  font-size: 18px;
}

.izin-creatives-view .creatives-site-footer .site-footer-brand p {
  margin: 0;
  font-size: 10px;
}

.izin-creatives-view .creatives-site-footer .site-footer-nav {
  gap: 18px;
}

@media (max-width: 760px) {
  .izin-creatives-view .creatives-hero {
    min-height: 180px;
    padding: 78px 20px 0;
  }

  .izin-creatives-view .creatives-service-showcase {
    margin-top: 18px;
  }

  .izin-creatives-view .creatives-service-card:hover {
    transform: none;
  }

  .izin-creatives-view .creatives-service-card-copy > .creatives-service-link {
    min-height: 25px;
    margin-top: 6px;
    padding: 4px 7px;
    font-size: 8px;
  }

  .creatives-enquiry-open {
    min-height: 54px;
    padding: 0 16px;
    font-size: 10px;
  }

  .izin-creatives-view .creatives-site-footer {
    margin-top: 34px;
    padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
  }

  .izin-creatives-view .creatives-site-footer .site-footer-inner {
    width: calc(100% - 40px);
    gap: 14px;
  }

  .izin-creatives-view .creatives-site-footer .site-footer-nav {
    gap: 10px 18px;
  }
}

/* Homepage mobile consultation reveal */
.izin-mobile-form-launcher {
  display: none;
}

@media (max-width: 760px) {
  body.home .izin-mobile-form-launcher {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
    border: 1px solid #2b2a32;
    border-radius: 6px;
    background: #2b2a32;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }

  body.home .izin-mobile-form-launcher[hidden] {
    display: none;
  }

  body.home .izin-mobile-form-launcher > span:last-child {
    font-size: 18px;
    line-height: 1;
  }

  body.home .izin-home-form-card {
    display: none;
  }

  body.home .izin-home-form-card.is-mobile-open {
    display: block;
    animation: homepage-form-reveal 0.22s ease both;
  }
}

@keyframes homepage-form-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
