/*
 * Expolink responsive UX layer
 * Loaded after style.css so the existing visual language and business UI remain
 * intact while the mobile/accessibility fixes below take precedence.
 */
:root {
  --ux-focus: 0 0 0 4px rgba(16, 185, 129, .22);
  --ux-header-offset: 132px;
  --ux-safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  scroll-padding-top: var(--ux-header-offset);
  overflow-x: clip;
}

:where([id]) {
  scroll-margin-top: var(--ux-header-offset);
}

body {
  overflow-x: clip;
}

body.has-mobile-sticky-buy main {
  padding-bottom: 88px;
}

body.menu-is-open {
  overflow: hidden;
}

button,
a,
input,
select,
textarea,
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #5ee0b4;
  outline-offset: 3px;
  box-shadow: var(--ux-focus);
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: .62;
}

.skip-link {
  position: fixed;
  inset-inline-start: 14px;
  top: 10px;
  z-index: 200;
  transform: translateY(-180%);
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 8px 13px;
  font-weight: 900;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.menu-backdrop {
  display: none;
  pointer-events: none;
}

.mobile-nav-account {
  display: none;
}

.mobile-account-link {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  color: #dce8f2;
  background: rgba(255,255,255,.06);
}

.mobile-account-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #d7e7ef !important;
  background: rgba(255,255,255,.06);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  color: #fff !important;
  background: rgba(255,255,255,.14);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-link.whatsapp:hover { background: #16a675; }
.social-link.telegram:hover { background: #168dcc; }
.social-link.instagram:hover { background: #b32978; }
.social-link.bale:hover { background: #6c4bd1; }

.global-search button {
  width: 44px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: grid;
  place-items: center;
}

.global-search button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.global-search input {
  padding-inline-start: 16px;
  padding-inline-end: 58px;
}

.toast-region {
  position: fixed;
  inset-inline-start: 14px;
  inset-inline-end: 14px;
  top: calc(var(--ux-header-offset) + 12px);
  z-index: 120;
  display: grid;
  justify-items: start;
  gap: 8px;
  pointer-events: none;
}

.toast {
  max-width: min(460px, 100%);
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 750;
  pointer-events: auto;
  animation: ux-toast-in .2s ease both;
}

.toast.success {
  border-color: #b9ead8;
  background: #effcf7;
  color: #086c50;
}

.toast.error {
  border-color: #ffd0d6;
  background: #fff2f3;
  color: #9f2435;
}

.toast.warning {
  border-color: #f4e4af;
  background: #fff9e7;
  color: #705100;
}

@keyframes ux-toast-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.global-search {
  isolation: isolate;
}

.global-search input {
  min-width: 0;
}

.live-results {
  z-index: 20;
}

.live-results a[aria-selected="true"] {
  background: #eafaf4;
  color: #087759;
}

.live-empty {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
}

.hero-proof span:before,
.plan li:before {
  content: "✓";
}

.mini-row {
  overflow: hidden;
}

.expo-card {
  min-height: 100%;
}

.expo-card h3 {
  overflow-wrap: anywhere;
}

.expo-card h3 a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color .2s ease;
}

.expo-card h3 a:hover,
.expo-card h3 a:focus-visible {
  text-decoration-color: currentColor;
}

.expo-top .meta,
.expo-card .meta {
  overflow-wrap: anywhere;
}

.expo-foot .btn {
  min-width: 110px;
}

.filter-shell {
  margin-bottom: 22px;
}

.filter-toggle {
  display: none;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 9px 13px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.filter-toggle .filter-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #e8faf4;
  color: #087759;
  font-size: 11px;
}

.filters {
  align-items: end;
}

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

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -8px 0 20px;
}

.filter-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #cfe8de;
  border-radius: 999px;
  padding: 5px 10px;
  background: #effcf7;
  color: #087759;
  font-size: 11px;
  font-weight: 800;
}

.filter-chips a.clear {
  border-color: var(--line);
  background: #fff;
  color: var(--muted);
}

.table-wrap {
  position: relative;
}

.table-wrap:not(.responsive-data) {
  scrollbar-color: #9eb4c2 #f4f7f9;
}

.table-wrap:not(.responsive-data)::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
  background: linear-gradient(to left, rgba(255,255,255,.95), transparent);
  opacity: 0;
}

.responsive-data {
  overflow: visible;
  border: 0;
  background: transparent;
}

.responsive-data .data-table {
  min-width: 0;
}

.responsive-data .data-table caption {
  padding: 10px 0;
  color: var(--muted);
  text-align: right;
  font-size: 12px;
}

.responsive-data .data-table th {
  white-space: nowrap;
}

.responsive-data .data-table td {
  overflow-wrap: anywhere;
}

.access-banner {
  align-items: center;
}

.access-banner > :first-child {
  min-width: 0;
}

.lead-select,
.lead-note {
  max-width: 100%;
}

[data-record-id][data-save-state="saving"] {
  opacity: .72;
}

[data-record-id][data-save-state="saved"] {
  box-shadow: inset 3px 0 0 #10b981;
}

[data-record-id][data-save-state="error"] {
  box-shadow: inset 3px 0 0 #d64255;
}

.mobile-sticky-buy {
  padding-bottom: calc(9px + var(--ux-safe-bottom));
}

.mobile-sticky-buy .price {
  min-width: max-content;
  align-self: center;
}

.mobile-sticky-buy .btn {
  min-height: 48px;
}

.ltr {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
  overflow-wrap: anywhere;
}

.cart-item-copy,
.cart-item-actions {
  min-width: 0;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.cart-remove {
  display: inline-flex;
}

.cart-empty-cta {
  margin-top: 12px;
}

.dashboard-subscription {
  margin-top: 14px;
}

.dashboard-section-head {
  margin-top: 35px;
}

.dashboard-notification {
  margin-bottom: 8px;
}

.dashboard-logout {
  margin-top: 20px;
}

.purchase-support-link {
  margin-top: 8px;
}

.auth-help {
  margin-bottom: 15px;
}

.summary-line {
  align-items: flex-start;
}

.summary-line b {
  max-width: 68%;
  overflow-wrap: anywhere;
  text-align: left;
}

.admin-tabs {
  scrollbar-width: thin;
}

.admin-tabs a:focus-visible {
  position: relative;
  z-index: 1;
}

.admin-filters {
  min-width: 0;
}

.pay-actions,
.mini-search {
  min-width: 0;
}

.pay-actions input,
.mini-search input {
  min-width: 0;
}

@media (max-width: 1000px) {
  :root {
    --ux-header-offset: 122px;
  }

  .site-header {
    z-index: 100;
  }

  .main-nav {
    z-index: 70;
    max-height: calc(100dvh - 96px);
    overflow: auto;
    pointer-events: auto;
  }

  .main-nav.open {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    pointer-events: auto;
  }

  .main-nav > a {
    color: #f4fbff;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-actions > .btn {
    display: none;
  }

  .mobile-account-link {
    display: inline-flex;
  }

  .menu-backdrop.is-visible {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(3, 15, 24, .55);
    pointer-events: auto;
  }

  .mobile-nav-account {
    display: block;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 5px;
    padding-top: 8px;
  }

  .mobile-nav-account a {
    display: block;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 850;
  }

  .mobile-nav-account a:hover {
    background: rgba(255,255,255,.08);
  }

  .table-wrap:not(.responsive-data)::after {
    opacity: .75;
  }

  .access-banner {
    align-items: flex-start;
  }
}

@media (min-width: 681px) and (max-width: 1000px) {
  :root {
    --ux-header-offset: 136px;
  }

  .admin-tabs {
    top: 136px;
  }
}

@media (max-width: 680px) {
  :root {
    --ux-header-offset: 116px;
  }

  body.has-mobile-sticky-buy main {
    padding-bottom: calc(82px + var(--ux-safe-bottom));
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-row {
    gap: 7px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand > span {
    min-width: 0;
  }

  .brand b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 5px;
  }

  .nav-actions > .btn {
    display: none;
  }

  .mobile-account-link {
    display: inline-flex;
  }

  .cart-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-height: 42px;
    padding: 4px 3px;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }

  .global-search-wrap {
    padding-inline: 0;
  }

  .global-search {
    height: 46px;
  }

  .global-search input {
    padding-inline-start: 16px;
    padding-inline-end: 58px;
    font-size: 13px;
  }

  .global-search button {
    min-width: 44px;
    width: 44px;
    padding-inline: 0;
  }

  .live-results {
    top: 51px;
    max-height: min(58dvh, 340px);
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .hero-subtitle {
    line-height: 1.9;
  }

  .hero-proof {
    display: grid;
    gap: 5px;
  }

  .mini-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 12px;
  }

  .mini-row.head {
    display: none;
  }

  .mini-row:not(.head) span:last-child {
    align-self: stretch;
    margin-top: 4px;
  }

  .stats-box {
    grid-template-columns: 1fr 1fr;
  }

  .stats-box > div {
    min-width: 0;
  }

  .stats-box b,
  .stats-box span {
    overflow-wrap: anywhere;
  }

  .section-head h2 {
    line-height: 1.45;
  }

  .expo-card {
    padding: 16px;
    border-radius: 16px;
  }

  .expo-card h3 {
    font-size: 18px;
  }

  .expo-stats {
    margin: 12px 0;
  }

  .expo-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .expo-foot .btn {
    width: 100%;
  }

  .filter-shell {
    margin-bottom: 18px;
  }

  .filter-toggle {
    display: flex;
  }

  .filter-shell > .filters {
    display: none;
    margin-top: 8px;
    grid-template-columns: 1fr !important;
    padding: 12px;
  }

  .filter-shell > .filters.is-open {
    display: grid;
  }

  .blog-filter {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .filters > *:first-child {
    grid-column: auto !important;
  }

  .filters .btn {
    width: 100%;
  }

  .filter-chips {
    margin-top: 8px;
  }

  .filter-chips a {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .access-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .access-banner .inline-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .access-banner .btn {
    width: 100%;
  }

  .summary-card {
    border-radius: 16px;
  }

  .responsive-data .data-table,
  .responsive-data .data-table tbody,
  .responsive-data .data-table tr,
  .responsive-data .data-table td {
    display: block;
    width: 100%;
  }

  .responsive-data .data-table {
    border-collapse: separate;
    border-spacing: 0;
  }

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

  .responsive-data .data-table tbody {
    display: grid !important;
    gap: 10px;
  }

  .responsive-data .data-table tr {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(20, 40, 60, .04);
  }

  .responsive-data .data-table td {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    padding: 7px 0;
    border: 0;
    border-bottom: 1px solid #edf1f4;
    text-align: right;
  }

  .responsive-data .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
  }

  .responsive-data .data-table td:first-child,
  .responsive-data .data-table td[data-label="یادداشت"],
  .responsive-data .data-table td[data-label="وضعیت پیگیری"] {
    grid-column: 1 / -1;
  }

  .responsive-data .data-table td:first-child {
    padding-top: 0;
  }

  .responsive-data .data-table td:last-child {
    border-bottom: 0;
  }

  .responsive-data .data-table td:first-child b {
    font-size: 15px;
  }

  .responsive-data .data-table .lead-select,
  .responsive-data .data-table .lead-note {
    width: 100%;
    min-width: 0;
    height: 44px;
  }

  .responsive-data .data-table .lead-note {
    min-height: 44px !important;
  }

  .table-wrap:not(.responsive-data) {
    border-radius: 13px;
  }

  .table-wrap:not(.responsive-data) .data-table {
    min-width: 720px;
  }

  .table-wrap:not(.responsive-data)::before {
    content: "برای دیدن ستون‌های بیشتر، افقی بکشید";
    display: block;
    padding: 7px 10px;
    color: var(--muted);
    background: #f8fafb;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
  }

  .lead-select {
    min-width: 0;
  }

  .lead-note {
    min-width: 0;
  }

  .mobile-sticky-buy {
    left: 0;
    right: 0;
    padding-inline: 12px;
  }

  .mobile-sticky-buy .price {
    flex: 0 0 auto;
  }

  .mobile-sticky-buy .btn {
    min-width: 0;
    width: auto;
    flex: 1 1 auto;
    padding-inline: 12px;
  }

  .cart-item-actions {
    justify-content: space-between;
    margin-top: 8px;
  }

  .cart-item-actions .btn {
    margin-top: 0;
  }

  .site-footer {
    padding-bottom: calc(24px + var(--ux-safe-bottom));
  }

  .footer-bottom {
    overflow-wrap: anywhere;
  }

  .admin-tabs {
    margin-inline: -6px;
    padding-inline: 5px;
  }

  .admin-filters {
    grid-template-columns: 1fr !important;
  }

  .pay-actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .pay-actions .btn,
  .pay-actions input {
    width: 100%;
  }

  .mini-search {
    width: 100%;
  }

  .mini-search input {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand b {
    font-size: 15px;
  }

  .global-search input {
    padding-inline-start: 14px;
    padding-inline-end: 54px;
  }

  .global-search button {
    min-width: 42px;
    width: 42px;
    padding-inline: 0;
  }

  .access-banner .inline-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    min-height: 50px;
  }
}

.multimedia-page {
  --mm-ink: #071827;
  --mm-blue: #0b2d4a;
  --mm-gold: #f4c84b;
  --mm-cyan: #6ce4dc;
  --mm-paper: #f3f0e9;
  background: var(--mm-paper);
}

.mm-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 92px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(108,228,220,.15), transparent 26%),
    radial-gradient(circle at 88% 70%, rgba(244,200,75,.13), transparent 28%),
    linear-gradient(135deg, #04111e 0%, #09253b 55%, #061521 100%);
}

.mm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.mm-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 66px;
  align-items: center;
}

.mm-hero-copy {
  max-width: 590px;
}

.mm-eyebrow,
.mm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mm-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
}

