:root {
  --paper: #f7f1ea;
  --paper-soft: #f1e7dd;
  --paper-deep: #e6d8cb;
  --surface: rgba(255, 250, 244, 0.9);
  --surface-strong: rgba(255, 252, 248, 0.97);
  --ink: #251f1a;
  --ink-soft: #4e453d;
  --ink-muted: #786b60;
  --taupe: #bca89a;
  --taupe-deep: #8f7968;
  --line: rgba(56, 45, 37, 0.14);
  --line-strong: rgba(56, 45, 37, 0.25);
  --panel: #181512;
  --panel-soft: #25201d;
  --panel-muted: #342e2a;
  --gold: #c4aa91;
  --gold-bright: #e6d5c3;
  --success: #4ce07c;
  --danger: #ff6158;
  --call: #57a7ff;
  --warning: #ffb75d;
  --shadow: 0 28px 60px rgba(34, 24, 18, 0.16);
  --shadow-soft: 0 18px 34px rgba(34, 24, 18, 0.1);
  --display: "Bodoni Moda", "Times New Roman", serif;
  --ui: "Manrope", Arial, sans-serif;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ui);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(180deg, #f6f0e8 0%, #ece3d8 100%);
}

body.studiotier-landing {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, #f8f3ec 0%, #eee4d8 100%);
}

body.portal-page,
body.client-page {
  color: #f7efe7;
  background:
    radial-gradient(circle at top, rgba(214, 189, 161, 0.12), transparent 24%),
    linear-gradient(180deg, #231d1a 0%, #171311 100%);
}

body.invoice-page {
  background: #efe7de;
  color: var(--ink);
}

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(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 252, 248, 0.06);
  color: #f8efe6;
  padding: 0.92rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 239, 231, 0.55);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(230, 213, 195, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 213, 195, 0.1);
}

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

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

