:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --surface: #121212;
  --surface-2: #1b1b1b;
  --surface-3: #262626;
  --pattern: #f2ece2;
  --cream: #f5efe6;
  --cream-2: #ece3d4;
  --gold: #cda24a;
  --gold-bright: #efc36a;
  --gold-deep: #8f6522;
  --text: #f5efe6;
  --text-dark: #1b1814;
  --muted: #d1c6b6;
  --muted-dark: #6f665b;
  --line: rgba(205, 162, 74, 0.24);
  --line-strong: rgba(205, 162, 74, 0.42);
  --success: #4ce07c;
  --danger: #ff6158;
  --warning: #ff9f43;
  --call: #57a7ff;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --radius-sm: 18px;
  --radius-xs: 12px;
  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --ui: "Inter", Arial, sans-serif;
  --arabic: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ui);
  color: var(--text-dark);
  background:
    radial-gradient(circle at top, rgba(205, 162, 74, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f1e8 0%, #ece4d6 100%);
}

body.parallel-landing {
  color: var(--text-dark);
  background:
    radial-gradient(circle at top, rgba(205, 162, 74, 0.08), transparent 26%),
    linear-gradient(180deg, #0d0d0d 0%, #060606 100%);
}

body.portal-page,
body.client-page {
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(168, 139, 104, 0.12), transparent 26%),
    linear-gradient(180deg, #102948 0%, #0c2038 100%);
}

body.print-page {
  color: #1f1c18;
  background: #f1ece4;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 154, 73, 0.26);
  border-radius: 14px;
  background: rgba(19, 17, 14, 0.92);
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(244, 239, 228, 0.52);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 73, 0.12);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.92rem 1.32rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.mini-button:hover,
.mini-button:focus-visible,
.mode-toggle button:hover,
.mode-toggle button:focus-visible {
  transform: translateY(-2px);
}

.btn-primary,
.btn-portal-strong {
  background: linear-gradient(180deg, #1f4f86, var(--bg));
  color: #f7f3ed;
  box-shadow: 0 14px 32px rgba(16, 41, 72, 0.24);
}

.btn-primary:hover,
.btn-portal-strong:hover,
.btn-primary:focus-visible,
.btn-portal-strong:focus-visible {
  box-shadow: 0 18px 38px rgba(16, 41, 72, 0.34);
}

.btn-outline {
  border-color: rgba(16, 41, 72, 0.3);
  color: var(--bg);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--bg);
  color: var(--bg);
  box-shadow: 0 14px 28px rgba(16, 41, 72, 0.14);
}

.btn-ghost {
  border-color: rgba(201, 154, 73, 0.24);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.btn-success {
  background: linear-gradient(180deg, #6ff29b, var(--success));
  color: #07180d;
  box-shadow: 0 14px 30px rgba(76, 224, 124, 0.24);
}

.btn-danger {
  background: linear-gradient(180deg, #ff8d87, var(--danger));
  color: #290604;
  box-shadow: 0 14px 30px rgba(255, 97, 88, 0.24);
}

.btn-warning {
  background: linear-gradient(180deg, #ffbc76, var(--warning));
  color: #2b1704;
  box-shadow: 0 14px 30px rgba(255, 159, 67, 0.24);
}

.btn-call {
  background: linear-gradient(180deg, #86c4ff, var(--call));
  color: #071829;
  box-shadow: 0 14px 30px rgba(87, 167, 255, 0.24);
}

.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-kicker::before,
.mini-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(201, 154, 73, 0.4);
}

.status-line {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.status-line.is-muted,
.page-lead,
.surface-card p,
.footer-copy,
.site-footer p {
  color: var(--muted);
}

.card-meta,
.form-actions,
.portal-footer-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tool-chip,
.session-chip,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 154, 73, 0.26);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  padding: 0.46rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-badge.is-new {
  color: #1f1507;
  background: linear-gradient(180deg, #ffe2a6, var(--gold-bright));
  border-color: rgba(227, 180, 93, 0.5);
}

.status-badge.is-warn {
  color: #2b1704;
  background: linear-gradient(180deg, #ffd49b, var(--warning));
  border-color: rgba(255, 159, 67, 0.5);
}

.status-badge.is-done {
  color: #07180d;
  background: linear-gradient(180deg, #92f8b6, var(--success));
  border-color: rgba(76, 224, 124, 0.54);
}

.status-badge.is-call {
  color: #081522;
  background: linear-gradient(180deg, #9fd2ff, var(--call));
  border-color: rgba(87, 167, 255, 0.54);
}

.site-header,
.portal-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(168, 139, 104, 0.22);
  background:
    linear-gradient(180deg, rgba(247, 243, 237, 0.98), rgba(247, 243, 237, 0.94));
  backdrop-filter: blur(16px);
}

.site-nav,
.portal-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.brand-lockup,
.brand-port {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-arabic {
  font-family: var(--arabic);
  color: var(--muted-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-english {
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.brand-sub {
  color: rgba(34, 29, 25, 0.64);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links,
.portal-nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.nav-links a,
.portal-nav-links a {
  color: rgba(34, 29, 25, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-actions {
  flex-wrap: nowrap;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0.72rem 0.96rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.portal-nav-links a:hover,
.portal-nav-links a:focus-visible,
.portal-nav-links a.is-active {
  color: var(--bg);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 11, 9, 0.98) 0%, rgba(11, 11, 9, 0.92) 42%, rgba(11, 11, 9, 0.75) 62%, rgba(11, 11, 9, 0.92) 100%),
    radial-gradient(circle at 70% 35%, rgba(201, 154, 73, 0.12), transparent 28%),
    #0b0b09;
  border-bottom: 1px solid rgba(201, 154, 73, 0.18);
}

.hero-inner {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: 2.6rem;
  align-items: center;
  padding: 2.6rem 0 3rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1 .gold {
  color: var(--gold-bright);
}

.hero-copy p {
  margin: 0 0 1.6rem;
  max-width: 430px;
  color: rgba(244, 239, 228, 0.88);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 2rem;
}

.flag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flag-icon,
.trust-icon,
.promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 154, 73, 0.32);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.hero-platter-art {
  position: absolute;
  right: 360px;
  bottom: 24px;
  width: min(43vw, 540px);
  pointer-events: none;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.42));
}

.hero-platter-art img {
  width: 100%;
}

.order-card {
  position: relative;
  z-index: 3;
  margin-left: auto;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(201, 154, 73, 0.4);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(19, 17, 14, 0.96), rgba(10, 10, 8, 0.96));
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.order-card h2 {
  margin: 0 0 1.1rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.mode-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mode-toggle button {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(201, 154, 73, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.mode-toggle button.is-selected,
.mode-toggle button[aria-pressed="true"] {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1c1508;
  border-color: rgba(227, 180, 93, 0.5);
  box-shadow: 0 14px 30px rgba(201, 154, 73, 0.24);
}

.success-note {
  min-height: 22px;
  color: var(--gold-bright);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid rgba(201, 154, 73, 0.14);
  border-bottom: 1px solid rgba(201, 154, 73, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(244, 237, 225, 0.98));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  gap: 1rem;
  padding: 1.45rem 1rem;
  border-right: 1px solid rgba(201, 154, 73, 0.18);
  color: var(--text-dark);
}

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

.trust-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-shell {
  padding: 3.6rem 0;
}

.section-shell.dark {
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(201, 154, 73, 0.08), transparent 24%),
    linear-gradient(180deg, #0d0c0a 0%, #11100d 100%);
}

.section-shell.pattern {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(16, 40, 28, 0.96), rgba(15, 36, 25, 0.96)),
    radial-gradient(circle at top, rgba(201, 154, 73, 0.08), transparent 24%);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.9rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 0 0 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 73, 0.55), transparent);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.featured-card,
.promo-card,
.module-card,
.list-card,
.customer-card,
.history-card,
.invoice-card,
.metric-card,
.surface-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.featured-card {
  background: linear-gradient(180deg, #1a1814, #10100d);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.featured-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.featured-body {
  padding: 1rem 0.95rem 1.15rem;
}

.featured-body h3 {
  margin: 0 0 0.3rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.featured-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 0.4rem 0;
}

.band-grid h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.band-copy {
  padding-left: 2rem;
  border-left: 1px solid rgba(201, 154, 73, 0.24);
}

.band-copy p {
  margin: 0;
  color: rgba(244, 239, 228, 0.92);
  font-size: 1.08rem;
  line-height: 1.72;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.promo-card {
  position: relative;
  min-height: 286px;
  background: linear-gradient(180deg, rgba(12, 12, 10, 0.94), rgba(12, 12, 10, 0.98));
  color: var(--text);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.promo-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.promo-card .promo-body {
  position: relative;
  z-index: 2;
  width: 56%;
  padding: 1.5rem 1.45rem 1.55rem;
}

.promo-card h3 {
  margin: 0 0 0.45rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promo-card p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.steps-strip {
  padding-top: 2.2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.step-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0.5rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #22190c;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}

.step-card h3 {
  margin: 0 0 0.3rem;
  color: #2d2415;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(201, 154, 73, 0.24);
  padding: 1.45rem;
  box-shadow: 0 18px 38px rgba(32, 24, 14, 0.08);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2b2417, #11100d);
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-head strong {
  display: block;
  color: #2a2114;
  font-size: 1.02rem;
}

.review-stars {
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}

.testimonial-card p {
  margin: 0;
  color: #463c2d;
  line-height: 1.68;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.2rem;
  border: 1px solid rgba(201, 154, 73, 0.24);
  border-radius: 26px;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.cta-band {
  background: linear-gradient(180deg, #0d0c0a, #12110d);
  border-top: 1px solid rgba(201, 154, 73, 0.24);
  border-bottom: 1px solid rgba(201, 154, 73, 0.24);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.7rem 0;
}

.cta-inner h2 {
  margin: 0 0 0.3rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-inner p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: linear-gradient(180deg, #090907, #060605);
  color: var(--text);
  padding: 2.25rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.footer-col h3,
.footer-col strong {
  color: var(--gold-bright);
}

.footer-col h3 {
  margin: 0 0 0.7rem;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col p,
.footer-col li {
  margin: 0 0 0.45rem;
  color: var(--muted);
  line-height: 1.58;
  list-style: none;
}

.social-row {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-row span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(201, 154, 73, 0.24);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.02);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 154, 73, 0.18);
  color: rgba(244, 239, 228, 0.54);
  font-size: 0.85rem;
}

.portal-main {
  padding: 2rem 0 3rem;
}

.portal-grid {
  display: grid;
  gap: 1.15rem;
}

.page-hero,
.dual-grid,
.three-grid,
.four-grid,
.stats-grid,
.module-grid {
  display: grid;
  gap: 1rem;
}

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

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

.four-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.surface-card {
  background:
    linear-gradient(180deg, rgba(20, 18, 15, 0.98), rgba(13, 12, 9, 0.98));
  box-shadow: var(--shadow);
}

.surface-card.padded {
  padding: 1.45rem;
}

.surface-card h1,
.surface-card h2,
.surface-card h3,
.metric-card h3,
.module-card h3,
.customer-card h3,
.list-card h3,
.history-card h3,
.invoice-card h3 {
  margin: 0 0 0.45rem;
  color: var(--cream);
  font-family: var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.surface-card h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.95;
}

.surface-card h2 {
  font-size: 2.2rem;
  line-height: 0.95;
}

.surface-card h3,
.metric-card h3,
.module-card h3,
.customer-card h3,
.list-card h3,
.history-card h3,
.invoice-card h3 {
  font-size: 1.65rem;
  line-height: 1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.section-head p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  text-align: right;
}

.field-label {
  display: grid;
  gap: 0.42rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
}

.split-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.module-card,
.list-card,
.customer-card,
.history-card,
.invoice-card {
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(30, 27, 22, 0.98), rgba(16, 15, 12, 0.98));
}

.metric-card .value {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.metric-card p,
.module-card p,
.list-card p,
.customer-card p,
.history-card p,
.invoice-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.module-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-grid,
.customer-grid,
.schedule-board {
  display: grid;
  gap: 1rem;
}

.customer-card,
.list-card,
.invoice-card,
.history-card {
  display: grid;
  gap: 0.7rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta-item {
  color: rgba(244, 239, 228, 0.8);
  font-size: 0.88rem;
  line-height: 1.45;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.72rem 0.92rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 154, 73, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.mini-button.is-success {
  border-color: rgba(76, 224, 124, 0.32);
}

.mini-button.is-success:hover,
.mini-button.is-success:focus-visible {
  background: rgba(76, 224, 124, 0.18);
  color: #7ff0a4;
  box-shadow: 0 14px 24px rgba(76, 224, 124, 0.14);
}

.mini-button.is-danger {
  border-color: rgba(255, 97, 88, 0.32);
}

.mini-button.is-danger:hover,
.mini-button.is-danger:focus-visible {
  background: rgba(255, 97, 88, 0.18);
  color: #ffb1ab;
  box-shadow: 0 14px 24px rgba(255, 97, 88, 0.14);
}

.mini-button.is-warning {
  border-color: rgba(255, 159, 67, 0.32);
}

.mini-button.is-warning:hover,
.mini-button.is-warning:focus-visible {
  background: rgba(255, 159, 67, 0.18);
  color: #ffd09b;
  box-shadow: 0 14px 24px rgba(255, 159, 67, 0.14);
}

.mini-button.is-call {
  border-color: rgba(87, 167, 255, 0.32);
}

.mini-button.is-call:hover,
.mini-button.is-call:focus-visible {
  background: rgba(87, 167, 255, 0.18);
  color: #b7dbff;
  box-shadow: 0 14px 24px rgba(87, 167, 255, 0.14);
}

.day-group {
  border: 1px solid rgba(201, 154, 73, 0.16);
  border-radius: 20px;
  overflow: hidden;
}

.day-group-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.day-group-body {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.shift-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 154, 73, 0.16);
}

.shift-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.shift-status-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 154, 73, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.shift-status-card.on {
  background: linear-gradient(180deg, rgba(76, 224, 124, 0.16), rgba(15, 32, 20, 0.86));
  border-color: rgba(76, 224, 124, 0.3);
}

.shift-status-card.call {
  background: linear-gradient(180deg, rgba(87, 167, 255, 0.16), rgba(10, 22, 34, 0.86));
  border-color: rgba(87, 167, 255, 0.3);
}

.map-shell {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.95) contrast(1.02) brightness(0.92);
}

.tracking-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tracking-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  min-width: 138px;
  padding: 0.72rem 0.78rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 154, 73, 0.35);
  background: rgba(11, 11, 9, 0.92);
  color: var(--cream);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.tracking-pin strong {
  display: block;
  margin-bottom: 0.2rem;
}

.table-shell {
  overflow-x: auto;
}

.table-shell table {
  width: 100%;
  border-collapse: collapse;
}

.table-shell th,
.table-shell td {
  padding: 0.9rem 0.82rem;
  border-bottom: 1px solid rgba(201, 154, 73, 0.14);
  text-align: left;
  color: var(--cream);
  vertical-align: top;
}

.table-shell th {
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-shell td .field-help,
.field-help {
  color: var(--muted);
  font-size: 0.82rem;
}

.month-row {
  display: grid;
  gap: 0.5rem;
  padding: 0.88rem 0;
  border-bottom: 1px solid rgba(201, 154, 73, 0.14);
}

.month-row:last-child {
  border-bottom: 0;
}

.month-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--cream);
  font-weight: 800;
}

.bar-stack {
  display: grid;
  gap: 0.42rem;
}

.bar-track {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
}

.bar-fill.sales {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
}

.bar-fill.delivery {
  background: linear-gradient(90deg, #84c3ff, var(--call));
}

.bar-fill.payroll {
  background: linear-gradient(90deg, #ffbc76, var(--warning));
}

.invoice-grid,
.history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.client-shell {
  display: grid;
  gap: 1rem;
}

.client-sticky-nav {
  position: sticky;
  top: 100px;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 154, 73, 0.18);
  background: rgba(13, 12, 9, 0.95);
  box-shadow: var(--shadow);
}

.client-sticky-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 154, 73, 0.22);
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-sticky-nav a:hover,
.client-sticky-nav a:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.client-section {
  scroll-margin-top: 180px;
}

.gateway-hero {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 2rem 0 3rem;
}

.gateway-card {
  max-width: 760px;
  text-align: center;
  padding: 2rem;
}

.gateway-card h1 {
  margin-bottom: 0.8rem;
}

.portal-footer {
  padding-bottom: 2rem;
}

.portal-footer-card {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.45rem;
  border-radius: 24px;
  border: 1px solid rgba(201, 154, 73, 0.18);
  background: linear-gradient(180deg, rgba(19, 17, 14, 0.96), rgba(10, 10, 8, 0.98));
  box-shadow: var(--shadow);
}

.portal-footer-card h2 {
  margin-bottom: 0.4rem;
}

.portal-footer-card p {
  margin: 0;
}

body.parallel-landing {
  background: linear-gradient(180deg, #fcfaf7 0%, #f2ece4 100%);
  color: var(--text-dark);
}

.parallel-header {
  border-bottom-color: rgba(16, 41, 72, 0.1);
}

.parallel-nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.35rem;
}

.parallel-brand .brand-copy {
  gap: 0;
}

.parallel-brand .brand-english {
  font-size: 1.3rem;
  letter-spacing: 0.42em;
}

.parallel-brand .brand-sub {
  color: rgba(34, 29, 25, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
}

.parallel-links {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1.6rem;
}

.parallel-links a {
  white-space: nowrap;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.parallel-actions {
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.55rem;
}

.parallel-actions .btn {
  min-height: 48px;
  border-radius: 0;
  padding-inline: 1rem;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
}

.parallel-hero {
  min-height: 705px;
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.12) 0%, rgba(248, 244, 238, 0.08) 18%, rgba(248, 244, 238, 0.02) 42%, rgba(255, 255, 255, 0) 68%),
    url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?q=80&w=2200&auto=format&fit=crop")
      center center / cover no-repeat;
  border-bottom: 1px solid rgba(16, 41, 72, 0.06);
}

.parallel-hero-inner {
  min-height: 705px;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.parallel-hero-card {
  width: min(100%, 430px);
  margin-left: 14rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 3rem 2.8rem;
  box-shadow: 0 24px 50px rgba(34, 29, 25, 0.12);
}

.parallel-hero-card h1 {
  margin: 0;
  color: #4b4946;
  font-family: var(--display);
  font-size: clamp(4rem, 6.5vw, 5.9rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.parallel-hero-card h1 span {
  color: var(--bg);
}

.parallel-hero-card p {
  margin: 1.9rem 0 2rem;
  color: #36302c;
  font-size: 1.08rem;
  line-height: 1.65;
}

.parallel-hero-card .btn {
  min-width: 182px;
  border-radius: 0;
}

.parallel-values {
  background: #faf7f2;
  border-bottom: 1px solid rgba(16, 41, 72, 0.08);
}

.parallel-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.parallel-value {
  min-height: 126px;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  padding: 1.3rem;
  text-align: center;
  border-right: 1px solid rgba(16, 41, 72, 0.12);
}

.parallel-value:last-child {
  border-right: 0;
}

.parallel-value-icon {
  color: var(--bg);
  font-size: 2rem;
  line-height: 1;
}

.parallel-value strong {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-shell-light {
  background: linear-gradient(180deg, #faf6f0 0%, #f4efe7 100%);
}

.parallel-mosaic {
  padding: 1.8rem 0 1.5rem;
}

.parallel-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.mosaic-card,
.mosaic-stack {
  min-height: 350px;
}

.mosaic-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(34, 29, 25, 0.08);
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.mosaic-copy {
  padding: 1.15rem 1.1rem 1.2rem;
}

.mosaic-copy h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mosaic-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-top: 0.9rem;
  background: rgba(16, 41, 72, 0.38);
}

.mosaic-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.mosaic-stack .mosaic-card {
  min-height: 0;
}

.mosaic-stack .image-card img {
  height: 168px;
}

.accent-card {
  display: grid;
  align-items: end;
  background: var(--bg);
}

.accent-copy h2,
.accent-copy p,
.accent-copy a {
  color: #fff;
}

.accent-copy p {
  margin: 0.8rem 0 0.6rem;
  font-size: 1rem;
  line-height: 1.55;
}

.accent-copy a {
  font-size: 2rem;
}

.parallel-story {
  padding: 1.4rem 0 1.8rem;
  background: linear-gradient(180deg, #f2ede6 0%, #efebe4 100%);
}

.parallel-story-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 190px;
  gap: 1.8rem;
  align-items: center;
}

.parallel-story-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.parallel-story-copy h2 {
  margin: 0 0 1rem;
  color: var(--text-dark);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 600;
  text-transform: uppercase;
}

.parallel-story-copy p {
  margin: 0 0 1rem;
  color: #47403a;
  font-size: 1rem;
  line-height: 1.7;
}

.parallel-story-copy strong {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parallel-seal {
  width: 152px;
  height: 152px;
  margin-inline: auto;
  border: 1px solid rgba(168, 139, 104, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  text-align: center;
}

.parallel-seal strong {
  display: block;
  margin: 0.15rem 0;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.parallel-seal span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.parallel-features {
  padding: 0 0 1.4rem;
  background: linear-gradient(180deg, #f7f3ed 0%, #f0ebe3 100%);
}

.parallel-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.parallel-feature-card {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  min-height: 220px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(34, 29, 25, 0.08);
}

.parallel-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallel-feature-copy {
  padding: 1.2rem 1.15rem 1rem;
}

.parallel-feature-copy h3 {
  margin: 0 0 0.8rem;
  color: var(--text-dark);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 600;
  text-transform: uppercase;
}

.parallel-feature-copy p {
  margin: 0 0 1rem;
  color: #555048;
  line-height: 1.65;
}

.parallel-feature-copy a {
  color: var(--bg);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parallel-process {
  padding: 0 0 1.8rem;
  background: linear-gradient(180deg, #f0ebe3 0%, #f5f1eb 100%);
}

.parallel-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: rgba(255, 255, 255, 0.78);
}

.parallel-step {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1.35rem 1.1rem;
  border-right: 1px solid rgba(16, 41, 72, 0.12);
}

.parallel-step:last-child {
  border-right: 0;
}

.parallel-step-number {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 0.9;
}

.parallel-step strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parallel-step p {
  margin: 0.45rem 0 0;
  color: #575046;
  line-height: 1.55;
}

.parallel-reviews {
  padding: 1rem 0 0;
  background: linear-gradient(180deg, #f5f1eb 0%, #faf8f3 100%);
}

.parallel-review-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: start;
}

.parallel-review-title h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
}

.parallel-review-card {
  color: var(--text-dark);
}

.parallel-review-card p {
  margin: 0 0 1.1rem;
  color: #464038;
  font-size: 1rem;
  line-height: 1.7;
}

.parallel-review-card strong {
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parallel-gallery {
  padding: 1.2rem 0 0;
  background: #faf8f3;
}

.parallel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.parallel-gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.parallel-bottom-band {
  background: var(--bg);
}

.parallel-bottom-inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.parallel-bottom-inner h2 {
  margin: 0;
  color: #f7f3ed;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.98;
  font-weight: 500;
  text-transform: uppercase;
}

.parallel-bottom-actions {
  display: flex;
  gap: 1rem;
}

.parallel-bottom-actions .btn {
  min-width: 220px;
  border-radius: 0;
}

.parallel-footer {
  background: #f7f3ed;
  padding: 1.6rem 0 0.7rem;
}

.parallel-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.parallel-footer-brand {
  margin-bottom: 1rem;
}

.parallel-footer h3 {
  margin: 0 0 0.8rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.parallel-footer p {
  margin: 0 0 0.8rem;
  color: #575046;
  line-height: 1.7;
}

.parallel-socials {
  display: flex;
  gap: 1rem;
  color: var(--text-dark);
}

.parallel-email-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  background: #fff;
  border: 1px solid rgba(16, 41, 72, 0.18);
}

.parallel-email-form input {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-dark);
}

.parallel-email-form input::placeholder {
  color: #777066;
}

.parallel-email-form button {
  border: 0;
  background: transparent;
  color: var(--bg);
  font-size: 1.3rem;
  cursor: pointer;
}

.parallel-footer-copy {
  padding: 1.2rem 0 0;
  color: #776f66;
  font-size: 0.85rem;
  text-align: center;
}

body.invoice-page {
  background: #ffffff;
  color: #221d19;
}

.print-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.print-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.print-invoice-card {
  background: #ffffff;
  border: 1px solid rgba(16, 41, 72, 0.14);
  box-shadow: 0 16px 40px rgba(20, 26, 36, 0.08);
  padding: 2rem;
}

.print-invoice-head,
.print-dual {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
}

.print-brand {
  color: var(--bg);
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.print-meta {
  color: #5e564d;
  line-height: 1.6;
}

.print-badge {
  min-width: 140px;
  align-self: flex-start;
  border: 1px solid rgba(16, 41, 72, 0.18);
  padding: 0.8rem 1rem;
  color: var(--bg);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.print-dual {
  margin-top: 1.6rem;
}

.print-dual h2 {
  margin: 0 0 0.7rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.print-dual p {
  margin: 0 0 0.35rem;
  color: #4d463f;
}

.print-table {
  width: 100%;
  margin-top: 1.8rem;
  border-collapse: collapse;
}

.print-table th,
.print-table td {
  border: 1px solid rgba(16, 41, 72, 0.12);
  padding: 0.85rem;
  text-align: left;
}

.print-table th {
  background: #f4efe7;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.print-note {
  margin-top: 1.4rem;
  color: #4d463f;
  line-height: 1.7;
}

.aibiz-return-cta {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: calc(100% - 2rem);
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 245, 141, 0.75);
  border-radius: 16px;
  background: linear-gradient(135deg, #42f58d, #65e4ff);
  color: #03120a;
  padding: 0.78rem 1.05rem;
  box-shadow: 0 14px 36px rgba(66, 245, 141, 0.2);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.aibiz-return-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(66, 245, 141, 0.24);
}

@media (max-width: 1180px) {
  .parallel-hero-card {
    margin-left: 4rem;
  }

  .parallel-mosaic-grid,
  .parallel-feature-grid,
  .parallel-review-grid,
  .parallel-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parallel-story-grid {
    grid-template-columns: 1fr;
  }

  .parallel-seal {
    margin: 0;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-platter-art {
    position: relative;
    right: auto;
    bottom: auto;
    order: 3;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .order-card {
    margin: 0;
  }

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

  .promo-grid,
  .module-grid,
  .testimonial-grid,
  .four-grid,
  .stats-grid,
  .invoice-grid,
  .history-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav,
  .portal-nav {
    padding: 1rem 0;
    align-items: flex-start;
  }

  .site-nav,
  .portal-nav,
  .header-actions {
    flex-direction: column;
  }

  .nav-links,
  .portal-nav-links,
  .header-actions {
    width: 100%;
  }

  .page-hero,
  .dual-grid,
  .band-grid,
  .footer-grid,
  .cta-inner,
  .portal-footer-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

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

  .parallel-nav,
  .parallel-links,
  .parallel-actions,
  .parallel-bottom-inner,
  .parallel-bottom-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .parallel-actions .btn,
  .parallel-bottom-actions .btn {
    width: 100%;
  }

  .parallel-hero-inner {
    justify-content: center;
  }

  .parallel-hero-card {
    margin-left: 0;
    width: min(100%, 520px);
  }

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

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

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head p {
    text-align: left;
  }

  .promo-card .promo-body {
    width: 100%;
  }

  .promo-card img {
    opacity: 0.3;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .hero-copy h1 {
    font-size: 3.65rem;
  }

  .trust-grid,
  .featured-grid,
  .promo-grid,
  .steps-grid,
  .testimonial-grid,
  .gallery-grid,
  .three-grid,
  .four-grid,
  .stats-grid,
  .module-grid,
  .invoice-grid,
  .history-grid,
  .split-fields {
    grid-template-columns: 1fr;
  }

  .parallel-values-grid,
  .parallel-mosaic-grid,
  .parallel-feature-grid,
  .parallel-process-grid,
  .parallel-review-grid,
  .parallel-gallery-grid,
  .parallel-footer-grid {
    grid-template-columns: 1fr;
  }

  .parallel-feature-card {
    grid-template-columns: 1fr;
  }

  .parallel-hero {
    min-height: auto;
    background-position: 62% center;
  }

  .parallel-hero-inner {
    min-height: auto;
    padding: 2rem 0;
  }

  .parallel-hero-card {
    padding: 2rem 1.4rem;
  }

  .parallel-value {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 41, 72, 0.1);
  }

  .parallel-value:last-child {
    border-bottom: 0;
  }

  .parallel-step {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 41, 72, 0.1);
  }

  .parallel-step:last-child {
    border-bottom: 0;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 154, 73, 0.18);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .client-sticky-nav {
    top: 86px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .aibiz-return-cta {
    left: 0.7rem;
    right: 0.7rem;
    max-width: none;
    bottom: 0.7rem;
  }
}

@media print {
  .print-toolbar,
  .aibiz-return-cta {
    display: none !important;
  }

  .print-shell {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .print-invoice-card {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

/* BRKLY-NYC landing overrides */
.brkly-landing .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(205, 162, 74, 0.18);
  backdrop-filter: blur(12px);
}

.brkly-brand .brand-english,
.parallel-footer-brand .brand-english {
  display: block;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brkly-brand .brand-sub,
.parallel-footer-brand .brand-sub {
  display: block;
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.brkly-landing .parallel-nav {
  min-height: 92px;
  align-items: center;
}

.brkly-landing .parallel-links a {
  color: rgba(245, 239, 230, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.brkly-landing .parallel-links a:hover,
.brkly-landing .parallel-links a:focus-visible {
  color: var(--gold-bright);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #16110a;
  box-shadow: 0 14px 32px rgba(205, 162, 74, 0.26);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 18px 38px rgba(205, 162, 74, 0.34);
}

.brkly-landing .btn-outline {
  border-color: rgba(245, 239, 230, 0.22);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

.brkly-landing .btn-outline:hover,
.brkly-landing .btn-outline:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(205, 162, 74, 0.06);
}

.parallel-hero {
  min-height: 820px;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.78) 32%, rgba(6, 6, 6, 0.28) 56%, rgba(6, 6, 6, 0.86) 100%),
    url("https://images.unsplash.com/photo-1517701550927-30cf4ba1f50c?q=80&w=2200&auto=format&fit=crop")
      center center / cover no-repeat;
  border-bottom: 1px solid rgba(205, 162, 74, 0.18);
}

.brkly-hero-inner {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: stretch;
  gap: 2rem;
  padding: 5.5rem 0 0;
}

.brkly-hero-copy {
  width: min(100%, 620px);
  margin: auto 0 5.4rem 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brkly-hero-lockup {
  margin-bottom: 1rem;
  color: rgba(245, 239, 230, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brkly-hero-copy h1 {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(4.6rem, 10vw, 8.8rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brkly-hero-copy h1 span {
  color: var(--gold);
}

.brkly-hero-copy p {
  margin: 1.7rem 0 1.9rem;
  color: rgba(245, 239, 230, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}

.brkly-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.hero-link {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--gold-bright);
}

.brkly-order-rail {
  align-self: stretch;
  justify-self: end;
  width: 100%;
  max-width: 220px;
  background: rgba(249, 245, 238, 0.98);
  border-left: 1px solid rgba(205, 162, 74, 0.16);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.16);
  padding: 7rem 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brkly-order-item {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(27, 24, 20, 0.12);
}

.brkly-order-item strong,
.brkly-order-item span {
  display: block;
}

.brkly-order-item strong {
  color: #18130c;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brkly-order-item span {
  margin-top: 0.32rem;
  color: #5f564a;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brkly-order-arrow {
  margin-top: auto;
  align-self: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #0b0b0b;
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.brkly-hero-note {
  position: absolute;
  right: 290px;
  top: 132px;
  width: 230px;
  color: rgba(245, 239, 230, 0.88);
  text-transform: uppercase;
}

.brkly-hero-note p {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.1;
}

.brkly-hero-note span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brkly-ticker {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.brkly-ticker .parallel-value {
  min-height: 62px;
  padding: 0.85rem 0.7rem;
  background: #f4efe7;
}

.brkly-ticker .parallel-value strong {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.parallel-story {
  padding: 2.6rem 0 2.2rem;
  background: linear-gradient(180deg, #f6f1e8 0%, #f1e9de 100%);
}

.parallel-story-grid {
  grid-template-columns: 84px minmax(0, 0.9fr) minmax(0, 1.2fr);
  grid-template-areas:
    "rail copy image"
    "rail copy note"
    "rail secondary note";
  gap: 1rem 1.25rem;
  align-items: stretch;
}

.parallel-story-rail {
  grid-area: rail;
  display: flex;
  justify-content: center;
  border-right: 1px solid rgba(205, 162, 74, 0.24);
}

.parallel-story-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #3d362e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.parallel-story-copy {
  grid-area: copy;
  align-self: center;
}

.parallel-story-copy h2 {
  color: #13110d;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 5.7rem);
  line-height: 0.92;
  margin-bottom: 1rem;
}

.parallel-story-copy p {
  color: #4d453b;
  font-size: 1rem;
  line-height: 1.8;
}

.parallel-story-image {
  grid-area: image;
  min-height: 320px;
}

.parallel-story-image img {
  height: 100%;
  min-height: 320px;
  border-radius: 0;
  object-fit: cover;
}

.parallel-story-note {
  grid-area: note;
  min-height: 220px;
  padding: 2rem 2.1rem;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(11, 11, 11, 0.98)),
    radial-gradient(circle at top, rgba(205, 162, 74, 0.1), transparent 40%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(205, 162, 74, 0.18);
}

.parallel-story-note p {
  margin: 0;
  font-family: "Georgia", serif;
  font-size: 2.2rem;
  line-height: 1.3;
  font-style: italic;
}

.parallel-story-copy-secondary {
  grid-area: secondary;
  padding-top: 1rem;
}

.parallel-story-copy-secondary h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
}

.parallel-gallery {
  padding: 0;
  background: #090909;
}

.parallel-gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.parallel-gallery-grid img {
  height: 240px;
}

.parallel-bottom-band {
  border-top: 1px solid rgba(205, 162, 74, 0.18);
  border-bottom: 1px solid rgba(205, 162, 74, 0.18);
  background: linear-gradient(180deg, #0a0a0a, #050505);
}

.parallel-bottom-inner h2 {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

.parallel-footer {
  background: linear-gradient(180deg, #050505, #090909);
  color: var(--cream);
  padding: 2rem 0 0.8rem;
}

.parallel-footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
}

.parallel-footer p,
.parallel-footer h3 {
  color: rgba(245, 239, 230, 0.86);
}

.parallel-socials {
  color: var(--gold-bright);
}

.parallel-email-form {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(205, 162, 74, 0.24);
}

.parallel-email-form input {
  color: var(--cream);
}

.parallel-email-form input::placeholder {
  color: rgba(245, 239, 230, 0.46);
}

.parallel-email-form button {
  color: var(--gold-bright);
}

.parallel-footer-copy {
  color: rgba(245, 239, 230, 0.52);
}

@media (max-width: 1080px) {
  .brkly-hero-inner {
    grid-template-columns: 1fr;
    padding: 4.5rem 0 2.4rem;
  }

  .brkly-hero-copy {
    margin: auto 0 0;
    width: min(100%, 680px);
  }

  .brkly-order-rail {
    max-width: none;
    width: 100%;
    padding: 1.5rem 1.4rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
  }

  .brkly-order-item {
    padding: 0;
    border-bottom: 0;
  }

  .brkly-order-arrow {
    margin-top: 0;
  }

  .brkly-hero-note {
    position: static;
    width: auto;
    padding: 1rem 0 0;
  }

  .parallel-story-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rail"
      "copy"
      "image"
      "note"
      "secondary";
  }

  .parallel-story-rail {
    justify-content: flex-start;
    padding-bottom: 0.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(205, 162, 74, 0.24);
  }

  .parallel-story-rail span {
    writing-mode: initial;
    transform: none;
  }

  .brkly-ticker {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .brkly-landing .parallel-actions {
    width: 100%;
    justify-content: stretch;
  }

  .brkly-landing .parallel-actions .btn {
    flex: 1 1 100%;
  }

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

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

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

  .parallel-gallery-grid img {
    height: 180px;
  }

  .parallel-bottom-inner,
  .parallel-footer-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}