.mm-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--mm-cyan);
  box-shadow: 0 0 0 6px rgba(108,228,220,.12), 0 0 25px var(--mm-cyan);
}

.mm-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.1;
  letter-spacing: -.06em;
}

.mm-hero h1 strong,
.mm-showcase-copy strong,
.mm-final-cta strong {
  color: var(--mm-gold);
  font-weight: 950;
}

.mm-hero-copy > p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #b6cad5;
  font-size: 17px;
  line-height: 2;
}

.mm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mm-btn-primary {
  color: #092216 !important;
  background: linear-gradient(135deg, var(--mm-gold), #ffe790);
  box-shadow: 0 15px 34px rgba(244,200,75,.2);
}

.mm-btn-primary:hover {
  background: linear-gradient(135deg, #ffe68a, var(--mm-gold));
}

.mm-btn-ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
}

.mm-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: #90a8b8;
  font-size: 11px;
}

.mm-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mm-proof b {
  color: var(--mm-cyan);
  font-size: 15px;
}

.mm-hero-art {
  position: relative;
  min-height: 515px;
}

.mm-hero-image {
  position: absolute;
  top: 0;
  right: 9%;
  width: min(500px, 82%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 34px;
  background: #071827;
  box-shadow: 22px 28px 80px rgba(0,0,0,.35), 0 0 0 12px rgba(255,255,255,.04);
  transform: rotate(3deg);
}

.mm-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,17,28,.12), transparent 45%, rgba(244,200,75,.24));
  mix-blend-mode: screen;
}