.btn,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.btn {
  min-height: 48px;
  padding: 0.9rem 1.32rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-button {
  min-height: 38px;
  padding: 0.7rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.btn-primary,
.btn-portal-strong,
.mini-button.is-primary {
  background: linear-gradient(180deg, #efe2d3 0%, #c8ab90 100%);
  color: #211915;
  box-shadow: 0 12px 28px rgba(120, 90, 66, 0.2);
}

.btn-primary:hover,
.btn-portal-strong:hover,
.btn-primary:focus-visible,
.btn-portal-strong:focus-visible,
.mini-button.is-primary:hover,
.mini-button.is-primary:focus-visible {
  box-shadow: 0 16px 34px rgba(120, 90, 66, 0.26);
}

.btn-outline,
.mini-button.is-outline {
  background: rgba(255, 252, 248, 0.08);
  border-color: rgba(255, 250, 244, 0.26);
  color: #f7efe7;
}

.studiotier-landing .btn-outline {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(52, 40, 32, 0.18);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(80, 68, 56, 0.18);
  color: var(--ink);
}

.btn-success,
.mini-button.is-success {
  background: linear-gradient(180deg, #92f8b6 0%, var(--success) 100%);
  color: #07180d;
}

.btn-danger,
.mini-button.is-danger {
  background: linear-gradient(180deg, #ff9a95 0%, var(--danger) 100%);
  color: #240707;
}

.btn-call,
.mini-button.is-call {
  background: linear-gradient(180deg, #9fd2ff 0%, var(--call) 100%);
  color: #071829;
}

.btn-warning,
.mini-button.is-warning {
  background: linear-gradient(180deg, #ffd19a 0%, var(--warning) 100%);
  color: #2a1503;
}

.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 1rem;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mini-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
}

.section-head p {
  max-width: 420px;
}

.surface-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(255, 250, 244, 0.03));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

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

.page-lead,
.surface-card p,
.status-line,
.field-help,
.footer-copy,
.site-footer p {
  margin: 0;
  color: rgba(247, 239, 231, 0.74);
  line-height: 1.72;
}

.studiotier-landing .page-lead,
.studiotier-landing .surface-card p,
.studiotier-landing .status-line,
.studiotier-landing .field-help,
.studiotier-landing .footer-copy,
.studiotier-landing .site-footer p {
  color: var(--ink-muted);
}

.tool-chip,
.session-chip,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-chip {
  color: rgba(247, 239, 231, 0.84);
}

.studiotier-landing .tool-chip {
  border-color: rgba(47, 37, 28, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
}

.status-badge {
  border-color: transparent;
  color: #101010;
  background: linear-gradient(180deg, #f7ead8, #d7c1aa);
}

.status-badge.is-success {
  background: linear-gradient(180deg, #92f8b6, var(--success));
  color: #07180d;
}

.status-badge.is-danger {
  background: linear-gradient(180deg, #ff9a95, var(--danger));
  color: #240707;
}

.status-badge.is-call {
  background: linear-gradient(180deg, #9fd2ff, var(--call));
  color: #071829;
}

.status-badge.is-warning {
  background: linear-gradient(180deg, #ffd19a, var(--warning));
  color: #2a1503;
}

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

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

.three-grid,
.four-grid {
  display: grid;
  gap: 1rem;
}

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

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

.dual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.stats-grid,
.module-grid,
.list-grid {
  display: grid;
  gap: 1rem;
}

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

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

.portal-main {
  padding: 1.2rem 0 4rem;
}

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

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.field-label {
  display: grid;
  gap: 0.62rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 239, 231, 0.86);
}

.field-label .field-copy {
  color: rgba(247, 239, 231, 0.56);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.studiotier-landing .field-label {
  color: var(--ink);
}

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

.module-card,
.metric-card,
.detail-card,
.timeline-card,
.invoice-card,
.history-card,
.request-card {
  display: grid;
  gap: 0.78rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.studiotier-landing .module-card,
.studiotier-landing .metric-card,
.studiotier-landing .detail-card,
.studiotier-landing .timeline-card,
.studiotier-landing .invoice-card,
.studiotier-landing .history-card,
.studiotier-landing .request-card {
  border-color: rgba(47, 37, 28, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.metric-card h2,
.module-card h3,
.detail-card h3,
.timeline-card h3,
.invoice-card h3,
.history-card h3,
.request-card h3,
.surface-card h2,
.surface-card h1,
.surface-card h3 {
  margin: 0;
}

.metric-card .value,
.invoice-card .value {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.meta-item {
  color: rgba(247, 239, 231, 0.62);
  font-size: 0.84rem;
}

.studiotier-landing .meta-item {
  color: var(--ink-muted);
}

.portal-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(23, 19, 17, 0.96), rgba(23, 19, 17, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.portal-nav,
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-port,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem;
}

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

.brand-arabic,
.brand-sub,
.hero-side-label,
.site-footer small,
.landing-footer small {
  color: rgba(247, 239, 231, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.studiotier-landing .brand-arabic,
.studiotier-landing .brand-sub {
  color: rgba(37, 31, 26, 0.56);
}

.brand-english {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portal-nav-links,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
}

.portal-nav-links a,
.nav-links a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 239, 231, 0.74);
}

.studiotier-landing .nav-links a {
  color: rgba(37, 31, 26, 0.74);
}

.portal-nav-links a::after,
.nav-links a::after,
.client-sticky-nav a::after,
.editorial-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.portal-nav-links a:hover::after,
.portal-nav-links a:focus-visible::after,
.portal-nav-links a.is-active::after,
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.client-sticky-nav a:hover::after,
.client-sticky-nav a:focus-visible::after,
.client-sticky-nav a.is-active::after,
.editorial-link:hover::after,
.editorial-link:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 15;
  padding-top: 1.4rem;
}

.landing-shell {
  overflow: hidden;
}

.hero-curtain {
  position: relative;
  min-height: 100svh;
  padding: 8.5rem 0 3rem;
  background:
    linear-gradient(90deg, rgba(108, 94, 82, 0.12) 0, rgba(255, 255, 255, 0.36) 11%, rgba(167, 148, 132, 0.12) 23%, rgba(255, 255, 255, 0.52) 33%, rgba(170, 153, 137, 0.12) 44%, rgba(255, 255, 255, 0.45) 56%, rgba(167, 150, 135, 0.1) 67%, rgba(255, 255, 255, 0.58) 79%, rgba(157, 140, 124, 0.11) 91%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(180deg, #f6f1ea 0%, #efe6db 74%, #e4d7cb 100%);
}

.hero-curtain::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(202, 185, 170, 0), rgba(182, 164, 148, 0.42));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  position: relative;
  padding: 7rem 0 4rem;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0 0 1.35rem;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9.4vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 640px;
}

.hero-copy p {
  margin: 0 0 2.2rem;
  max-width: 360px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.editorial-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.4rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-side-label,
.hero-side-count {
  position: absolute;
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-side-label {
  right: 1rem;
  top: 23rem;
  color: rgba(37, 31, 26, 0.62);
}

.hero-side-count {
  left: -0.2rem;
  bottom: 6rem;
  display: grid;
  gap: 0.7rem;
  align-items: center;
  justify-items: center;
  color: rgba(37, 31, 26, 0.5);
}

.hero-side-count::before {
  content: "";
  width: 1px;
  height: 58px;
  background: rgba(37, 31, 26, 0.24);
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: end center;
}

.cake-stage {
  position: relative;
  width: min(630px, 100%);
  height: 760px;
}

.pedestal {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 420px;
  height: 120px;
  border-radius: 50% 50% 22% 22%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.45), transparent 30%),
    linear-gradient(180deg, #d8cabb 0%, #c4b4a3 100%);
  box-shadow:
    inset 0 8px 18px rgba(255, 255, 255, 0.35),
    0 30px 40px rgba(99, 82, 68, 0.18);
  transform: translateX(-50%);
}

.pedestal::after {
  content: "";
  position: absolute;
  inset: 22px 24px auto;
  height: 10px;
  border-radius: 999px;
  background: rgba(120, 98, 80, 0.16);
}

.tier,
.tier-shadow {
  position: absolute;
  left: 50%;
  border-radius: 32px 32px 18px 18px;
  transform: translateX(-50%);
}

.tier-shadow {
  background: rgba(73, 58, 46, 0.1);
  filter: blur(18px);
}

.tier-base-shadow {
  bottom: 102px;
  width: 250px;
  height: 30px;
}

.tier-mid-shadow {
  bottom: 300px;
  width: 205px;
  height: 24px;
}

.tier-top-shadow {
  bottom: 452px;
  width: 160px;
  height: 22px;
}

.tier {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.9), transparent 20%),
    linear-gradient(180deg, #fbf6ef 0%, #e4d5c5 100%);
  box-shadow:
    inset -16px -22px 28px rgba(147, 123, 100, 0.16),
    inset 12px 14px 18px rgba(255, 255, 255, 0.72),
    0 16px 28px rgba(102, 84, 69, 0.14);
}

.tier::before {
  content: "";
  position: absolute;
  inset: 18px 16px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.48), transparent 18%),
    radial-gradient(circle at 66% 52%, rgba(151, 126, 104, 0.16), transparent 19%),
    radial-gradient(circle at 42% 72%, rgba(151, 126, 104, 0.12), transparent 16%);
  mix-blend-mode: multiply;
}

.tier-base {
  bottom: 112px;
  width: 250px;
  height: 240px;
}

.tier-mid {
  bottom: 318px;
  width: 208px;
  height: 180px;
}

.tier-top {
  bottom: 468px;
  width: 160px;
  height: 150px;
}

.cake-platter {
  position: absolute;
  left: 50%;
  bottom: 94px;
  width: 300px;
  height: 28px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #eee1d2 0%, #d7c5b2 100%);
  transform: translateX(-50%);
  box-shadow: 0 8px 16px rgba(128, 103, 82, 0.14);
}

.flower-cluster,
.flower-stems {
  position: absolute;
  pointer-events: none;
}

.flower-cluster {
  left: 42%;
  bottom: 334px;
  width: 170px;
  height: 180px;
}

.flower-stems {
  right: 18%;
  top: 38px;
  width: 170px;
  height: 260px;
}

.stem {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, #ae9b87, #827160);
  border-radius: 999px;
  transform-origin: bottom center;
}

.stem.one {
  right: 62px;
  bottom: 0;
  height: 250px;
  transform: rotate(-8deg);
}

.stem.two {
  right: 98px;
  bottom: 16px;
  height: 220px;
  transform: rotate(12deg);
}

.stem.three {
  right: 28px;
  bottom: 48px;
  height: 190px;
  transform: rotate(18deg);
}

.petal {
  position: absolute;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(246, 236, 228, 0.92) 45%, rgba(202, 183, 167, 0.78) 100%);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.22);
}

.petal.one {
  left: 14px;
  top: 66px;
}

.petal.two {
  left: 56px;
  top: 90px;
  width: 68px;
}

.petal.three {
  left: 92px;
  top: 44px;
  width: 56px;
}

.petal::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #8d7865 0%, #cbb6a4 55%, rgba(255, 255, 255, 0.8) 100%);
}

.branch {
  position: absolute;
  width: 2px;
  height: 86px;
  background: linear-gradient(180deg, #b7a28e, #826e5c);
  border-radius: 999px;
}

.branch.one {
  left: 32px;
  top: 12px;
  transform: rotate(-34deg);
}

.branch.two {
  left: 110px;
  top: 26px;
  transform: rotate(18deg);
}

.branch span,
.stem span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(149, 128, 109, 0.45);
  background: rgba(255, 255, 255, 0.28);
}

.branch span:nth-child(1),
.stem span:nth-child(1) {
  top: 18px;
  left: -10px;
}

.branch span:nth-child(2),
.stem span:nth-child(2) {
  top: 32px;
  left: 6px;
}

.branch span:nth-child(3),
.stem span:nth-child(3) {
  top: 52px;
  left: -12px;
}

.branch span:nth-child(4),
.stem span:nth-child(4) {
  top: 66px;
  left: 7px;
}

.editorial-section {
  padding: 0;
}

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

.editorial-panel {
  min-height: 500px;
}

.copy-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4.4rem 4rem;
  background: linear-gradient(180deg, #faf6f0 0%, #f3e9df 100%);
}

.copy-panel .copy-block {
  max-width: 420px;
}

.copy-panel h2,
.offer-copy h2,
.process-stage h2,
.cta-panel h2,
.testimonial-quote {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.copy-panel h2,
.offer-copy h2,
.process-stage h2,
.cta-panel h2 {
  margin: 0 0 1rem;
  color: var(--ink);
}

.copy-panel p,
.offer-copy p,
.process-stage p,
.cta-panel p {
  margin: 0 0 1.4rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.ambient-frame,
.art-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, #d8c6b4 0%, #a59484 100%);
}

.ambient-frame.dark {
  background:
    radial-gradient(circle at 24% 18%, rgba(237, 215, 189, 0.18), transparent 28%),
    linear-gradient(180deg, #1f1a17 0%, #151210 100%);
}

.ambient-frame.light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, #eee1d2 0%, #cdb8a5 100%);
}

.ambient-frame::before,
.ambient-frame::after,
.art-card::before,
.art-card::after {
  content: "";
  position: absolute;
}

.cake-slice-scene::before {
  left: 18%;
  top: 14%;
  width: 44%;
  height: 56%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 16%),
    repeating-linear-gradient(180deg, #fbf5ee 0 16px, #af8c6f 16px 46px, #f7efe5 46px 58px, #916d51 58px 84px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
}

.cake-slice-scene::after {
  left: 6%;
  bottom: 10%;
  width: 60%;
  height: 18%;
  border-radius: 50%;
  background: linear-gradient(180deg, #817060 0%, #51453c 100%);
}

.window-scene::before {
  inset: 10% 14%;
  background:
    linear-gradient(90deg, rgba(43, 34, 28, 0.16) 0 6px, transparent 6px calc(100% - 6px), rgba(43, 34, 28, 0.16) calc(100% - 6px)),
    linear-gradient(180deg, rgba(43, 34, 28, 0.16) 0 6px, transparent 6px calc(100% - 6px), rgba(43, 34, 28, 0.16) calc(100% - 6px)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(219, 202, 186, 0.18));
}

.window-scene::after {
  left: 50%;
  bottom: 18%;
  width: 38%;
  height: 32%;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.4), transparent 30%),
    linear-gradient(180deg, #cab3a0 0%, #9a8677 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.92fr 0.88fr 0.66fr;
  min-height: 740px;
}

.offer-copy {
  padding: 4.2rem 3.8rem;
  background: linear-gradient(180deg, #fbf7f1 0%, #f3e8dc 100%);
}

.offering-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.offering-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47, 37, 28, 0.14);
}

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

.offering-item strong {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offering-item span {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.offering-item em {
  font-style: normal;
  font-size: 1.2rem;
  color: var(--taupe-deep);
}

.center-art,
.side-art-stack {
  position: relative;
}

.sculpted-cake,
.petal-cake,
.ribbon-cake,
.atelier-scene,
.package-scene,
.portrait-scene,
.vase-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.14)),
    linear-gradient(180deg, #efe4d8 0%, #ccb8a6 100%);
}

.sculpted-cake::before,
.petal-cake::before,
.ribbon-cake::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: 52%;
  height: 56%;
  transform: translateX(-50%);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 224, 210, 0.98)),
    radial-gradient(circle at 25% 28%, rgba(255, 255, 255, 0.44), transparent 24%);
  box-shadow:
    inset -18px -20px 26px rgba(153, 126, 101, 0.12),
    0 24px 36px rgba(93, 76, 62, 0.14);
}

.sculpted-cake::after,
.petal-cake::after,
.ribbon-cake::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9%;
  width: 38%;
  height: 14%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #d8c6b4, #b8a290);
}

.sculpted-cake .ruffle {
  position: absolute;
  right: 20%;
  top: 24%;
  width: 18%;
  height: 38%;
  border-radius: 50% 10% 48% 18%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 218, 203, 0.98));
  transform: rotate(12deg);
  box-shadow: inset -8px -10px 18px rgba(170, 143, 118, 0.1);
}

.petal-cake .stem-spray,
.ribbon-cake .stem-spray {
  position: absolute;
  inset: 0;
}

.petal-cake .stem-spray::before,
.petal-cake .stem-spray::after,
.ribbon-cake .stem-spray::before,
.ribbon-cake .stem-spray::after {
  content: "";
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, #9a8773, #6f5d4f);
  border-radius: 999px;
}

.petal-cake .stem-spray::before {
  left: 58%;
  top: 22%;
  height: 30%;
  transform: rotate(-12deg);
}

.petal-cake .stem-spray::after {
  left: 62%;
  top: 19%;
  height: 24%;
  transform: rotate(14deg);
}

.ribbon-cake::before {
  width: 50%;
  height: 50%;
}

.ribbon-cake .ribbon {
  position: absolute;
  left: 27%;
  top: 30%;
  width: 13%;
  height: 34%;
  border-radius: 18px;
  background: linear-gradient(180deg, #252321, #10100f);
}

.ribbon-cake .ribbon::before,
.ribbon-cake .ribbon::after {
  content: "";
  position: absolute;
  top: -8%;
  width: 70%;
  height: 22%;
  border-radius: 50%;
  background: #171615;
}

.ribbon-cake .ribbon::before {
  left: -18%;
}

.ribbon-cake .ribbon::after {
  right: -18%;
}

.ribbon-cake .stem-spray::before {
  right: 30%;
  top: 42%;
  height: 18%;
  transform: rotate(56deg);
}

.ribbon-cake .stem-spray::after {
  right: 24%;
  top: 44%;
  height: 14%;
  transform: rotate(74deg);
}

.side-art-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.08fr 0.97fr;
  min-height: 470px;
}

.process-stage {
  padding: 3.8rem 3.3rem;
  background: linear-gradient(180deg, #221d19 0%, #171311 100%);
  color: #f8efe6;
}

.process-stage h2,
.process-stage p {
  color: inherit;
}

.process-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.process-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atelier-scene {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.54), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, #d8c7b7 0%, #a99584 100%);
}

.atelier-scene::before {
  content: "";
  position: absolute;
  left: 16%;
  bottom: 0;
  width: 30%;
  height: 74%;
  border-radius: 26px 26px 0 0;
  background:
    linear-gradient(180deg, #e9ded2 0%, #bba793 100%);
}

.atelier-scene::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 16%;
  width: 42%;
  height: 44%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #fdf8f2 0%, #e7d7c6 100%);
}

.package-scene {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, #d8c7b8 0%, #b29f8e 100%);
}

.package-scene::before {
  content: "";
  position: absolute;
  right: 18%;
  top: 18%;
  width: 46%;
  height: 42%;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7f1e8 0%, #eadfce 100%);
  box-shadow: 0 24px 34px rgba(92, 71, 57, 0.16);
}

.package-scene::after {
  content: "";
  position: absolute;
  left: 14%;
  bottom: 16%;
  width: 24%;
  height: 20%;
  border-radius: 10px;
  background: linear-gradient(180deg, #faf5ee 0%, #ddd0c1 100%);
  box-shadow: 0 18px 26px rgba(92, 71, 57, 0.14);
}

.testimonial-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.42fr;
  gap: 0;
  align-items: stretch;
  background: #fbf7f1;
}

.testimonial-copy {
  padding: 3rem 3.4rem;
}

.testimonial-quote {
  margin: 0;
  color: var(--ink);
}

.testimonial-meta {
  display: grid;
  place-items: center;
  padding: 3rem 2rem;
  border-left: 1px solid rgba(47, 37, 28, 0.12);
  border-right: 1px solid rgba(47, 37, 28, 0.12);
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
  text-align: center;
}

.testimonial-meta strong {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-meta span {
  margin-top: 0.7rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-scene::before {
  content: "";
  position: absolute;
  inset: 10%;
  background:
    linear-gradient(180deg, rgba(34, 26, 20, 0.18), rgba(34, 26, 20, 0.06)),
    linear-gradient(180deg, #ccb7a3 0%, #9f8875 100%);
}

.landing-footer {
  background: linear-gradient(180deg, #1b1714 0%, #12100f 100%);
  color: #f8efe6;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 0.5fr;
  gap: 0;
}

.footer-art,
.cta-panel,
.footer-side-copy {
  min-height: 350px;
}

.footer-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #22201d 0%, #11100f 100%);
}

.footer-art::before {
  content: "";
  position: absolute;
  left: 18%;
  bottom: 16%;
  width: 20%;
  height: 42%;
  border-radius: 40% 40% 18% 18%;
  background: linear-gradient(180deg, #2e2a26 0%, #191715 100%);
}

.footer-art::after {
  content: "";
  position: absolute;
  left: 23%;
  bottom: 42%;
  width: 24%;
  height: 20%;
  border-radius: 50%;
  border: 1px solid rgba(230, 213, 195, 0.28);
  box-shadow:
    22px -36px 0 -9px rgba(230, 213, 195, 0.2),
    44px -18px 0 -8px rgba(230, 213, 195, 0.18),
    58px -62px 0 -10px rgba(230, 213, 195, 0.16);
}

.cta-panel {
  padding: 3.4rem 3rem;
  display: grid;
  align-content: center;
}

.cta-panel h2,
.cta-panel p {
  color: #f8efe6;
}

.footer-side-copy {
  padding: 3.4rem 3rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 239, 231, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.client-sticky-nav {
  position: sticky;
  top: 5.7rem;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(31, 27, 25, 0.84);
  backdrop-filter: blur(12px);
}

.client-sticky-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 239, 231, 0.82);
}

.gateway-hero {
  padding: 2rem 0 4rem;
}

.gateway-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.2rem;
  text-align: center;
}

.stats-grid .metric-card h3,
.module-grid .module-card h3,
.invoice-card h3,
.history-card h3,
.request-card h3,
.timeline-card h3 {
  font-size: 1rem;
}

.list-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.module-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.schedule-board,
.workorders-board {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.schedule-column,
.workorder-column {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-column h3,
.workorder-column h3 {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-card,
.workorder-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-card h3,
.workorder-card h3 {
  margin: 0;
  font-size: 1rem;
}

.schedule-card.is-off {
  background: linear-gradient(180deg, rgba(255, 97, 88, 0.14), rgba(34, 12, 10, 0.72));
}

.schedule-card.is-on {
  background: linear-gradient(180deg, rgba(76, 224, 124, 0.16), rgba(15, 32, 20, 0.74));
}

.schedule-card.is-oncall {
  background: linear-gradient(180deg, rgba(87, 167, 255, 0.16), rgba(10, 22, 34, 0.76));
}

.timeline-row,
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.timeline-row span,
.detail-row span {
  color: rgba(247, 239, 231, 0.66);
  font-size: 0.82rem;
}

.map-shell {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-shell iframe {
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(1) contrast(0.95) brightness(0.96);
}

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

.map-pin {
  position: absolute;
  display: grid;
  gap: 0.25rem;
  width: 170px;
  transform: translate(-50%, -50%);
}

.map-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(16, 10, 7, 0.22);
}

.map-pin.is-route .map-pin-dot {
  background: var(--danger);
}

.map-pin.is-setup .map-pin-dot {
  background: var(--call);
}

.map-pin.is-ready .map-pin-dot {
  background: var(--success);
}

.map-pin-card {
  width: max-content;
  max-width: 170px;
  padding: 0.55rem 0.7rem;
  border-radius: 16px;
  background: rgba(18, 14, 12, 0.88);
  color: #f7efe7;
  font-size: 0.72rem;
  line-height: 1.5;
}

.map-pin-card strong {
  display: block;
  font-size: 0.76rem;
  margin-bottom: 0.18rem;
}

.chart-grid {
  display: grid;
  gap: 1rem;
}

.bars {
  display: grid;
  gap: 0.9rem;
}

.bar-row {
  display: grid;
  gap: 0.55rem;
}

.bar-row header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
  color: rgba(247, 239, 231, 0.72);
}

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

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f4e7da 0%, #ccb095 100%);
}

.table-shell {
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

th,
td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

th {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 239, 231, 0.72);
}

.invoice-grid,
.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.print-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 1.8rem 0 4rem;
}

.print-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.print-invoice-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 52px rgba(28, 21, 16, 0.12);
}

.print-invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: flex-start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(47, 37, 28, 0.12);
}

.print-invoice-head h1,
.print-invoice-head h2,
.print-section h3,
.print-badge {
  margin: 0;
}

.print-invoice-head h1,
.print-section h3 {
  font-family: var(--display);
}

.print-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #f2e9df;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.print-section {
  padding: 1.2rem;
  border-radius: 22px;
  background: #faf6f0;
}

.print-section p {
  margin: 0.3rem 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.print-table {
  width: 100%;
  margin-top: 1.6rem;
}

.print-table th,
.print-table td {
  border-bottom-color: rgba(47, 37, 28, 0.12);
  color: var(--ink);
}

.print-table th {
  background: #f4ede3;
}

.print-note {
  margin-top: 1.3rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.portal-footer {
  padding: 0 0 4rem;
}

.portal-footer-card {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.1), rgba(255, 250, 244, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.session-chip {
  color: rgba(247, 239, 231, 0.82);
}

.studiotier-landing .session-chip {
  color: var(--ink);
}

.aibiz-return-cta {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: calc(100% - 2rem);
  min-height: 2.95rem;
  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;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero,
  .dual-grid,
  .editorial-grid,
  .offer-grid,
  .process-grid,
  .landing-footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 4rem;
  }

  .hero-side-label,
  .hero-side-count {
    display: none;
  }

  .copy-panel {
    grid-template-columns: 1fr;
  }

  .testimonial-strip {
    grid-template-columns: 1fr;
  }

  .testimonial-meta {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(47, 37, 28, 0.12);
    border-bottom: 1px solid rgba(47, 37, 28, 0.12);
  }

  .footer-bottom,
  .portal-footer-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .site-nav,
  .portal-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions,
  .portal-nav-links,
  .nav-links {
    justify-content: center;
  }

  .container {
    width: min(100% - 28px, 1280px);
  }

  .hero-visual {
    min-height: 620px;
  }

  .cake-stage {
    height: 620px;
  }

  .pedestal {
    width: 330px;
    height: 92px;
  }

  .tier-base {
    width: 210px;
    height: 200px;
  }

  .tier-mid {
    bottom: 286px;
    width: 176px;
    height: 156px;
  }

  .tier-top {
    bottom: 416px;
    width: 136px;
    height: 130px;
  }

  .cake-platter {
    width: 252px;
  }

  .three-grid,
  .four-grid,
  .split-fields,
  .print-grid {
    grid-template-columns: 1fr;
  }

  .client-sticky-nav {
    top: auto;
    position: relative;
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .hero-curtain {
    padding-top: 12rem;
  }

  .portal-nav-links,
  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    gap: 0.75rem 1rem;
    width: 100%;
  }

  .portal-nav-links a,
  .nav-links a {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .header-actions,
  .portal-nav .session-chip {
    width: 100%;
    justify-content: center;
  }

  .header-actions .btn {
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .copy-panel,
  .offer-copy,
  .process-stage,
  .testimonial-copy,
  .footer-side-copy,
  .cta-panel,
  .gateway-card {
    padding: 1.6rem;
  }

  .surface-card.padded,
  .portal-footer-card {
    padding: 1.25rem;
  }

  .print-shell {
    width: min(100% - 20px, 1120px);
  }

  .print-invoice-head {
    flex-direction: column;
  }

  .print-invoice-card {
    padding: 1.2rem;
  }
}

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

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

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

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