.mm-floating-tag {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.mm-tag-top {
  top: 19px;
  left: 20px;
}

.mm-tag-bottom {
  right: 21px;
  bottom: 20px;
  color: var(--mm-gold);
}

.mm-orbit {
  position: absolute;
  border: 1px solid rgba(108,228,220,.25);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.mm-orbit-one {
  top: 5%;
  right: 2%;
  width: 90%;
  height: 82%;
}

.mm-orbit-two {
  top: 16%;
  right: 16%;
  width: 72%;
  height: 67%;
  border-color: rgba(244,200,75,.25);
}

.mm-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 9px;
  align-items: center;
  width: 185px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(7,24,39,.86);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
}

.mm-floating-card b,
.mm-floating-card small {
  grid-column: 2;
}

.mm-floating-card b {
  color: #fff;
  font-size: 12px;
}

.mm-floating-card small {
  color: #8fa8b7;
  font-size: 10px;
}

.mm-mini-icon,
.mm-pulse {
  grid-row: 1 / span 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 11px;
  color: var(--mm-ink);
  background: var(--mm-gold);
  font-weight: 950;
}

.mm-pulse {
  position: relative;
  background: var(--mm-cyan);
}

.mm-pulse::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mm-ink);
  box-shadow: 0 0 0 6px rgba(7,24,39,.12);
}

.mm-floating-card-one {
  top: 12%;
  left: -1%;
}

.mm-floating-card-two {
  right: -1%;
  bottom: 9%;
}

.mm-marquee {
  overflow: hidden;
  padding: 17px 0;
  color: #17344a;
  border-bottom: 1px solid #d9d3c7;
  background: var(--mm-gold);
}

.mm-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  direction: ltr;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  animation: mm-marquee 24s linear infinite;
}

.mm-marquee-track i {
  font-style: normal;
  color: #fff;
}

@keyframes mm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.mm-section {
  background: var(--mm-paper);
}

.mm-section-heading {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  column-gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.mm-section-heading .mm-kicker {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.mm-section-heading h2 {
  margin: 0;
  color: var(--mm-ink);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.25;
  letter-spacing: -.045em;
}

.mm-section-heading h2 em {
  color: #0b8a91;
  font-style: normal;
}

.mm-section-heading > p {
  max-width: 510px;
  margin: 0;
  color: #687b82;
  font-size: 14px;
  line-height: 2;
}

.mm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.mm-service-card {
  position: relative;
  min-height: 270px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #ded9cf;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.mm-service-card:hover {
  border-color: #b8cbc7;
  box-shadow: 0 22px 55px rgba(25,44,58,.1);
  transform: translateY(-5px);
}

.mm-service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -54px;
  width: 135px;
  height: 135px;
  border: 1px solid rgba(11,138,145,.18);
  border-radius: 50%;
}

.mm-service-featured {
  color: #fff;
  border-color: #0f5269;
  background: linear-gradient(145deg, #09253b, #0b5262);
}

.mm-service-number {
  position: absolute;
  top: 17px;
  left: 19px;
  color: #9eb0b0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.mm-service-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid #a9d8d3;
  border-radius: 15px;
  color: #0b8a91;
  font-size: 22px;
  font-weight: 900;
}

.mm-service-featured .mm-service-icon {
  border-color: rgba(244,200,75,.65);
  color: var(--mm-gold);
}

.mm-service-card h3 {
  margin: 0 0 8px;
  color: inherit;
  font-size: 19px;
}

.mm-service-card p {
  min-height: 66px;
  margin: 0 0 15px;
  color: #6c7f83;
  font-size: 12px;
  line-height: 1.9;
}

.mm-service-featured p {
  color: #b4ccd0;
}

.mm-service-card a {
  color: #0b8a91;
  font-size: 12px;
  font-weight: 900;
}

.mm-service-featured a {
  color: var(--mm-gold);
}

.mm-showcase {
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
  background: #0a2336;
}

.mm-showcase-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 76px;
  align-items: center;
}

.mm-showcase-copy {
  max-width: 650px;
}

.mm-showcase-copy .mm-kicker {
  margin-bottom: 14px;
}

.mm-showcase-copy h2 {
  margin: 0 0 17px;
  font-size: clamp(33px, 5vw, 61px);
  line-height: 1.22;
  letter-spacing: -.05em;
}

.mm-showcase-copy p {
  max-width: 540px;
  margin: 0;
  color: #a4bac2;
  font-size: 15px;
  line-height: 2;
}

.mm-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 32px;
}

.mm-stat-row div {
  display: grid;
  gap: 2px;
}

.mm-stat-row b {
  color: var(--mm-gold);
  font-size: 26px;
}

.mm-stat-row span {
  color: #9db2ba;
  font-size: 11px;
}

.mm-showcase-image {
  position: relative;
  width: min(360px, 100%);
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(244,200,75,.44);
  border-radius: 26px;
  transform: rotate(4deg);
}

.mm-showcase-image img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
}

.mm-vertical-label {
  position: absolute;
  left: -53px;
  bottom: 74px;
  color: var(--mm-gold);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .16em;
  transform: rotate(-90deg);
}

.mm-dark-section {
  color: #fff;
  background: #061522;
}

.mm-heading-light h2 {
  color: #fff;
}

.mm-heading-light > p {
  color: #9bb1bb;
}

.mm-package-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 26px;
  align-items: stretch;
}

.mm-package-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mm-package-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.04);
}

.mm-package-item span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #062016;
  background: var(--mm-cyan);
  font-weight: 950;
}

.mm-package-item b {
  color: #e2edf0;
  font-size: 12px;
}

.mm-package-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border: 1px solid rgba(244,200,75,.48);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(244,200,75,.12), rgba(255,255,255,.04));
}

.mm-price-label,
.mm-price-unit {
  color: #b5c5c7;
  font-size: 12px;
}

.mm-package-price strong {
  margin-top: 6px;
  color: var(--mm-gold);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.04em;
}

.mm-package-price small {
  margin: 12px 0 20px;
  color: #aabcc1;
  font-size: 11px;
  line-height: 1.8;
}

.mm-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 13px;
}

.mm-gallery figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #0a2336;
}

.mm-gallery img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .5s ease;
}

.mm-gallery figure:hover img {
  transform: scale(1.045);
}

.mm-gallery-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-gold);
  background:
    radial-gradient(circle at 25% 18%, rgba(108,228,220,.2), transparent 22%),
    linear-gradient(145deg, #09253b, #061522);
}

.mm-gallery-visual > div {
  display: grid;
  gap: 24px;
  width: 74%;
  min-height: 72%;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(244,200,75,.5);
  border-radius: 18px;
}

.mm-gallery-visual span {
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: .05em;
}

.mm-gallery-visual i {
  color: #b1c8ca;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
}

.mm-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,17,28,.88), transparent 52%);
}

.mm-gallery figcaption {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.mm-final-cta {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(244,200,75,.2), transparent 28%),
    linear-gradient(135deg, #0b2d4a, #071827);
}

.mm-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mm-final-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(33px, 5vw, 60px);
  line-height: 1.2;
  letter-spacing: -.05em;
}

.mm-round-cta {
  display: grid;
  width: 142px;
  height: 142px;
  flex: 0 0 auto;
  place-items: center;
  align-content: center;
  border: 1px solid var(--mm-gold);
  border-radius: 50%;
  color: var(--mm-ink);
  background: var(--mm-gold);
  font-weight: 950;
  text-align: center;
  box-shadow: 0 0 0 12px rgba(244,200,75,.08), 0 20px 45px rgba(0,0,0,.22);
  transition: transform .25s ease;
}

.mm-round-cta:hover,
.mm-round-cta:focus-visible {
  color: var(--mm-ink);
  transform: rotate(-6deg) scale(1.04);
}

.mm-round-cta b {
  margin-top: 5px;
  font-size: 22px;
}

@media (max-width: 1000px) {
  .mm-hero-grid,
  .mm-showcase-grid {
    grid-template-columns: 1fr;
  }

  .mm-hero {
    padding-top: 67px;
  }

  .mm-hero-copy {
    max-width: 720px;
  }

  .mm-hero-art {
    min-height: 500px;
    max-width: 630px;
  }

  .mm-showcase-grid {
    gap: 45px;
  }

  .mm-showcase-image {
    margin-inline: 0 auto;
  }
}

@media (max-width: 680px) {
  .mm-hero {
    min-height: 0;
    padding: 53px 0 62px;
  }

  .mm-hero h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .mm-hero-copy > p {
    font-size: 14px;
  }

  .mm-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mm-actions .btn {
    width: 100%;
  }

  .mm-proof {
    display: grid;
    gap: 8px;
  }

  .mm-hero-art {
    min-height: 385px;
    margin-top: 16px;
  }

  .mm-hero-image {
    right: 5%;
    width: 90%;
    border-radius: 24px;
  }

  .mm-floating-card {
    width: 154px;
    padding: 9px;
  }

  .mm-floating-card-one {
    top: 7%;
    left: -2%;
  }

  .mm-floating-card-two {
    right: -2%;
    bottom: 5%;
  }

  .mm-floating-card b {
    font-size: 10px;
  }

  .mm-floating-card small {
    font-size: 9px;
  }

  .mm-section-heading {
    display: block;
  }

  .mm-section-heading > p {
    margin-top: 15px;
  }

  .mm-services-grid {
    grid-template-columns: 1fr;
  }

  .mm-service-card {
    min-height: 235px;
  }

  .mm-service-card p {
    min-height: 0;
  }

  .mm-showcase {
    padding: 64px 0;
  }

  .mm-showcase-copy h2 {
    font-size: 38px;
  }

  .mm-stat-row {
    gap: 20px;
  }

  .mm-showcase-image {
    width: min(300px, 84%);
    margin: 18px auto 0;
  }

  .mm-vertical-label {
    left: -45px;
  }

  .mm-package-grid {
    grid-template-columns: 1fr;
  }

  .mm-package-list {
    grid-template-columns: 1fr;
  }

  .mm-package-price {
    padding: 21px;
  }

  .mm-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .mm-gallery-main {
    grid-column: 1 / -1;
  }

  .mm-gallery figure,
  .mm-gallery img {
    min-height: 230px;
  }

  .mm-final-cta {
    padding: 64px 0;
  }

  .mm-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mm-round-cta {
    width: 116px;
    height: 116px;
    align-self: flex-end;
  }
}

/* Homepage hierarchy, larger Persian type and exhibition-card clarity. */
body {
  font-size: 17px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6.3vw, 72px);
}

.hero-tagline {
  margin-bottom: 10px;
  color: #ecfffa;
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 850;
  line-height: 1.65;
}

.hero-support {
  max-width: 680px;
  margin: 0 0 25px;
  color: #b6c5d3;
  font-size: 16px;
  line-height: 2;
}

.dashboard-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-caption svg,
.stats-dashboard-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-dashboard {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  background: linear-gradient(145deg, #f2f7ff, #eef2f6);
  color: #174c76;
}

.stats-dashboard-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #dcecff;
  color: #17629a;
}

.stats-dashboard > span:last-child {
  color: #496277;
  font-size: 14px;
  font-weight: 850;
}

.stats-box span {
  font-size: 14px;
}

.mini-kpi small,
.stat small {
  font-size: 12px;
}

.expo-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  border-color: #d9e6f2;
  box-shadow: 0 12px 34px rgba(42, 82, 118, .08);
}

.expo-card:hover {
  border-color: #a9c9e5;
  box-shadow: 0 18px 44px rgba(32, 91, 140, .14);
}

.expo-card h3 {
  font-size: 21px;
}

.expo-card .meta {
  font-size: 14px;
}

.expo-location {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #d8e8f7;
  border-radius: 12px;
  background: #eff7ff;
  color: #3a5c78;
  line-height: 1.75;
}

.expo-location svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  fill: none;
  stroke: #2878b6;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expo-stats .stat {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expo-stats .stat-record {
  background: #edf6ff;
  border-color: #cfe3f6;
  color: #14527e;
}

.expo-stats .stat-mobile {
  background: #f1f3f6;
  border-color: #dfe4ea;
  color: #3e4d5b;
}

.expo-detail-cta {
  min-width: 142px !important;
  border-color: #9fc7e8 !important;
  background: linear-gradient(135deg, #e8f4ff, #d9ebfa) !important;
  color: #125987 !important;
  box-shadow: 0 8px 18px rgba(33, 112, 177, .14);
  animation: expo-cta-attention 6.2s ease-in-out infinite;
}

.expo-detail-cta:hover,
.expo-detail-cta:focus-visible {
  border-color: #4f9bd1 !important;
  background: linear-gradient(135deg, #d9edff, #c7e3f8) !important;
  color: #0b4268 !important;
}

.expo-detail-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: #ffffff;
  color: #237ab6;
}

.expo-detail-cta-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes expo-cta-attention {
  0%, 70%, 100% { transform: translate3d(0, 0, 0); }
  73% { transform: translate3d(-1px, 0, 0) rotate(-.35deg); }
  76% { transform: translate3d(1px, 0, 0) rotate(.35deg); }
  79% { transform: translate3d(-.7px, 0, 0) rotate(-.2deg); }
  82% { transform: translate3d(0, 0, 0); }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-support {
    font-size: 15px;
  }

  .section-head h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .expo-card h3 {
    font-size: 20px;
  }

  .expo-card .meta {
    font-size: 13px;
  }

  .expo-detail-cta {
    min-height: 46px;
  }
}

/* Professional, image-free multimedia landing page. */
.media-page {
  --media-ink: #071827;
  --media-navy: #081d2d;
  --media-blue: #3f9dcc;
  --media-cyan: #6de1d2;
  --media-gold: #e7b85c;
  --media-paper: #f4f7fa;
  --media-line: #d7e3eb;
  background: var(--media-paper);
  color: var(--media-ink);
}

.media-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 104px 0 112px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(109,225,210,.14), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(63,157,204,.15), transparent 28%),
    linear-gradient(135deg, #04111c 0%, #09283e 56%, #061522 100%);
}

.media-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.media-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(430px, 1.14fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
}

.media-hero-copy {
  max-width: 650px;
}

.media-eyebrow,
.media-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--media-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.media-hero .media-eyebrow {
  color: var(--media-cyan);
}

.media-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--media-cyan);
  box-shadow: 0 0 0 6px rgba(109,225,210,.12);
}

.media-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.media-hero h1 strong,
.media-reel-copy h2 strong,
.media-package-copy h2 strong {
  color: var(--media-cyan);
  font-weight: 950;
}

.media-hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: #b5c8d5;
  font-size: 18px;
  line-height: 2;
}

.media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.media-btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--media-cyan), #35b5b1);
  color: #04231f;
  box-shadow: 0 14px 34px rgba(65,205,190,.18);
}

.media-btn-primary:hover,
.media-btn-primary:focus-visible {
  background: linear-gradient(135deg, #91f0df, var(--media-cyan));
  color: #03201d;
}

.media-btn-ghost {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  color: #f1f8fb;
}

.media-btn-ghost:hover,
.media-btn-ghost:focus-visible {
  border-color: rgba(109,225,210,.58);
  background: rgba(109,225,210,.11);
  color: #fff;
}

.media-actions .btn,
.media-package-copy .btn,
.media-contact-actions .btn {
  min-height: 50px;
}

.media-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 33px;
  color: #8fa9ba;
  font-size: 13px;
}

.media-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.media-hero-meta b {
  color: var(--media-gold);
  font-size: 11px;
  letter-spacing: .08em;
}

.media-hero-visual {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.media-orbit {
  position: absolute;
  border: 1px solid rgba(109,225,210,.24);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.media-orbit-a {
  width: 480px;
  height: 230px;
  top: 88px;
  left: 6%;
}

.media-orbit-b {
  width: 390px;
  height: 190px;
  top: 130px;
  left: 14%;
  border-color: rgba(231,184,92,.3);
  transform: rotate(25deg);
}

.media-camera-graphic {
  position: absolute;
  top: 70px;
  left: 2%;
  width: min(560px, 92%);
  filter: drop-shadow(0 30px 42px rgba(0,0,0,.35));
  animation: media-float 8s ease-in-out infinite;
}

.media-camera-graphic svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.media-camera-graphic .camera-body {
  fill: #132f43;
  stroke: #70d9d1;
  stroke-width: 2;
}

.media-camera-graphic .camera-top,
.media-camera-graphic .camera-detail {
  fill: none;
  stroke: #8db2c6;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-camera-graphic .camera-lens {
  fill: #071725;
  stroke: #e7b85c;
  stroke-width: 3;
}

.media-camera-graphic .camera-lens-inner {
  fill: #163e59;
  stroke: #5fd6ce;
  stroke-width: 2;
}

.media-camera-graphic .camera-glint {
  fill: #fff;
  opacity: .8;
}

.media-rec {
  position: absolute;
  top: 8%;
  right: 16%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  background: rgba(4,17,28,.72);
  color: #d8e8ef;
  font-size: 10px;
  letter-spacing: .08em;
}

.media-rec i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef6e77;
  box-shadow: 0 0 0 5px rgba(239,110,119,.14);
}

.media-monitor-graphic {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 255px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 17px;
  background: rgba(9,31,47,.9);
  box-shadow: 0 22px 50px rgba(0,0,0,.3);
  transform: perspective(600px) rotateY(-13deg) rotateX(6deg);
}

.media-monitor-top {
  display: flex;
  justify-content: space-between;
  color: #95b3c2;
  font-size: 9px;
  letter-spacing: .08em;
}

.media-monitor-top b {
  color: var(--media-gold);
}

.media-monitor-screen {
  position: relative;
  height: 120px;
  margin: 12px 0;
  overflow: hidden;
  border: 1px solid rgba(109,225,210,.26);
  border-radius: 10px;
  background: linear-gradient(145deg, #123b52, #081a2a);
}

.media-monitor-screen::before,
.media-edit-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(109,225,210,.18) 45.5%, transparent 46%), linear-gradient(180deg, rgba(255,255,255,.08), transparent 35%);
}

.media-screen-line {
  position: absolute;
  right: 15px;
  left: 15px;
  height: 4px;
  border-radius: 9px;
  background: rgba(255,255,255,.36);
}

.media-screen-line.line-one { top: 24px; width: 62%; }
.media-screen-line.line-two { top: 40px; width: 46%; }
.media-screen-line.line-three { top: 56px; width: 72%; }

.media-screen-play {
  position: absolute;
  right: 50%;
  bottom: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(109,225,210,.55);
  border-radius: 50%;
  color: var(--media-cyan);
  font-size: 12px;
  transform: translateX(50%);
}

.media-timeline,
.media-edit-tracks {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr .5fr .9fr;
  gap: 4px;
}

.media-timeline i,
.media-edit-tracks b {
  display: block;
  height: 6px;
  border-radius: 4px;
  background: #347e9c;
}

.media-timeline i:nth-child(2),
.media-edit-tracks b:nth-child(2) { background: #d2a94f; }
.media-timeline i:nth-child(4),
.media-edit-tracks b:nth-child(4) { background: #66d5c9; }

.media-mic-graphic {
  position: absolute;
  bottom: 30px;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94bac7;
  font-size: 9px;
  letter-spacing: .1em;
  transform: rotate(-9deg);
}

.media-mic-graphic svg {
  width: 42px;
  height: 70px;
  fill: none;
  stroke: var(--media-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-hero-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9px;
  background: rgba(4,17,28,.64);
  color: #9db9c6;
  font-size: 9px;
  letter-spacing: .1em;
}

.label-camera { top: 13%; left: 12%; }
.label-edit { right: 4%; top: 48%; color: var(--media-gold); }

@keyframes media-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.media-reel-section {
  padding: 108px 0;
  background: #f4f7fa;
}

.media-reel-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
}

.media-reel-copy {
  max-width: 510px;
}

.media-reel-copy h2,
.media-heading-row h2,
.media-process-intro h2,
.media-package-copy h2,
.media-contact-card h2 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 4.5vw, 55px);
  line-height: 1.3;
  letter-spacing: -.035em;
}

.media-reel-copy h2 strong {
  color: #2e8dba;
}

.media-reel-copy p,
.media-heading-row > p,
.media-package-copy > p,
.media-contact-card p {
  max-width: 540px;
  margin: 0;
  color: #5c7180;
  font-size: 16px;
  line-height: 2;
}

.media-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.media-chip-row span {
  padding: 7px 10px;
  border: 1px solid #cfe0ea;
  border-radius: 999px;
  background: #fff;
  color: #426478;
  font-size: 12px;
  font-weight: 800;
}

.media-reel-note {
  display: block;
  margin-top: 24px;
  color: #8798a3;
  font-size: 12px;
}

.media-reel-shell {
  width: min(390px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #cbdbe5;
  border-radius: 26px;
  background: #081b2b;
  box-shadow: 0 28px 70px rgba(15,49,72,.2);
}

.media-reel-topbar,
.media-reel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 15px;
  color: #9eb5c4;
  font-size: 10px;
  letter-spacing: .06em;
}

.media-reel-topbar b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f4fafc;
  font-size: 11px;
}

.media-reel-topbar svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.media-window-dots {
  display: inline-flex;
  gap: 4px;
}

.media-window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3e6477;
}

.media-window-dots i:first-child { background: #e27f78; }
.media-window-dots i:nth-child(2) { background: #e5bd63; }
.media-window-dots i:last-child { background: #6bd8c6; }

.media-ratio {
  color: var(--media-gold);
}

.media-reel-video,
.media-reel-empty {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: radial-gradient(circle at 50% 25%, #1e536b, #071725 68%);
  object-fit: cover;
}

.media-reel-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  color: #dcebf1;
}

.media-reel-empty strong {
  font-size: 17px;
}

.media-reel-empty p {
  max-width: 260px;
  margin: 0;
  color: #9fb8c6;
  font-size: 12px;
  line-height: 1.9;
}

.media-reel-empty code {
  direction: ltr;
  font-family: Consolas, monospace;
  color: #e8c874;
  font-size: 11px;
}

.media-upload-path {
  padding: 7px 9px;
  border: 1px solid rgba(231,184,92,.28);
  border-radius: 8px;
  background: rgba(231,184,92,.08);
}

.media-play-ring {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(109,225,210,.62);
  border-radius: 50%;
  color: var(--media-cyan);
  box-shadow: 0 0 0 12px rgba(109,225,210,.06);
}

.media-play-ring svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.media-reel-footer {
  border-top: 1px solid rgba(255,255,255,.08);
}

.media-reel-wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.media-reel-wave i {
  display: block;
  width: 3px;
  height: 11px;
  border-radius: 3px;
  background: var(--media-cyan);
}

.media-reel-wave i:nth-child(2),
.media-reel-wave i:nth-child(6) { height: 18px; }
.media-reel-wave i:nth-child(3),
.media-reel-wave i:nth-child(5) { height: 7px; }
.media-reel-wave i:nth-child(4) { height: 23px; background: var(--media-gold); }

.media-services-section {
  padding: 110px 0;
  background: #fff;
}

.media-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.media-heading-row h2 {
  margin-bottom: 0;
}

.media-heading-row > p {
  max-width: 400px;
}

.media-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.media-service-card {
  position: relative;
  min-height: 265px;
  padding: 24px 20px;
  border: 1px solid var(--media-line);
  border-radius: 18px;
  background: linear-gradient(160deg, #fff, #f5f9fc);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.media-service-card:hover {
  border-color: #9cc6dc;
  box-shadow: 0 18px 40px rgba(39,95,122,.1);
  transform: translateY(-4px);
}

.media-service-card > svg {
  width: 33px;
  height: 33px;
  margin: 35px 0 20px;
  fill: none;
  stroke: #2786b3;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-service-index {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #9aafbc;
  font-size: 11px;
  letter-spacing: .08em;
}

.media-service-card h3 {
  margin: 0 0 8px;
  color: #102f43;
  font-size: 18px;
}

.media-service-card p {
  margin: 0;
  color: #6a7e8a;
  font-size: 13px;
  line-height: 1.9;
}

.media-process-section {
  padding: 92px 0;
  background: #edf3f7;
}

.media-process-intro {
  margin-bottom: 28px;
}

.media-process-intro h2 {
  margin-bottom: 0;
}

.media-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.media-process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  padding: 21px;
  border-top: 2px solid #8eb5c7;
}

.media-process-step > b {
  grid-row: span 2;
  color: #2581aa;
  font-size: 22px;
}

.media-process-step > span {
  color: #173b50;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .07em;
}

.media-process-step p {
  grid-column: 2;
  margin: 5px 0 0;
  color: #6b7f8b;
  font-size: 13px;
  line-height: 1.8;
}

.media-package-section {
  padding: 110px 0;
  color: #fff;
  background: #081b2b;
}

.media-package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  gap: 70px;
  align-items: center;
}

.media-package-copy h2 {
  margin-top: 13px;
}

.media-package-copy > p {
  color: #a9c0cd;
}

.media-package-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 25px 0 29px;
  list-style: none;
  color: #d9e8ee;
  font-size: 14px;
}

.media-package-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-package-copy li::before {
  content: "✓";
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(109,225,210,.13);
  color: var(--media-cyan);
  font-size: 12px;
  font-weight: 900;
}

.media-edit-graphic {
  position: relative;
  min-height: 310px;
  padding: 19px;
  overflow: hidden;
  border: 1px solid rgba(109,225,210,.24);
  border-radius: 24px;
  background: linear-gradient(145deg, #0e3347, #071725);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  transform: rotate(2deg);
}

.media-edit-graphic::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -65px;
  bottom: -85px;
  border: 1px solid rgba(231,184,92,.4);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(231,184,92,.04), 0 0 0 44px rgba(231,184,92,.03);
}

.media-edit-window-title {
  color: #8faebb;
  font-size: 10px;
  letter-spacing: .12em;
}

.media-edit-screen {
  position: relative;
  height: 155px;
  margin: 17px 0;
  overflow: hidden;
  border: 1px solid rgba(109,225,210,.3);
  border-radius: 12px;
  background: linear-gradient(135deg, #16455b, #0a2334);
}

.media-edit-screen span {
  position: absolute;
  top: 23px;
  right: 15%;
  width: 64%;
  height: 62%;
  border: 1px solid rgba(109,225,210,.6);
  border-radius: 50% 44% 52% 38%;
  transform: rotate(-13deg);
}

.media-edit-screen i {
  position: absolute;
  right: 50%;
  bottom: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--media-gold);
  border-radius: 50%;
  color: var(--media-gold);
  font-size: 11px;
  font-style: normal;
  transform: translateX(50%);
}

.media-edit-tracks {
  grid-template-columns: 1.4fr .7fr 1fr .7fr .9fr;
  margin-top: 13px;
}

.media-edit-tracks b {
  height: 8px;
  border-radius: 4px;
  background: #2d7390;
}

.media-edit-tools {
  display: flex;
  gap: 7px;
  margin-top: 17px;
}

.media-edit-tools i {
  width: 10px;
  height: 10px;
  border: 1px solid #7acfc5;
  border-radius: 3px;
}

.media-edit-tools i:nth-child(2) { border-radius: 50%; border-color: var(--media-gold); }
.media-edit-tools i:nth-child(3) { transform: rotate(45deg); }
.media-edit-tools i:nth-child(4) { border-color: #82a9bd; }

.media-contact-section {
  padding: 86px 0 104px;
  background: #f4f7fa;
}

.media-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 38px 42px;
  border: 1px solid #cfe0ea;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #eaf4fa);
  box-shadow: 0 18px 48px rgba(38,87,111,.08);
}

.media-contact-card h2 {
  margin-bottom: 9px;
  font-size: clamp(29px, 4vw, 45px);
}

.media-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
  min-width: 235px;
}

.media-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 15px;
  border: 1px solid #c3dae7;
  border-radius: 13px;
  background: #fff;
  color: #17445e;
}

.media-phone span {
  color: #718896;
  font-size: 11px;
}

.media-phone b {
  font-size: 22px;
  letter-spacing: .05em;
}

@media (max-width: 1000px) {
  .media-hero-grid,
  .media-reel-grid,
  .media-package-card {
    grid-template-columns: 1fr;
  }

  .media-hero {
    min-height: 0;
    padding: 78px 0 85px;
  }

  .media-hero-copy {
    max-width: 720px;
  }

  .media-hero-visual {
    min-height: 475px;
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .media-reel-copy {
    max-width: 620px;
  }

  .media-reel-shell {
    margin-inline: 0 auto;
  }

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

  .media-package-card {
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .media-hero {
    padding: 62px 0 70px;
  }

  .media-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .media-hero-copy > p,
  .media-reel-copy p,
  .media-heading-row > p,
  .media-package-copy > p,
  .media-contact-card p {
    font-size: 15px;
  }

  .media-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .media-actions .btn {
    width: 100%;
  }

  .media-hero-meta {
    display: grid;
    gap: 8px;
    margin-top: 25px;
  }

  .media-hero-visual {
    min-height: 355px;
    transform: scale(.88);
    transform-origin: center top;
    margin-bottom: -52px;
  }

  .media-orbit-a {
    width: 340px;
    height: 170px;
    left: 0;
  }

  .media-orbit-b {
    width: 280px;
    height: 140px;
    left: 8%;
  }

  .media-camera-graphic {
    top: 53px;
    left: 0;
  }

  .media-monitor-graphic {
    right: -2px;
    bottom: 15px;
    width: 205px;
  }

  .media-mic-graphic {
    bottom: 13px;
    left: 0;
  }

  .media-hero-label {
    font-size: 8px;
  }

  .label-camera { top: 9%; left: 5%; }
  .label-edit { right: 0; top: 44%; }

  .media-reel-section,
  .media-services-section,
  .media-package-section {
    padding: 75px 0;
  }

  .media-reel-shell {
    width: min(350px, 100%);
    margin-inline: auto;
  }

  .media-heading-row {
    display: block;
  }

  .media-heading-row > p {
    margin-top: 12px;
  }

  .media-services-grid,
  .media-process-grid {
    grid-template-columns: 1fr;
  }

  .media-service-card {
    min-height: 0;
    padding: 21px 18px;
  }

  .media-service-card > svg {
    margin-top: 29px;
  }

  .media-process-section {
    padding: 72px 0;
  }

  .media-process-step {
    padding: 17px 0;
  }

  .media-package-card {
    gap: 27px;
  }

  .media-edit-graphic {
    min-height: 260px;
    transform: none;
  }

  .media-contact-section {
    padding: 70px 0 86px;
  }

  .media-contact-card {
    display: block;
    padding: 27px 20px;
  }

  .media-contact-actions {
    min-width: 0;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .expo-card:hover,
  .btn:hover,
  .expo-detail-cta {
    transform: none;
    animation: none;
  }
}
