:root {
  --blue: #2b55ff;
  --blue-dark: #1530b8;
  --accent: #ff7a59;
  --accent-soft: #ffd7cc;
  --cream: #f7f9ff;
  --ink: #111425;
  --muted: #5d6378;
  --mint: #9de7ff;
  --pink: #f4a3cf;
  --paper: #ffffff;
  --line: rgba(17, 20, 17, 0.12);
  --shadow: 0 24px 70px rgba(43, 85, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-family:
    Arial Rounded MT Bold, Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(43, 85, 255, 0.06), transparent 40%, rgba(255, 122, 89, 0.1)),
    #f2f5ff;
  content: "";
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1230px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 18px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 40px rgba(21, 48, 184, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 17vw, 218px);
  height: 44px;
  padding: 7px 14px 7px 16px;
  border-radius: 999px;
  background: #fff;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 30px;
  margin: auto;
  object-fit: contain;
  object-position: 52% 56%;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a,
.top-link {
  opacity: 0.92;
}

.site-nav a:hover,
.top-link:hover {
  opacity: 1;
}

.site-nav .active-link {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.top-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.top-link,
.button-accent {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 12px 0 rgba(17, 20, 17, 0.1);
}

.button-white {
  color: var(--blue-dark);
  background: #fff;
}

.button-outline {
  border-color: var(--line);
  background: #fff;
}

.button:hover,
.top-link:hover {
  transform: translateY(-2px) rotate(-0.4deg);
}

.nav-toggle {
  display: none;
}

#services,
#demos,
#how,
#contact,
#faqs {
  scroll-margin-top: 116px;
}

.panel-blue {
  width: min(1230px, calc(100% - 32px));
  margin: 28px auto 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 28%, rgba(157, 231, 255, 0.24), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(255, 122, 89, 0.16), transparent 26%),
    linear-gradient(145deg, var(--blue), #1737d7);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
  min-height: 680px;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -2%;
  bottom: -16px;
  left: -2%;
  height: 64px;
  background:
    radial-gradient(18px 18px at 20px 18px, var(--cream) 98%, transparent),
    radial-gradient(24px 20px at 64px 26px, var(--cream) 98%, transparent),
    radial-gradient(30px 22px at 118px 18px, var(--cream) 98%, transparent);
  background-size: 150px 52px;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d8f7ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family:
    Impact, Haettenschweiler, Franklin Gothic Heavy, Arial Black, Arial Rounded MT Bold, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.91;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.75rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions.centered {
  justify-content: center;
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 460px;
}

.tilt-card {
  border: 12px solid #fff;
  border-radius: 6px;
  box-shadow: 0 28px 60px rgba(17, 20, 17, 0.22);
}

.main-card {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: min(100%, 650px);
  filter: hue-rotate(158deg) saturate(1.12);
  transform: rotate(4deg);
  animation: floatCard 6s ease-in-out infinite;
}

.mini-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  width: 180px;
  padding: 18px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 20, 17, 0.18);
  animation: drift 5s ease-in-out infinite;
}

.mini-note strong {
  font-size: 1.1rem;
}

.mini-note span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.note-one {
  top: 24px;
  left: 20px;
  transform: rotate(-8deg);
}

.note-two {
  right: 18px;
  bottom: 10px;
  transform: rotate(6deg);
  animation-delay: -2s;
}

.doodle {
  position: absolute;
  pointer-events: none;
}

.doodle-loop {
  left: 5%;
  bottom: 34px;
  width: 170px;
  height: 92px;
  border: 13px solid var(--mint);
  border-right-color: transparent;
  border-radius: 58% 42% 54% 46%;
  transform: rotate(24deg);
  opacity: 0.92;
}

.doodle-star {
  top: 18%;
  right: 8%;
  color: var(--accent-soft);
  font-size: 4rem;
  transform: rotate(14deg);
}

.feature-strip {
  position: relative;
  z-index: 2;
  width: min(1230px, calc(100% - 32px));
  margin: -20px auto 0;
  padding: 18px 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 20, 17, 0.08);
}

.feature-strip::before,
.feature-strip::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
  content: "";
}

.feature-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.feature-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.feature-track {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  animation: featureScroll 24s linear infinite;
}

.feature-strip:hover .feature-track,
.feature-strip:focus-within .feature-track {
  animation-play-state: paused;
}

.feature-track span {
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-track span::before {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mint);
  vertical-align: middle;
  content: "";
}

.launch-promise {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.5fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  width: min(1230px, calc(100% - 32px));
  margin: clamp(54px, 8vw, 92px) auto 0;
  padding: clamp(30px, 6vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(157, 231, 255, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 18%, rgba(157, 231, 255, 0.3), transparent 28%),
    radial-gradient(circle at 8% 96%, rgba(255, 122, 89, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(43, 85, 255, 0.9), rgba(13, 20, 70, 0.94) 66%, rgba(8, 13, 34, 0.98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.launch-promise::before,
.launch-promise::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.launch-promise::before {
  top: 28px;
  right: 32%;
  width: 3px;
  height: 74%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.9;
}

.launch-promise::after {
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 36px solid rgba(157, 231, 255, 0.12);
  border-radius: 999px;
}

.launch-promise .eyebrow {
  color: var(--mint);
}

.launch-promise h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #f7f9ff;
  font-size: clamp(3.4rem, 7vw, 7.1rem);
  line-height: 0.88;
  text-transform: none;
}

.launch-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.launch-card span {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #071021;
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-card strong {
  color: #ffffff;
  font-family:
    Impact, Haettenschweiler, Franklin Gothic Heavy, Arial Black, Arial Rounded MT Bold, system-ui, sans-serif;
  font-size: clamp(4.6rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.launch-card p {
  margin: 0;
  color: #dfe7ff;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 850;
  line-height: 1.55;
}

.launch-card small {
  color: rgba(223, 231, 255, 0.7);
  font-weight: 850;
}

.simple-section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0;
}

.intro-section {
  display: grid;
  gap: 36px;
  text-align: center;
}

.intro-section h2 {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  color: #f7f9ff;
  font-size: clamp(3.4rem, 7vw, 7.1rem);
  line-height: 0.88;
  text-transform: none;
}

.intro-section .eyebrow,
.final-cta .eyebrow {
  color: var(--blue);
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.simple-grid article,
.step-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 20, 17, 0.06);
}

.simple-grid span,
.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.simple-grid span {
  box-shadow: 0 12px 26px rgba(43, 85, 255, 0.26);
}

.simple-grid p,
.step-card p,
.final-cta p,
.wide-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.wide-blue {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
  align-items: center;
  width: min(1230px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 88%, rgba(157, 231, 255, 0.22), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 89, 0.16), transparent 24%),
    var(--blue);
  color: #fff;
}

.wide-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 260px;
  padding-top: 100px;
  transform: rotate(-1.5deg);
  transform-origin: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.step-card:hover {
  z-index: 3;
  border-color: rgba(43, 85, 255, 0.92);
  box-shadow: 0 26px 70px rgba(21, 48, 184, 0.2);
  transform: translateY(-8px) scale(1.045) rotate(-1.5deg);
}

.step-card span {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border: 6px solid var(--accent-soft);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(43, 85, 255, 0.24);
  font-size: 1.35rem;
}

.step-card h3 {
  text-align: center;
}

.step-card:nth-child(2) {
  transform: translateY(24px) rotate(1.5deg);
}

.step-card:nth-child(2):hover {
  transform: translateY(16px) scale(1.045) rotate(1.5deg);
}

.step-card:nth-child(3) {
  transform: rotate(-0.5deg);
}

.step-card:nth-child(3):hover {
  transform: translateY(-8px) scale(1.045) rotate(-0.5deg);
}

.final-cta {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(88px, 12vw, 140px) 0;
}

.final-cta p {
  max-width: 660px;
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(157, 231, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(157, 231, 255, 0.18), transparent 30%),
    radial-gradient(circle at 8% 94%, rgba(255, 122, 89, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.contact-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 13, 34, 0.62);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(223, 231, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(157, 231, 255, 0.14);
  border-radius: 10px;
  color: #f7f9ff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(157, 231, 255, 0.7);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 4px rgba(157, 231, 255, 0.1);
}

.form-wide,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.form-status.is-error {
  color: var(--accent-soft);
}

.form-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.soft-doodle {
  position: absolute;
  z-index: -1;
  width: 130px;
  height: 72px;
  border: 9px solid var(--pink);
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.65;
}

.soft-doodle-left {
  top: 60px;
  left: -42px;
  transform: rotate(-24deg);
}

.soft-doodle-right {
  right: -62px;
  bottom: 78px;
  border-color: var(--accent);
  border-left-color: transparent;
  transform: rotate(18deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1230px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer span:first-child,
.footer-identity span {
  color: var(--ink);
  font-weight: 900;
}

.footer-identity {
  display: grid;
  gap: 6px;
}

.footer-identity small {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-main {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(44px, 7vw, 82px) auto 80px;
}

.pricing-section + .pricing-section {
  margin-top: 58px;
}

.pricing-kicker {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.pricing-card {
  position: relative;
  min-height: 340px;
  padding: 30px 30px 26px;
  border: 1px solid rgba(43, 85, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(43, 85, 255, 0.08);
  transform-origin: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.pricing-card:hover {
  z-index: 3;
  border-color: rgba(43, 85, 255, 0.92);
  box-shadow: 0 26px 70px rgba(43, 85, 255, 0.18);
  transform: scale(1.045);
}

.pricing-card.featured {
  border-color: rgba(43, 85, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 92% 0%, rgba(157, 231, 255, 0.5), transparent 28%);
}

.pricing-card h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family:
    Arial Rounded MT Bold, Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  text-transform: none;
}

.pricing-page .pricing-card h2 {
  color: var(--ink);
  font-family:
    Arial Rounded MT Bold, Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  text-transform: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-bottom: 14px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(157, 231, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  display: flex;
  gap: 7px;
  align-items: baseline;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 900;
}

.price span {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1;
}

.card-subtitle {
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(43, 85, 255, 0.12);
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.pricing-card li::before {
  position: absolute;
  top: 0.25em;
  left: 2px;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
  content: "";
}

.pricing-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card.reveal.is-visible {
  transform: rotate(-1.5deg);
}

.step-card.reveal.is-visible:hover {
  transform: translateY(-8px) scale(1.045) rotate(-1.5deg);
}

.step-card.reveal.is-visible:nth-child(2) {
  transform: translateY(24px) rotate(1.5deg);
}

.step-card.reveal.is-visible:nth-child(2):hover {
  transform: translateY(16px) scale(1.045) rotate(1.5deg);
}

.step-card.reveal.is-visible:nth-child(3) {
  transform: rotate(-0.5deg);
}

.step-card.reveal.is-visible:nth-child(3):hover {
  transform: translateY(-8px) scale(1.045) rotate(-0.5deg);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes drift {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: 12px;
  }
}

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

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

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav,
  .top-link {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    right: 10px;
    left: 10px;
    display: grid;
    justify-items: start;
    gap: 6px;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(17, 20, 17, 0.12);
  }

  .site-nav.is-open a {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    justify-self: start;
    width: auto;
    min-width: 190px;
    min-height: 48px;
    padding: 13px 16px;
    border-radius: 10px;
    text-align: left;
  }

  .site-nav.is-open a::after {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-top: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
    transform: rotate(45deg);
    content: "";
  }

  .site-nav.is-open a:hover {
    background: rgba(43, 85, 255, 0.08);
  }

  .hero,
  .wide-blue,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 520px;
  }

  .simple-grid,
  .step-cards,
  .pricing-grid,
  .launch-promise {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    min-height: auto;
    transform: rotate(0deg);
  }

  .step-card.reveal.is-visible,
  .step-card.reveal.is-visible:nth-child(2),
  .step-card.reveal.is-visible:nth-child(3) {
    transform: rotate(0deg);
  }

  .step-card:hover,
  .step-card:nth-child(2):hover,
  .step-card:nth-child(3):hover,
  .step-card.reveal.is-visible:hover,
  .step-card.reveal.is-visible:nth-child(2):hover,
  .step-card.reveal.is-visible:nth-child(3):hover {
    transform: translateY(-6px) scale(1.025);
  }

  .feature-track {
    animation-duration: 18s;
  }

  .launch-promise::before {
    display: none;
  }

  .launch-card {
    transform: none;
  }

  .contact-panel {
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .site-header,
  .panel-blue,
  .feature-strip,
  .launch-promise,
  .wide-blue,
  .site-footer {
    width: min(100% - 22px, 1230px);
  }

  .site-header {
    top: 10px;
  }

  .hero {
    padding: 28px 20px 58px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .launch-promise {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .launch-promise h2 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .intro-section h2 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .launch-card strong {
    font-size: clamp(4.2rem, 18vw, 5.8rem);
  }

  .pricing-main {
    width: min(100% - 22px, 1120px);
    margin: 34px auto 58px;
  }

  .pricing-section + .pricing-section {
    margin-top: 44px;
  }

  .pricing-kicker {
    margin-bottom: 16px;
    font-size: 0.78rem;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .pricing-card:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .pricing-page .pricing-card h2 {
    margin-bottom: 14px;
    font-size: 1.25rem;
    line-height: 1.1;
    text-transform: none;
  }

  .price span {
    font-size: 2.15rem;
  }

  .pricing-card ul {
    gap: 10px;
    padding-top: 18px;
  }

  .pricing-card li {
    font-size: 0.92rem;
  }

  .pricing-note {
    font-size: 0.78rem;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 350px;
  }

  .main-card {
    bottom: 38px;
    border-width: 8px;
  }

  .mini-note {
    width: 154px;
    padding: 14px;
  }

  .note-one {
    left: 0;
  }

  .note-two {
    right: 0;
  }

  .doodle-star {
    display: none;
  }

  .doodle-loop {
    width: 120px;
    height: 62px;
    border-width: 9px;
  }

  .site-footer {
    display: grid;
  }
}

/* Dark theme and wider-screen polish */
:root {
  --cream: #070a18;
  --ink: #f7f9ff;
  --muted: #aeb8d8;
  --paper: #101735;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(10, 22, 92, 0.42);
}

body {
  background: var(--cream);
}

body::before {
  background:
    radial-gradient(circle at 12% 10%, rgba(43, 85, 255, 0.34), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(255, 122, 89, 0.22), transparent 22%),
    radial-gradient(circle at 50% 92%, rgba(157, 231, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #090d20 0%, #050713 100%);
}

.site-banner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: min(1230px, calc(100% - 32px));
  min-height: 42px;
  margin: 104px auto 0;
  padding: 8px 18px;
  border: 1px solid rgba(157, 231, 255, 0.18);
  border-radius: 999px;
  color: #dfe7ff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  animation: bannerDrop 720ms ease both;
}

.site-banner span,
.site-banner strong {
  font-size: 0.86rem;
}

.site-banner strong {
  color: var(--accent-soft);
}

.site-header {
  top: 12px;
  background:
    linear-gradient(135deg, rgba(43, 85, 255, 0.96), rgba(23, 55, 215, 0.92)),
    var(--blue);
  box-shadow:
    0 20px 60px rgba(4, 8, 28, 0.36),
    0 14px 24px rgba(0, 0, 0, 0.2);
}

.panel-blue,
.wide-blue {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 82% 20%, rgba(157, 231, 255, 0.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(255, 122, 89, 0.17), transparent 24%),
    linear-gradient(145deg, #2854ff, #111d8f 72%, #0a0f34);
  box-shadow: var(--shadow);
}

.hero::after {
  background:
    radial-gradient(18px 18px at 20px 18px, var(--cream) 98%, transparent),
    radial-gradient(24px 20px at 64px 26px, var(--cream) 98%, transparent),
    radial-gradient(30px 22px at 118px 18px, var(--cream) 98%, transparent);
  background-size: 150px 52px;
}

.feature-strip,
.simple-grid article,
.step-card,
.pricing-card,
.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.feature-strip::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.feature-strip::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.08), transparent);
}

.feature-track span,
.simple-grid h3,
.step-card h3,
.pricing-card h2,
.pricing-page .pricing-card h2,
.site-footer span:first-child,
.footer-identity span {
  color: #f7f9ff;
}

.intro-section .eyebrow,
.final-cta .eyebrow,
.pricing-kicker {
  color: var(--mint);
}

.simple-grid p,
.step-card p,
.final-cta p,
.pricing-card li,
.card-subtitle,
.price,
.pricing-note,
.site-footer {
  color: var(--muted);
}

.simple-grid article,
.pricing-card,
.step-card,
.mini-note,
.tilt-card {
  will-change: transform;
}

.simple-grid article {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.simple-grid article:hover {
  z-index: 2;
  border-color: rgba(157, 231, 255, 0.62);
  box-shadow: 0 30px 90px rgba(43, 85, 255, 0.2);
  transform: translateY(-8px) scale(1.025);
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 92% 0%, rgba(157, 231, 255, 0.28), transparent 32%);
}

.price span {
  color: var(--mint);
}

.build-pricing-grid {
  align-items: stretch;
}

.build-card {
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: 28px;
  overflow: hidden;
  border-color: rgba(157, 231, 255, 0.16);
  background:
    radial-gradient(circle at 96% 4%, rgba(157, 231, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.065));
  gap: 0;
}

.build-card .feature-list {
  gap: 9px;
  padding-top: 20px;
  border-top-color: rgba(157, 231, 255, 0.14);
}

.build-card .feature-list li {
  font-size: 0.88rem;
  min-height: 24px;
  padding-left: 30px;
}

.build-card:hover {
  border-color: rgba(157, 231, 255, 0.62);
  box-shadow: 0 34px 100px rgba(43, 85, 255, 0.22);
}

.featured-build {
  border-color: rgba(43, 85, 255, 0.92);
  background:
    radial-gradient(circle at 96% 4%, rgba(157, 231, 255, 0.22), transparent 30%),
    radial-gradient(circle at 8% 0%, rgba(43, 85, 255, 0.24), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(157, 231, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.125), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 90px rgba(43, 85, 255, 0.2);
}

.plan-topline {
  display: grid;
  gap: 12px;
  justify-items: center;
  align-content: start;
  min-height: 32px;
  margin-bottom: 22px;
  text-align: center;
}

.plan-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-chip {
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: #071021;
  background: var(--mint);
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
  order: -1;
}

.hot-badge {
  color: #fff;
  background: var(--blue);
}

.build-price {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: baseline;
  column-gap: 8px;
  width: 100%;
  margin: 0 auto 10px;
  padding: 0;
  text-align: center;
}

.build-price .old-price {
  grid-column: 1 / -1;
  position: static;
  justify-self: center;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: line-through;
}

.build-price .currency {
  margin-left: 0;
  color: #fff;
  font-size: clamp(4rem, 6.1vw, 5.35rem);
  font-weight: 900;
  line-height: 0.9;
}

.build-price strong {
  color: #fff;
  font-size: clamp(4rem, 6.1vw, 5.35rem);
  line-height: 0.9;
}

.featured-build .build-price strong {
  color: var(--mint);
  text-shadow: 0 0 28px rgba(157, 231, 255, 0.32);
}

.featured-build .build-price .currency {
  color: var(--mint);
  text-shadow: 0 0 28px rgba(157, 231, 255, 0.32);
}

.deal-line {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.deal-line span,
.deal-line strong {
  color: var(--mint);
}

.build-subtitle {
  min-height: 104px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.feature-list {
  flex: 1;
}

.build-card .feature-list {
  margin-top: auto;
}

.care-pricing-grid {
  align-items: start;
  gap: 22px;
}

.care-pricing-grid .pricing-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 30px;
  overflow: hidden;
  border-color: rgba(157, 231, 255, 0.16);
  background:
    radial-gradient(circle at 92% 0%, rgba(157, 231, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.065));
  text-align: center;
}

.care-pricing-grid .pricing-card.featured {
  border-color: rgba(43, 85, 255, 0.92);
  background:
    radial-gradient(circle at 82% 0%, rgba(157, 231, 255, 0.22), transparent 34%),
    radial-gradient(circle at 10% 0%, rgba(43, 85, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.075));
  box-shadow: 0 24px 76px rgba(43, 85, 255, 0.16);
}

.care-pricing-grid .badge {
  align-self: center;
  min-height: 24px;
  margin: 0 0 14px;
  padding: 0 13px;
  font-size: 0.68rem;
}

.care-badge {
  color: #071021;
  background: var(--mint);
}

.care-pricing-grid .pricing-card.featured .badge {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(43, 85, 255, 0.32);
}

.care-pricing-grid .pricing-card h2 {
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-pricing-grid .price {
  gap: 8px;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 12px;
  color: rgba(223, 231, 255, 0.78);
}

.care-pricing-grid .price span {
  font-size: clamp(3.4rem, 5.15vw, 4.55rem);
  line-height: 0.9;
}

.care-pricing-grid .card-subtitle {
  width: 100%;
  min-height: auto;
  margin: 0 0 24px;
  padding: 12px 16px;
  border: 1px solid rgba(157, 231, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(223, 231, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.care-pricing-grid .pricing-card ul {
  gap: 11px;
  margin-top: 0;
  padding-top: 22px;
  border-top-color: rgba(157, 231, 255, 0.14);
  text-align: left;
}

.care-pricing-grid .pricing-card li {
  font-size: 0.9rem;
}

.feature-list li::before {
  top: 0.25em;
  left: 2px;
  display: block;
  width: 11px;
  height: 7px;
  border: 0;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(-45deg);
  content: "";
}

.featured-build .feature-list li::before {
  border-color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.feature-list .not-included {
  color: rgba(255, 255, 255, 0.18);
}

.feature-list .not-included::before {
  top: 0.58em;
  left: 2px;
  width: 13px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: none;
  content: "";
}

.feature-list .not-included::after {
  content: none;
}

.featured-build .feature-list .not-included::before {
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 22px;
  width: 100%;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.plan-button:hover {
  transform: translateY(-2px);
}

.muted-plan-button {
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.primary-plan-button {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(43, 85, 255, 0.3);
}

.hot-badge {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(43, 85, 255, 0.32);
}

.button-outline {
  color: #f7f9ff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.button-white {
  color: var(--blue-dark);
}

.mini-note {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 13, 34, 0.88);
  color: #f7f9ff;
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.mini-note strong {
  color: #f7f9ff;
}

.mini-note span {
  color: var(--muted);
}

.mini-note:hover {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.note-one:hover {
  transform: translateY(-8px) rotate(-8deg) scale(1.04);
}

.note-two:hover {
  transform: translateY(-8px) rotate(6deg) scale(1.04);
}

.note-one {
  top: 54px;
  left: 24px;
}

.note-two {
  right: 28px;
  bottom: 34px;
  width: 210px;
}

.main-card {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.main-card:hover {
  animation: none;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.42);
  transform: translateY(-18px) rotate(2deg) scale(1.015);
}

@keyframes bannerDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1440px) {
  .site-banner,
  .site-header,
  .panel-blue,
  .feature-strip,
  .wide-blue,
  .site-footer {
    width: min(1440px, calc(100% - 64px));
  }

  .simple-section,
  .launch-promise,
  .pricing-main {
    width: min(1300px, calc(100% - 64px));
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    min-height: 760px;
  }

  .main-card {
    width: min(100%, 760px);
  }

  h1 {
    font-size: clamp(5rem, 6.4vw, 7.9rem);
  }
}

@media (max-width: 960px) {
  .site-banner {
    width: min(100% - 22px, 1230px);
    margin-top: 104px;
  }

  .site-nav.is-open {
    background: rgba(13, 19, 44, 0.96);
    color: #f7f9ff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open .active-link {
    background: rgba(255, 255, 255, 0.1);
  }

  .build-card {
    min-height: auto;
  }

  .build-subtitle {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .site-banner {
    justify-content: space-between;
    border-radius: 14px;
  }

  .site-header {
    top: 10px;
  }

  .build-card {
    padding: 28px 24px;
  }

  .build-price .currency,
  .build-price strong {
    font-size: 4.2rem;
  }

  .build-subtitle {
    min-height: auto;
    padding: 16px;
  }
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  width: min(1230px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(82px, 12vw, 148px) 0;
}

.faq-copy {
  max-width: 520px;
}

.faq-copy .eyebrow {
  color: var(--accent);
}

.faq-copy p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px 44px 18px 0;
  color: #f7f9ff;
  cursor: pointer;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 2px;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  content: "+";
}

.faq-item[open] summary::after {
  color: var(--mint);
  content: "-";
}

.faq-item p {
  max-width: 760px;
  margin: -6px 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .faq-section {
    grid-template-columns: 1fr;
    width: min(100% - 22px, 1230px);
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-item summary {
    min-height: 72px;
    padding-right: 38px;
  }

  .mini-note {
    background: rgba(8, 13, 34, 0.92);
  }

  .note-one {
    top: 8px;
    left: 0;
  }

  .note-two {
    right: 0;
    bottom: 8px;
  }
}

.demo-site {
  min-height: 100vh;
  color: #f7f9ff;
  background:
    radial-gradient(circle at 80% 8%, rgba(157, 231, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #090d20, #050713);
}

.demo-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.demo-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #071021;
  background: var(--mint);
  font-weight: 900;
}

.demo-site-header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-site-main {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 82px;
}

.demo-hero {
  min-height: 620px;
  padding: clamp(34px, 7vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(43, 85, 255, 0.95), rgba(13, 20, 70, 0.94));
  box-shadow: var(--shadow);
}

.demo-cafe-site .demo-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 122, 89, 0.9), rgba(43, 85, 255, 0.76));
}

.demo-studio-site .demo-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(157, 231, 255, 0.65), rgba(43, 85, 255, 0.92));
}

.demo-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 26px;
  padding: 0 14px;
  border-radius: 999px;
  color: #071021;
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-hero h1 {
  max-width: 860px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

.demo-hero p:not(.demo-pill) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.6;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.demo-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  color: #071021;
  background: var(--accent);
  font-weight: 900;
}

.demo-actions a:last-child {
  color: #f7f9ff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

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

.demo-site-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.demo-site-grid h2 {
  color: #f7f9ff;
  font-family:
    Arial Rounded MT Bold, Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.3rem;
  text-transform: none;
}

.demo-site-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .demo-site-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .demo-site-header,
  .demo-site-main {
    width: min(100% - 22px, 1180px);
  }

  .demo-hero {
    min-height: auto;
    padding: 30px 22px;
  }

  .demo-actions,
  .demo-actions a {
    width: 100%;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: inherit;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--mint);
}

.demos-section {
  width: min(1230px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.demos-heading {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-bottom: 34px;
}

.demos-heading .eyebrow {
  color: var(--mint);
}

.demos-heading p:last-child {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.6;
}

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

.demo-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.demo-card:hover {
  z-index: 2;
  border-color: rgba(157, 231, 255, 0.62);
  box-shadow: 0 34px 100px rgba(43, 85, 255, 0.22);
  transform: translateY(-10px) scale(1.025);
}

.featured-demo {
  border-color: rgba(43, 85, 255, 0.78);
}

.demo-preview {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: end;
  gap: 8px;
  padding: 22px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  isolation: isolate;
}

.demo-preview::before,
.demo-preview::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
}

.demo-preview::before {
  top: 24px;
  right: 22px;
  width: 110px;
  height: 76px;
  background: rgba(255, 255, 255, 0.2);
}

.demo-preview::after {
  right: -38px;
  bottom: -42px;
  width: 170px;
  height: 170px;
  background: rgba(255, 255, 255, 0.14);
}

.demo-preview span {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 54px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.demo-preview strong {
  font-size: 1.65rem;
  line-height: 1;
}

.demo-preview small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.tradie-preview {
  background:
    linear-gradient(135deg, rgba(43, 85, 255, 0.9), rgba(15, 24, 92, 0.92)),
    var(--blue);
}

.cafe-preview {
  background:
    linear-gradient(135deg, rgba(255, 122, 89, 0.92), rgba(43, 85, 255, 0.68)),
    var(--accent);
}

.studio-preview {
  background:
    linear-gradient(135deg, rgba(157, 231, 255, 0.78), rgba(43, 85, 255, 0.9)),
    var(--mint);
}

.demo-card h3 {
  color: #f7f9ff;
}

.demo-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.policy-main {
  width: min(920px, calc(100% - 32px));
  margin: clamp(44px, 7vw, 82px) auto 84px;
}

.policy-card {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.policy-card h1 {
  margin-bottom: 12px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.policy-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: #f7f9ff;
  font-family:
    Arial Rounded MT Bold, Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: none;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.65;
}

.policy-card a {
  color: var(--mint);
  font-weight: 900;
}

.policy-updated {
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .demos-section {
    width: min(100% - 22px, 1230px);
    padding: 68px 0;
  }

  .demo-preview {
    min-height: 190px;
  }

  .policy-main {
    width: min(100% - 22px, 920px);
    margin: 34px auto 58px;
  }

  .policy-card h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }
}

/* Demo thumbnail previews */
.demo-preview {
  align-content: initial;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: inherit;
}

.demo-screenshot {
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #060a16;
}

.demo-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.demo-card:hover .demo-screenshot img {
  transform: scale(1.035);
}

.demo-preview::before,
.demo-preview::after {
  content: none;
}

.demo-preview span,
.demo-preview strong,
.demo-preview small {
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.tradie-preview {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 16px;
  color: #f7f3df;
  background:
    linear-gradient(135deg, rgba(17, 19, 22, 0.94), rgba(48, 53, 59, 0.88)),
    #17191d;
}

.mini-browser-bar {
  display: flex;
  gap: 5px;
}

.mini-browser-bar span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffcc2f;
}

.mini-browser-bar span:nth-child(2) {
  background: #f37555;
}

.mini-browser-bar span:nth-child(3) {
  background: #88d7f4;
}

.mini-tradie-hero {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 204, 47, 0.35);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 204, 47, 0.18) 0 18%, transparent 18%),
    rgba(0, 0, 0, 0.26);
}

.mini-tradie-hero strong {
  color: #ffcc2f;
  font-size: 1.34rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-tradie-hero span {
  color: rgba(247, 243, 223, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-tradie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-tradie-grid span {
  display: block;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 204, 47, 0.16);
}

.cafe-preview {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 16px;
  color: #273421;
  background:
    linear-gradient(135deg, #fff4de, #f6d5ba 58%, #7f9a63);
}

.mini-cafe-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-cafe-nav strong {
  color: #2f3a24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.mini-cafe-nav span {
  display: block;
  width: 58px;
  height: 20px;
  border-radius: 999px;
  background: #c85d3d;
}

.mini-cafe-plate {
  align-self: center;
  justify-self: center;
  width: min(146px, 52%);
  aspect-ratio: 1;
  border: 13px solid #fff9ee;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 40%, #f7e4a4 0 19%, transparent 20%),
    radial-gradient(circle at 62% 57%, #7f9a63 0 21%, transparent 22%),
    #d8875b;
  box-shadow: 0 18px 42px rgba(97, 68, 35, 0.22);
}

.mini-cafe-menu {
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 249, 238, 0.78);
}

.mini-cafe-menu span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(39, 52, 33, 0.32);
}

.mini-cafe-menu span:nth-child(2) {
  width: 72%;
}

.mini-cafe-menu span:nth-child(3) {
  width: 84%;
}

.studio-preview {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  grid-template-rows: 1fr auto;
  gap: 14px;
  padding: 16px;
  color: #342a31;
  background:
    linear-gradient(135deg, #fff8f7, #ead8df 56%, #a8c9bf);
}

.mini-studio-card {
  display: grid;
  align-content: end;
  min-height: 134px;
  padding: 14px;
  border-radius: 16px 16px 46px 16px;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(70, 48, 60, 0.16);
}

.mini-studio-card strong {
  color: #342a31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.mini-studio-card span {
  color: #8c6f79;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-studio-booking {
  align-self: end;
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(52, 42, 49, 0.88);
}

.mini-studio-booking span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.mini-studio-booking span:last-child {
  width: 68%;
  background: #f2b8c8;
}

.mini-studio-swatch {
  grid-column: 1 / -1;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2b8c8, #ffffff, #a8c9bf);
}

/* Standalone demo pages */
.demo-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.demo-page a {
  text-decoration: none;
}

.demo-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 950;
}

.trades-demo {
  color: #f8f3dc;
  background:
    linear-gradient(90deg, rgba(255, 205, 49, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #111315, #050607);
  background-size: 58px 58px, auto;
}

.demo-trades-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1200px, calc(100% - 32px));
  margin: 22px auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 205, 49, 0.28);
  border-radius: 12px;
  background: rgba(20, 22, 24, 0.86);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.demo-trades-header strong {
  color: #ffcc2f;
  font-size: 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-trades-header nav {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.demo-trades-header a {
  color: #f8f3dc;
  font-weight: 900;
}

.demo-trades-header .demo-return {
  color: #111315;
  background: #ffcc2f;
}

.demo-trades-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 5vw, 70px);
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 94px);
  border: 1px solid rgba(255, 205, 49, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255, 205, 49, 0.16) 0 22%, transparent 22%),
    linear-gradient(135deg, #1d2024, #0d0f11);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
}

.trades-kicker {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #111315;
  background: #ffcc2f;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trades-hero-copy h1 {
  max-width: 740px;
  color: #f8f3dc;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
}

.trades-hero-copy > p:last-of-type {
  max-width: 620px;
  color: rgba(248, 243, 220, 0.78);
  font-size: 1.12rem;
  line-height: 1.65;
}

.trades-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trades-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  color: #111315;
  background: #ffcc2f;
  font-weight: 950;
}

.trades-actions a:last-child {
  color: #ffcc2f;
  border: 1px solid rgba(255, 205, 49, 0.38);
  background: transparent;
}

.trades-job-card {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 205, 49, 0.32);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  transform: rotate(2deg);
}

.trades-job-card span,
.trades-job-card dt {
  color: rgba(248, 243, 220, 0.62);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trades-job-card strong {
  display: block;
  margin: 10px 0;
  color: #ffcc2f;
  font-size: 2.1rem;
}

.trades-job-card p {
  color: rgba(248, 243, 220, 0.76);
  line-height: 1.5;
}

.trades-job-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 0;
}

.trades-job-card div {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 205, 49, 0.11);
}

.trades-job-card dd {
  margin: 4px 0 0;
  color: #f8f3dc;
  font-weight: 950;
}

.trades-service-grid,
.trades-proof-band {
  width: min(1200px, calc(100% - 32px));
  margin: 18px auto 0;
}

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

.trades-service-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 205, 49, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.trades-service-grid span {
  color: #ffcc2f;
  font-weight: 950;
}

.trades-service-grid strong {
  display: block;
  margin: 12px 0 8px;
  color: #f8f3dc;
  font-size: 1.2rem;
}

.trades-service-grid p,
.trades-proof-band li {
  color: rgba(248, 243, 220, 0.72);
  line-height: 1.55;
}

.trades-proof-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 64px;
  padding: 28px;
  border-radius: 16px;
  color: #111315;
  background: #ffcc2f;
}

.trades-proof-band p {
  margin: 0 0 8px;
  font-weight: 950;
  text-transform: uppercase;
}

.trades-proof-band h2 {
  max-width: 680px;
  color: #111315;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.trades-proof-band ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.trades-proof-band li {
  color: #111315;
  font-weight: 900;
}

.cafe-demo {
  color: #273421;
  background:
    linear-gradient(90deg, rgba(127, 154, 99, 0.12) 1px, transparent 1px),
    #fff4de;
  background-size: 88px 88px, auto;
}

.demo-cafe-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 20px auto;
  padding: 14px 16px;
  border: 1px solid rgba(47, 58, 36, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.78);
  box-shadow: 0 24px 70px rgba(97, 68, 35, 0.12);
}

.demo-cafe-header strong {
  color: #2f3a24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.demo-cafe-header nav {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.demo-cafe-header a {
  color: #273421;
  font-weight: 900;
}

.demo-cafe-header .demo-return {
  justify-self: end;
  color: #fff9ee;
  background: #c85d3d;
}

.demo-cafe-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.74fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 8vw, 86px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(200, 93, 61, 0.22), transparent 28%),
    #fff9ee;
  box-shadow: 0 34px 100px rgba(97, 68, 35, 0.14);
}

.script-label {
  color: #c85d3d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-style: italic;
}

.cafe-copy h1 {
  max-width: 620px;
  color: #2f3a24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.92;
  text-transform: none;
}

.cafe-copy p:not(.script-label) {
  max-width: 560px;
  color: rgba(39, 52, 33, 0.72);
  font-size: 1.1rem;
  line-height: 1.7;
}

.cafe-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff9ee;
  background: #7f9a63;
  font-weight: 950;
}

.cafe-photo-stack {
  position: relative;
  min-height: 420px;
}

.cafe-photo {
  position: absolute;
  display: block;
  border: 12px solid #fff9ee;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(97, 68, 35, 0.18);
}

.cafe-photo-one {
  inset: 10% 8% auto 8%;
  height: 210px;
  background:
    radial-gradient(circle at 42% 42%, #f7e4a4 0 18%, transparent 19%),
    radial-gradient(circle at 60% 56%, #7f9a63 0 22%, transparent 23%),
    #d8875b;
}

.cafe-photo-two {
  right: 0;
  bottom: 34px;
  width: 48%;
  height: 158px;
  background: linear-gradient(135deg, #553d2e, #c85d3d);
  transform: rotate(7deg);
}

.cafe-photo-three {
  left: 0;
  bottom: 4px;
  width: 42%;
  height: 132px;
  background: linear-gradient(135deg, #7f9a63, #e8c38a);
  transform: rotate(-8deg);
}

.cafe-menu-board {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
}

.cafe-menu-board > div,
.cafe-menu-board article,
.cafe-visit-strip {
  border: 1px solid rgba(47, 58, 36, 0.12);
  border-radius: 22px;
  background: rgba(255, 249, 238, 0.76);
  box-shadow: 0 22px 60px rgba(97, 68, 35, 0.1);
}

.cafe-menu-board > div,
.cafe-menu-board article {
  padding: 24px;
}

.cafe-menu-board p {
  color: rgba(39, 52, 33, 0.68);
  line-height: 1.55;
}

.cafe-menu-board > div p {
  margin-top: 0;
  color: #c85d3d;
  font-weight: 950;
  text-transform: uppercase;
}

.cafe-menu-board h2 {
  color: #2f3a24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
  text-transform: none;
}

.cafe-menu-board span {
  color: #c85d3d;
  font-weight: 950;
}

.cafe-menu-board strong {
  display: block;
  margin: 10px 0 8px;
  color: #2f3a24;
  font-size: 1.18rem;
}

.cafe-visit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 62px;
  padding: 20px;
  color: #fff9ee;
  background: #2f3a24;
}

.cafe-visit-strip * {
  color: inherit;
}

.studio-demo {
  color: #342a31;
  background:
    linear-gradient(180deg, #fff8f7, #ead8df 54%, #f7fbf8);
}

.demo-studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto;
  padding: 12px 14px 12px 24px;
  border: 1px solid rgba(52, 42, 49, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(70, 48, 60, 0.11);
}

.demo-studio-header strong {
  color: #342a31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.demo-studio-header nav {
  display: flex;
  gap: 18px;
}

.demo-studio-header a {
  color: #342a31;
  font-weight: 900;
}

.demo-studio-header .demo-return {
  color: #ffffff;
  background: #342a31;
}

.demo-studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 8vw, 86px);
  border: 1px solid rgba(52, 42, 49, 0.1);
  border-radius: 44px 44px 120px 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    #f2dfe6;
  box-shadow: 0 34px 100px rgba(70, 48, 60, 0.14);
}

.studio-panel p {
  color: #8c6f79;
  font-weight: 950;
  text-transform: uppercase;
}

.studio-panel h1 {
  max-width: 700px;
  color: #342a31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.96;
  text-transform: none;
}

.studio-panel span {
  display: block;
  max-width: 560px;
  color: rgba(52, 42, 49, 0.7);
  font-size: 1.1rem;
  line-height: 1.65;
}

.studio-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #342a31;
  font-weight: 950;
}

.studio-booking-card {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(52, 42, 49, 0.12);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(70, 48, 60, 0.14);
  transform: translateY(18px) rotate(1.5deg);
}

.studio-booking-card span {
  color: #8c6f79;
  font-weight: 950;
  text-transform: uppercase;
}

.studio-booking-card strong {
  color: #342a31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.studio-booking-card p {
  color: rgba(52, 42, 49, 0.68);
  line-height: 1.55;
}

.studio-booking-card a {
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  align-items: center;
  border-radius: 999px;
  color: #342a31;
  background: #f2b8c8;
  font-weight: 950;
}

.studio-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
}

.studio-services article,
.studio-review-panel {
  padding: 24px;
  border: 1px solid rgba(52, 42, 49, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(70, 48, 60, 0.1);
}

.studio-services strong {
  color: #8c6f79;
}

.studio-services span {
  display: block;
  margin: 10px 0 8px;
  color: #342a31;
  font-size: 1.2rem;
  font-weight: 950;
}

.studio-services p {
  color: rgba(52, 42, 49, 0.66);
  line-height: 1.55;
}

.studio-review-panel {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 66px;
  text-align: center;
}

.studio-review-panel p {
  max-width: 720px;
  margin: 0 auto 12px;
  color: #342a31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.08;
}

.studio-review-panel span {
  color: #8c6f79;
  font-weight: 950;
}

@media (max-width: 920px) {
  .demo-trades-header,
  .demo-cafe-header,
  .demo-studio-header {
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 22px;
    text-align: center;
  }

  .demo-studio-header {
    display: grid;
  }

  .demo-cafe-header .demo-return {
    justify-self: center;
  }

  .demo-trades-hero,
  .demo-cafe-hero,
  .demo-studio-hero,
  .trades-proof-band {
    grid-template-columns: 1fr;
  }

  .trades-service-grid,
  .cafe-menu-board,
  .studio-services {
    grid-template-columns: 1fr;
  }

  .cafe-photo-stack {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .demo-trades-header nav,
  .demo-cafe-header nav,
  .demo-studio-header nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .demo-trades-hero,
  .demo-cafe-hero,
  .demo-studio-hero {
    width: min(100% - 22px, 1200px);
    padding: 28px 22px;
    border-radius: 18px;
  }

  .trades-actions,
  .trades-actions a,
  .cafe-copy a,
  .studio-panel a,
  .studio-booking-card a {
    width: 100%;
  }

  .trades-job-card,
  .studio-booking-card {
    transform: none;
  }

  .trades-proof-band {
    padding: 24px;
  }

  .cafe-photo-stack {
    min-height: 260px;
  }

  .cafe-photo-one {
    inset: 4% 4% auto 4%;
  }

  .studio-preview {
    grid-template-columns: 1fr 0.82fr;
  }
}

/* Demo viewer pages */
.demo-viewer-page {
  min-height: 100vh;
  color: #f8f8f8;
  background:
    radial-gradient(circle at 50% 24%, rgba(43, 85, 255, 0.16), transparent 30%),
    #020203;
  overflow-x: hidden;
}

.demo-viewer-page.bakery-viewer {
  background:
    radial-gradient(circle at 54% 25%, rgba(155, 74, 19, 0.22), transparent 34%),
    #020203;
}

.demo-viewer-page.clinic-viewer {
  background:
    radial-gradient(circle at 54% 25%, rgba(224, 255, 139, 0.18), transparent 34%),
    #020203;
}

.viewer-back,
.sample-back {
  position: fixed;
  z-index: 80;
  top: 22px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f8f8f8;
  background: rgba(0, 0, 0, 0.34);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.viewer-back,
.sample-back {
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  color: #ffffff;
  font-size: 0;
}

.viewer-back::before,
.sample-back::before {
  width: 12px;
  height: 12px;
  margin: 0;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: translateX(2px) rotate(45deg);
}

.viewer-back:hover,
.viewer-back:focus-visible,
.sample-back:hover,
.sample-back:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-1px);
}

.demo-viewer {
  display: grid;
  grid-auto-rows: max-content;
  align-content: start;
  justify-items: center;
  width: min(1420px, calc(100% - 32px));
  height: 100svh;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(92px, 9vw, 142px) 0 12px;
}

.viewer-kicker {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(157, 231, 255, 0.38);
}

.viewer-kicker::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(157, 231, 255, 0.55);
  content: "";
  vertical-align: middle;
  animation: liveDotPulse 1.6s ease-out infinite;
}

@keyframes liveDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 231, 255, 0.58);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(157, 231, 255, 0);
    transform: scale(1.18);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(157, 231, 255, 0);
    transform: scale(1);
  }
}

.demo-viewer h1 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  text-align: center;
  text-transform: none;
}

.viewer-intro {
  max-width: 690px;
  margin: 18px 0 44px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  text-align: center;
}

.device-stage {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(1040px, 100%);
  min-height: 520px;
}

.desktop-device,
.phone-device {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0b0b0d;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.55);
}

.desktop-device {
  position: relative;
  width: min(850px, 72vw);
  height: 520px;
  border-radius: 14px;
}

.phone-device {
  --phone-preview-scale: 0.758;
  position: absolute;
  right: clamp(8px, 8vw, 64px);
  bottom: -58px;
  width: 312px;
  aspect-ratio: 418 / 850;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-screen {
  position: absolute;
  z-index: 1;
  inset: 7px 7px 8px;
  overflow: hidden;
  border-radius: 43px;
  background: #ffffff;
}

.phone-device iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 393px;
  height: 852px;
  max-width: none;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  transform: scale(var(--phone-preview-scale));
  transform-origin: top left;
}

.phone-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.35));
}

.desktop-device iframe {
  width: 1440px;
  max-width: none;
  border: 0;
  background: #ffffff;
  transform-origin: top left;
}

.desktop-device iframe {
  height: 900px;
  transform: scale(0.59);
}

.full-size-link {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: max-content;
  height: 46px;
  min-height: 46px;
  margin-top: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.full-size-link::after {
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateX(-1px) rotate(45deg);
}

.is-framed-demo .sample-back {
  display: none;
}

.is-framed-demo {
  scrollbar-width: none;
}

.is-framed-demo::-webkit-scrollbar {
  display: none;
}

@media (max-width: 500px) {
  .is-framed-demo body.sample-site {
    padding-top: 46px;
  }
}

/* New demo thumbnails */
.freight-preview,
.bakery-preview,
.clinic-preview {
  min-height: 244px;
}

.freight-preview {
  display: grid;
  gap: 14px;
  padding: 16px;
  color: #ecffef;
  background: linear-gradient(135deg, #006a4b, #00412f 58%, #ff8150);
}

.mini-freight-nav,
.mini-clinic-nav,
.mini-bakery-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-freight-nav strong {
  color: #eef72d;
  font-size: 0.98rem;
}

.mini-freight-nav span,
.mini-clinic-nav span,
.mini-bakery-nav span {
  display: block;
  width: 58px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.mini-freight-hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 10px;
  align-items: center;
}

.mini-freight-hero strong {
  color: #eef72d;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.mini-truck {
  position: relative;
  min-height: 100px;
  border-radius: 28px;
  background: linear-gradient(135deg, #9de7ff, #ffffff);
}

.mini-truck span {
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 72px;
  height: 36px;
  border-radius: 8px 6px 4px 4px;
  background: #eef7ff;
  box-shadow: -34px 8px 0 -9px #143b45;
}

.mini-freight-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-freight-ticker span {
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 129, 80, 0.85);
}

.bakery-preview {
  display: grid;
  gap: 14px;
  padding: 16px;
  color: #fff6e8;
  background: #94420f;
}

.mini-bakery-nav strong {
  color: #ffd36d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.mini-bakery-nav span {
  background: #f8b62d;
}

.mini-bakery-hero {
  display: grid;
  align-content: end;
  min-height: 124px;
  padding: 12px;
  border-radius: 70px 70px 12px 12px;
  background:
    radial-gradient(circle at 52% 34%, #f7b45b 0 16%, transparent 17%),
    radial-gradient(circle at 38% 46%, #f1d2a1 0 12%, transparent 13%),
    #3d2418;
}

.mini-bakery-hero strong {
  color: #fff6e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 0.96;
}

.mini-bakery-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-bakery-products span {
  height: 48px;
  border-radius: 24px 24px 8px 8px;
  background: #fff6e8;
}

.clinic-preview {
  display: grid;
  grid-template-rows: 24px auto 1fr;
  gap: 12px;
  padding: 16px;
  color: #003763;
  background:
    radial-gradient(circle at 95% 4%, #e5ff8a 0 24%, transparent 25%),
    #fffaf1;
}

.mini-clinic-top {
  border-radius: 999px;
  background: #ddf69b;
}

.mini-clinic-nav strong {
  color: #003763;
  font-size: 1rem;
}

.mini-clinic-nav span {
  background: #003763;
}

.mini-clinic-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  align-items: end;
}

.mini-clinic-hero strong {
  color: #003763;
  font-size: 1.45rem;
  line-height: 0.96;
}

.mini-clinic-hero span {
  min-height: 112px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 44% 44%, #f8c3be 0 16%, transparent 17%),
    linear-gradient(135deg, #dce8ef, #ffffff);
}

/* Full-size sample websites */
.sample-site {
  min-height: 100vh;
  overflow-x: hidden;
}

.sample-site * {
  box-sizing: border-box;
}

.clinic-sample {
  color: #003763;
  background:
    radial-gradient(circle at 48% -10%, #e9ffa2 0 24%, transparent 25%),
    radial-gradient(circle at 102% 26%, #e9ffa2 0 28%, transparent 29%),
    #f7fbef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.clinic-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 36px auto;
  background: #fffaf1;
  box-shadow: 0 38px 120px rgba(20, 60, 90, 0.12);
}

.clinic-topbar {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 50px;
  padding: 0 70px;
  background: #ddf69b;
  font-size: 0.78rem;
}

.clinic-topbar strong {
  color: #003763;
}

.clinic-socials {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.clinic-socials span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  background: #fffaf1;
  font-size: 0.68rem;
  font-weight: 900;
}

.clinic-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 34px 70px;
}

.clinic-logo {
  margin-right: auto;
  font-size: 1.25rem;
  font-weight: 950;
}

.clinic-nav nav {
  display: flex;
  gap: 28px;
}

.clinic-nav a {
  color: #003763;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.clinic-nav > a:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fffaf1;
  background: #003763;
}

.clinic-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.58fr;
  grid-template-rows: auto auto;
  gap: 28px 36px;
  padding: 46px 70px 90px;
}

.clinic-headline h1 {
  margin: 0 0 190px;
  color: #003763;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: none;
}

.clinic-headline p {
  max-width: 330px;
  color: #003763;
  font-weight: 800;
  line-height: 1.35;
}

.clinic-avatars {
  display: flex;
  margin-top: 24px;
}

.clinic-avatars span {
  width: 38px;
  height: 38px;
  margin-right: -10px;
  border: 3px solid #fffaf1;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9e4ee, #f6b9b9);
}

.clinic-photo {
  min-height: 315px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 44% 38%, #f6b9b9 0 13%, transparent 14%),
    radial-gradient(circle at 55% 38%, #fff2e9 0 18%, transparent 19%),
    linear-gradient(135deg, #dce8ef, #ffffff 48%, #88d7f4);
  box-shadow: inset 0 -90px 110px rgba(0, 55, 99, 0.12);
}

.clinic-stat-card {
  align-self: start;
  padding: 24px;
  border-radius: 18px;
  background: #e1ebf1;
}

.clinic-stat-card small {
  float: right;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fffaf1;
  font-size: 0.72rem;
  font-weight: 950;
}

.clinic-stat-card p {
  margin: 58px 0 24px;
  color: #003763;
  font-weight: 900;
  line-height: 1.25;
}

.clinic-stat-card strong {
  display: inline-block;
  margin-right: 10px;
  font-size: 2.15rem;
}

.clinic-stat-card span {
  color: #426482;
  font-size: 0.8rem;
  font-weight: 800;
}

.clinic-video-card {
  grid-column: 3;
  width: 184px;
  height: 220px;
  justify-self: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 32%, #263d4d 0 13%, transparent 14%),
    linear-gradient(180deg, #8fb7c7, #f6d6c7);
  display: grid;
  place-items: center;
}

.clinic-video-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: #003763;
  background: #fffaf1;
  font-size: 0.78rem;
  font-weight: 950;
}

.clinic-care {
  grid-column: 2;
  align-self: center;
}

.clinic-care a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 28px;
  border: 1px solid rgba(0, 55, 99, 0.18);
  border-radius: 999px;
  color: #003763;
  font-weight: 900;
  text-decoration: none;
}

.clinic-care h2 {
  max-width: 470px;
  margin-top: 26px;
  color: #003763;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  text-transform: none;
}

.clinic-about,
.clinic-reviews {
  padding: 78px 70px;
}

.clinic-about p,
.clinic-reviews > div p {
  color: rgba(0, 55, 99, 0.42);
  font-weight: 950;
  text-transform: uppercase;
}

.clinic-about h2,
.clinic-reviews h2 {
  max-width: 790px;
  color: #003763;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: none;
}

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

.clinic-service-grid {
  margin-top: 34px;
}

.clinic-service-grid article,
.clinic-reviews article {
  padding: 26px;
  border-radius: 18px;
  background: #eef5f7;
}

.clinic-service-grid span,
.clinic-reviews strong {
  color: #9bc848;
  font-weight: 950;
}

.clinic-service-grid strong,
.clinic-reviews span {
  display: block;
  margin: 12px 0;
  color: #003763;
  font-weight: 950;
}

.clinic-reviews > div {
  grid-column: 1 / -1;
}

.clinic-reviews small {
  color: #426482;
  font-weight: 900;
}

.freight-sample {
  color: #064c38;
  background: #f6fbf7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.freight-nav {
  position: sticky;
  z-index: 10;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto -86px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ecffef;
  background: rgba(2, 92, 65, 0.76);
  backdrop-filter: blur(16px);
}

.freight-nav strong {
  margin-right: auto;
  color: #eef72d;
  font-size: 1.3rem;
}

.freight-nav nav {
  display: flex;
  gap: 28px;
}

.freight-nav a {
  color: #ecffef;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.freight-nav > a:last-child {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.freight-hero {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 720px;
  padding: 130px max(42px, calc((100vw - 1180px) / 2)) 80px;
  color: #ecffef;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.15), transparent 28%),
    linear-gradient(135deg, #007457, #003c2d);
}

.freight-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #eef72d;
  font-size: clamp(4rem, 9vw, 9.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.freight-hero p {
  max-width: 520px;
  color: rgba(236, 255, 239, 0.82);
  line-height: 1.55;
}

.freight-hero a,
.freight-plane-band a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 999px;
  color: #064c38;
  background: #eef72d;
  font-weight: 950;
  text-decoration: none;
}

.freight-truck-scene {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 80px 80px 80px 18px;
  background: linear-gradient(180deg, #9de7ff, #f4fbff 58%, #454d55 59%, #22282e);
}

.truck-cab,
.truck-box,
.truck-road {
  position: absolute;
  display: block;
}

.truck-box {
  right: 70px;
  bottom: 96px;
  width: 230px;
  height: 120px;
  border-radius: 12px;
  background: #eef7ff;
}

.truck-cab {
  right: 286px;
  bottom: 96px;
  width: 94px;
  height: 98px;
  border-radius: 16px 10px 8px 8px;
  background: #dfeef7;
}

.truck-road {
  right: 54px;
  bottom: 76px;
  width: 390px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-8deg);
}

.freight-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 22px;
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto;
}

.freight-feature-grid > div p {
  color: #008060;
  font-weight: 950;
  text-transform: uppercase;
}

.freight-feature-grid h2,
.freight-plane-band h2,
.freight-faq h2 {
  color: #007457;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  text-transform: none;
}

.freight-feature-grid article {
  min-height: 260px;
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 74, 54, 0.08);
}

.freight-feature-grid article:first-of-type {
  color: #ecffef;
  background: #007457;
}

.freight-feature-grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.freight-feature-grid p,
.freight-plane-band p,
.freight-faq p {
  line-height: 1.55;
}

.freight-plane-band {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.freight-plane {
  min-height: 330px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 44% 44%, #ffffff 0 10%, transparent 11%),
    linear-gradient(150deg, #24bce2, #eef8ff 65%, #c5d7e0);
  box-shadow: 0 30px 90px rgba(0, 74, 54, 0.12);
}

.freight-faq {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.freight-faq details {
  margin-top: 12px;
  border: 1px solid rgba(0, 116, 87, 0.16);
  border-radius: 10px;
  background: #ffffff;
}

.freight-faq summary {
  padding: 18px;
  color: #007457;
  cursor: pointer;
  font-weight: 950;
}

.freight-faq p {
  margin: 0;
  padding: 0 18px 18px;
}

.freight-ticker {
  display: flex;
  gap: 60px;
  padding: 28px max(42px, calc((100vw - 1180px) / 2));
  color: #fff7ee;
  background: #ff8150;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 950;
}

.bakery-sample {
  color: #1c120e;
  background: #fffaf3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bakery-promo {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 10px;
  color: #9b4a13;
  background: #fffaf3;
  font-size: 0.78rem;
  font-weight: 900;
}

.bakery-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px max(30px, calc((100vw - 1180px) / 2));
  color: #fff5e9;
  background: #98420d;
}

.bakery-nav strong {
  margin-right: auto;
  color: #ffd36d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.bakery-nav nav {
  display: flex;
  gap: 22px;
}

.bakery-nav a {
  color: #fff5e9;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.bakery-nav > a:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #4c1f08;
  background: #f8b62d;
}

.bakery-hero {
  display: grid;
  justify-items: center;
  min-height: 590px;
  padding: 56px max(30px, calc((100vw - 1180px) / 2)) 36px;
  overflow: hidden;
  color: #fff5e9;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.12), transparent 14%),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.12), transparent 14%),
    #98420d;
}

.bakery-croissant {
  width: min(760px, 86vw);
  height: 270px;
  border: 14px solid #fff5e9;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 42% 46%, #f6b35d 0 17%, transparent 18%),
    radial-gradient(ellipse at 56% 48%, #ffd48d 0 20%, transparent 21%),
    radial-gradient(ellipse at 65% 44%, #cf6b23 0 14%, transparent 15%),
    #382015;
  box-shadow: 0 28px 80px rgba(42, 20, 12, 0.28);
}

.bakery-hero h1 {
  max-width: 960px;
  margin: -10px 0 0;
  color: #fff5e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.92;
  text-align: center;
  text-transform: none;
}

.bakery-story {
  width: min(820px, calc(100% - 48px));
  margin: 70px auto 34px;
  text-align: center;
}

.bakery-story h2 {
  color: #1c120e;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  text-transform: none;
}

.bakery-story p {
  font-size: 1.2rem;
  font-weight: 900;
}

.bakery-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto 82px;
}

.bakery-products article {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 285px;
  padding: 28px;
  border-radius: 48px 48px 18px 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(80, 36, 11, 0.08);
}

.bakery-products .featured-product {
  color: #fff5e9;
  background: #98420d;
}

.bakery-products span,
.bakery-products strong {
  font-weight: 950;
}

.pastry-basket,
.pastry-roll,
.pastry-bread {
  width: 150px;
  height: 95px;
  border-radius: 24px;
}

.pastry-basket {
  background:
    radial-gradient(circle at 36% 44%, #ffd48d 0 15%, transparent 16%),
    radial-gradient(circle at 55% 52%, #f6b35d 0 17%, transparent 18%),
    #7f3711;
}

.pastry-roll {
  background: linear-gradient(135deg, #7f3711, #ffd48d 44%, #7f3711);
}

.pastry-bread {
  background: radial-gradient(ellipse at 50% 55%, #f2bd68 0 40%, transparent 41%), #fff5e9;
}

.bakery-products a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #4c1f08;
  background: #f8b62d;
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
}

.bakery-bestsellers {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.bakery-bestsellers h2 {
  color: #1c120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  text-transform: none;
}

.bakery-bestsellers p {
  color: #7e6b5d;
  font-size: 1.1rem;
  line-height: 1.65;
}

.bakery-chef-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 54px;
  background: #ead2a7;
  text-align: center;
}

.bakery-chef-card span {
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 30%, #f9d4b8 0 18%, transparent 19%),
    linear-gradient(180deg, #fff5e9 0 50%, #c7782e 51%);
}

.bakery-footer {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 42px max(30px, calc((100vw - 1180px) / 2));
  color: #fff5e9;
  background: #98420d;
}

.bakery-footer strong {
  margin-right: auto;
  color: #ffd36d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

@media (max-width: 980px) {
  .demo-viewer-page {
    overflow: hidden;
  }

  .demo-viewer {
    width: min(100% - 36px, 1420px);
    height: 100svh;
    min-height: 0;
    padding-top: clamp(46px, 5.8svh, 72px);
    padding-bottom: 22px;
  }

  .viewer-kicker {
    margin-bottom: 10px;
  }

  .demo-viewer h1 {
    font-size: clamp(2.35rem, 6.2vw, 4rem);
  }

  .viewer-intro {
    margin: 14px 0 clamp(18px, 2.6svh, 28px);
  }

  .device-stage {
    width: min(860px, 100%);
    min-height: clamp(420px, 52svh, 520px);
  }

  .desktop-device {
    width: min(780px, 88vw);
    height: clamp(330px, 39svh, 430px);
  }

  .phone-device {
    --phone-preview-scale: 0.636;
    position: absolute;
    right: clamp(-4px, 2vw, 24px);
    bottom: -20px;
    width: clamp(248px, 30vw, 260px);
  }

  .phone-screen {
    inset: 5px 5px 6px;
    border-radius: 36px;
  }

  .full-size-link {
    height: 46px;
    min-height: 46px;
    margin-top: clamp(14px, 2.1svh, 22px);
  }

  .clinic-shell {
    width: min(100% - 24px, 1320px);
  }

  .clinic-nav,
  .clinic-topbar,
  .bakery-nav,
  .freight-nav {
    flex-wrap: wrap;
  }

  .clinic-nav nav,
  .freight-nav nav,
  .bakery-nav nav {
    flex-wrap: wrap;
  }

  .clinic-hero,
  .freight-hero,
  .freight-feature-grid,
  .freight-plane-band,
  .bakery-bestsellers {
    grid-template-columns: 1fr;
  }

  .clinic-headline h1 {
    margin-bottom: 28px;
  }

  .clinic-video-card,
  .clinic-care {
    grid-column: auto;
  }

  .clinic-service-grid,
  .clinic-reviews,
  .bakery-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .viewer-back,
  .sample-back {
    top: 14px;
    left: 14px;
  }

  .demo-viewer {
    width: min(100% - 22px, 1420px);
    padding-top: 82px;
  }

  .desktop-device {
    height: 360px;
  }

  .phone-device {
    width: min(286px, calc(100vw - 70px));
    height: 500px;
    border-width: 8px;
    right: 0;
  }

  .full-size-link {
    width: auto;
    max-width: max-content;
    min-height: 44px;
    padding: 0 16px;
  }

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

  .clinic-topbar,
  .clinic-nav,
  .clinic-hero,
  .clinic-about,
  .clinic-reviews {
    padding-left: 22px;
    padding-right: 22px;
  }

  .clinic-photo,
  .freight-truck-scene,
  .freight-plane {
    min-height: 240px;
  }

  .freight-nav {
    position: relative;
    top: auto;
    margin-bottom: 0;
  }

  .freight-hero {
    padding-top: 48px;
  }

  .freight-ticker,
  .bakery-promo,
  .bakery-footer {
    flex-wrap: wrap;
  }
}

/* Redesigned full-size demo websites */
.freight-sample,
.bakery-sample,
.clinic-sample {
  line-height: 1.4;
}

body.sample-site::before {
  content: none;
}

.freight-sample img,
.bakery-sample img,
.clinic-sample img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.freight-sample {
  color: #063c2e;
  background:
    linear-gradient(90deg, rgba(6, 60, 46, 0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    #f7fbf5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.freight-nav {
  position: sticky;
  z-index: 20;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  width: min(1180px, calc(100% - 48px));
  min-height: 66px;
  margin: 24px auto -90px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 88, 68, 0.84);
  box-shadow: 0 22px 70px rgba(0, 61, 45, 0.24);
  backdrop-filter: blur(18px);
}

.freight-brand,
.freight-nav strong {
  margin-right: auto;
  color: #effa2d;
  font-size: 1.36rem;
  font-weight: 950;
  text-decoration: none;
}

.freight-nav nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.freight-nav a {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.freight-contact,
.freight-nav > a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.freight-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: 760px;
  padding: 148px max(28px, calc((100vw - 1180px) / 2)) 98px;
  color: #ffffff;
  background:
    radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #006f55 0%, #00422f 58%, #013526 100%);
}

.freight-kicker {
  margin: 0 0 18px;
  color: #ff8754;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.freight-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #effa2d;
  font-size: clamp(4.2rem, 10vw, 9.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.freight-hero p {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.freight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.freight-actions a,
.freight-solution a,
.freight-feature-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 19px;
  border-radius: 999px;
  color: #063c2e;
  background: #effa2d;
  font-size: 0.8rem;
  font-weight: 950;
  text-decoration: none;
}

.freight-actions a:last-child {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.freight-photo {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 90px 90px 26px 90px;
  box-shadow: 0 36px 100px rgba(0, 32, 24, 0.38);
}

.freight-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 66, 47, 0.16), transparent 44%);
  content: "";
}

.freight-feature-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, calc(100% - 48px));
  margin: 78px auto;
}

.freight-feature-heading {
  align-self: center;
}

.freight-feature-grid h2,
.freight-solution h2,
.freight-faq h2 {
  margin: 0;
  color: #007155;
  font-size: clamp(2.25rem, 4.8vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.freight-feature-grid > div p {
  color: #007155;
  font-weight: 950;
  text-transform: uppercase;
}

.freight-feature-grid article {
  display: flex;
  min-height: 295px;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 74, 54, 0.09);
}

.freight-feature-grid article:first-of-type {
  color: #ffffff;
  background: #007155;
}

.freight-feature-grid span {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #063c2e;
  background: #effa2d;
  font-size: 0.72rem;
  font-weight: 950;
}

.freight-feature-grid strong {
  color: inherit;
  font-size: 1.18rem;
  font-weight: 950;
}

.freight-feature-grid p {
  color: inherit;
  line-height: 1.58;
}

.freight-feature-grid a {
  margin-top: auto;
  background: #f4f8ee;
}

.freight-feature-grid article:first-of-type a {
  background: #effa2d;
}

.freight-solution {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 86px;
  padding: 38px 0;
}

.freight-solution::before {
  position: absolute;
  inset: 8% 14% auto 8%;
  height: 72%;
  border: 3px solid rgba(255, 129, 80, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.freight-solution p:not(.freight-kicker),
.freight-faq p {
  color: #47695f;
  line-height: 1.7;
}

.freight-air-card {
  min-height: 320px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent),
    url("assets/demo-logistics-hero.png") center / cover;
  box-shadow: 0 32px 90px rgba(0, 74, 54, 0.13);
}

.freight-air-card span {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background:
    radial-gradient(ellipse at 55% 50%, rgba(255, 255, 255, 0.95) 0 8%, transparent 9%),
    linear-gradient(145deg, rgba(36, 188, 226, 0.18), rgba(255, 255, 255, 0.42));
  mix-blend-mode: screen;
}

.freight-faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  width: min(960px, calc(100% - 48px));
  margin: 0 auto 82px;
}

.freight-faq > div {
  align-self: start;
}

.freight-faq details {
  grid-column: 2;
  border: 1px solid rgba(0, 113, 85, 0.15);
  border-radius: 12px;
  background: #ffffff;
}

.freight-faq details + details {
  margin-top: 0;
}

.freight-faq summary {
  padding: 18px 20px;
  color: #007155;
  cursor: pointer;
  font-weight: 950;
}

.freight-faq p {
  margin: 0;
  padding: 0 20px 20px;
}

.freight-footer {
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
  padding: 28px max(28px, calc((100vw - 1180px) / 2));
  color: #fff7ee;
  background: #ff8150;
  font-size: clamp(1rem, 1.8vw, 1.65rem);
  font-weight: 950;
}

.freight-footer strong {
  margin-right: auto;
  color: #effa2d;
}

.freight-footer a {
  color: #ffffff;
  font-size: 0.92rem;
  text-decoration: none;
}

.bakery-sample {
  color: #1d120d;
  background:
    radial-gradient(circle at 8% 18%, rgba(248, 182, 45, 0.12), transparent 18%),
    #fffaf3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bakery-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  min-height: 38px;
  padding: 10px 18px;
  color: #9a420d;
  background: #fffaf3;
  font-size: 0.76rem;
  font-weight: 900;
}

.bakery-promo span::before {
  display: inline-block;
  width: 12px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px 999px 4px 4px;
  background: #f6a920;
  content: "";
  vertical-align: 1px;
}

.bakery-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px max(24px, calc((100vw - 1180px) / 2));
  color: #fff5e9;
  background: #94400e;
}

.bakery-brand,
.bakery-nav strong {
  margin-right: auto;
  color: #ffd36d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  font-weight: 950;
  text-decoration: none;
}

.bakery-nav nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.bakery-nav a {
  color: #fff5e9;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.bakery-cart {
  opacity: 0.92;
}

.bakery-order,
.bakery-nav > a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #4b1e08;
  background: #f8b62d;
  font-weight: 950;
}

.bakery-hero {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 608px;
  padding: 48px max(24px, calc((100vw - 1180px) / 2)) 34px;
  overflow: hidden;
  color: #fff5e9;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.14), transparent 12%),
    radial-gradient(circle at 83% 23%, rgba(255, 255, 255, 0.13), transparent 12%),
    linear-gradient(180deg, rgba(118, 48, 13, 0.14), transparent 46%),
    #94400e;
}

.bakery-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    repeating-linear-gradient(35deg, transparent 0 38px, rgba(255, 255, 255, 0.7) 39px 41px),
    repeating-linear-gradient(115deg, transparent 0 52px, rgba(255, 255, 255, 0.55) 53px 54px);
  content: "";
}

.bakery-hero-photo {
  position: relative;
  z-index: 1;
  width: min(760px, 86vw);
  height: 304px;
  margin: 0;
  overflow: hidden;
  border: 14px solid #fff5e9;
  border-radius: 50%;
  box-shadow: 0 34px 90px rgba(42, 20, 12, 0.32);
}

.bakery-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: -6px 0 0;
  color: #fff5e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.bakery-story {
  width: min(860px, calc(100% - 48px));
  margin: 70px auto 36px;
  text-align: center;
}

.bakery-story h2 {
  margin: 0;
  color: #1d120d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3.05rem);
  font-weight: 950;
  line-height: 1.13;
  letter-spacing: 0;
  text-transform: none;
}

.bakery-story span {
  color: #94400e;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 950;
}

.bakery-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto 84px;
}

.bakery-products article {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 306px;
  padding: 26px;
  overflow: hidden;
  border-radius: 50px 50px 18px 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(80, 36, 11, 0.08);
}

.bakery-products .featured-product {
  color: #fff5e9;
  background:
    radial-gradient(circle at 50% 100%, rgba(248, 182, 45, 0.12), transparent 34%),
    #94400e;
}

.bakery-products article > div:first-child {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}

.bakery-products span,
.bakery-products strong {
  font-size: 0.9rem;
  font-weight: 950;
}

.bakery-products img {
  width: 172px;
  height: 112px;
  border-radius: 24px;
}

.pastry-roll,
.pastry-bread {
  width: 172px;
  height: 112px;
  border-radius: 24px;
}

.pastry-roll {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0 9%, transparent 10% 23%, rgba(255, 255, 255, 0.48) 24% 31%, transparent 32%),
    linear-gradient(145deg, #6c2b0c, #efb25a 45%, #9b4210 72%, #fff5e9);
}

.pastry-bread {
  background:
    radial-gradient(ellipse at 42% 50%, #f8bf69 0 28%, transparent 29%),
    radial-gradient(ellipse at 62% 47%, #e1983d 0 25%, transparent 26%),
    linear-gradient(135deg, #fff5e9, #f1d3a3);
}

.bakery-products a,
.bakery-blend a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #4c1f08;
  background: #f8b62d;
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
}

.bakery-bestsellers {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 48px;
  align-items: center;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 66px;
}

.bakery-bestseller-copy p,
.bakery-blend p {
  color: #8f7768;
  font-size: 0.84rem;
  font-weight: 900;
}

.bakery-bestsellers h2 {
  margin: 0 0 26px;
  color: #1d120d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.bakery-bestsellers ul {
  display: grid;
  gap: 16px;
  max-width: 440px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bakery-bestsellers li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 64, 14, 0.12);
  color: #715f55;
  font-weight: 850;
}

.bakery-bestsellers li:nth-child(2) {
  color: #1d120d;
  font-weight: 950;
}

.bakery-dessert-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 270px;
  padding: 28px;
  border-radius: 52px;
  background:
    radial-gradient(circle at 50% 42%, #4f2414 0 18%, transparent 19%),
    radial-gradient(circle at 48% 39%, #2c1710 0 10%, transparent 11%),
    #ead2a7;
  text-align: center;
}

.bakery-dessert-card small {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff5e9;
  font-weight: 950;
}

.bakery-dessert-card strong {
  color: #94400e;
  font-size: 1.5rem;
}

.bakery-dessert-card span {
  color: #4c1f08;
  font-weight: 950;
}

.bakery-dessert-card a {
  color: #4c1f08;
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
}

.bakery-blend {
  display: grid;
  justify-items: center;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto -38px;
  padding: 58px 36px;
  border-radius: 50%;
  color: #1d120d;
  background: #e8cf9d;
  text-align: center;
}

.bakery-blend h2 {
  max-width: 620px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.bakery-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 38px;
  color: #fff5e9;
  background: #94400e;
  font-size: 0.82rem;
  font-weight: 850;
}

.bakery-footer strong {
  margin-right: auto;
  color: #ffd36d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.clinic-sample {
  color: #003763;
  background:
    radial-gradient(circle at 50% -8%, #e8ffa0 0 25%, transparent 26%),
    radial-gradient(circle at 104% 26%, #e8ffa0 0 27%, transparent 28%),
    radial-gradient(circle at -8% 18%, #e8ffa0 0 19%, transparent 20%),
    #f7fbef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.clinic-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 36px auto;
  overflow: hidden;
  background: #fffaf1;
  box-shadow: 0 38px 120px rgba(20, 60, 90, 0.13);
}

.clinic-topbar {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 50px;
  padding: 0 70px;
  color: #003763;
  background: #ddf69b;
  font-size: 0.78rem;
  font-weight: 800;
}

.clinic-topbar strong {
  color: #003763;
}

.clinic-socials {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.clinic-socials span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  background: #fffaf1;
  font-size: 0.66rem;
  font-weight: 950;
}

.clinic-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 32px 70px;
}

.clinic-logo {
  margin-right: auto;
  color: #003763;
  font-size: 1.3rem;
  font-weight: 950;
  text-decoration: none;
}

.clinic-logo::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 9px;
  border-radius: 4px 11px 4px 11px;
  background: #003763;
  content: "";
  transform: rotate(45deg);
  vertical-align: -2px;
}

.clinic-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.clinic-nav a {
  color: #003763;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.clinic-book,
.clinic-nav > a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fffaf1;
  background: #003763;
  font-weight: 950;
}

.clinic-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.34fr) minmax(210px, 0.58fr);
  grid-template-rows: auto auto;
  gap: 30px 36px;
  padding: 44px 70px 86px;
}

.clinic-headline h1 {
  margin: 0 0 170px;
  color: #003763;
  font-size: clamp(3.15rem, 6.1vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.clinic-headline p {
  max-width: 342px;
  color: #003763;
  font-weight: 850;
  line-height: 1.45;
}

.clinic-avatars {
  display: flex;
  margin-top: 23px;
}

.clinic-avatars span {
  width: 38px;
  height: 38px;
  margin-right: -10px;
  border: 3px solid #fffaf1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, #f7d1bd 0 20%, transparent 21%),
    linear-gradient(180deg, #dce8ef, #7fb4c7);
}

.clinic-avatars span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 35%, #d9b591 0 20%, transparent 21%),
    linear-gradient(180deg, #eef5f7, #003763);
}

.clinic-avatars span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 35%, #f0c7c0 0 20%, transparent 21%),
    linear-gradient(180deg, #f6f0e7, #ddf69b);
}

.clinic-photo {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(0, 55, 99, 0.12);
}

.clinic-stat-card {
  align-self: start;
  padding: 24px;
  border-radius: 18px;
  background: #e2ecf2;
}

.clinic-stat-card small {
  float: right;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fffaf1;
  font-size: 0.72rem;
  font-weight: 950;
}

.clinic-stat-card p {
  margin: 58px 0 24px;
  color: #003763;
  font-weight: 900;
  line-height: 1.28;
}

.clinic-stat-card strong {
  display: inline-block;
  margin-right: 10px;
  font-size: 2.15rem;
}

.clinic-stat-card span {
  color: #426482;
  font-size: 0.8rem;
  font-weight: 850;
}

.clinic-care {
  grid-column: 2;
  align-self: center;
}

.clinic-care a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 27px;
  border: 1px solid rgba(0, 55, 99, 0.18);
  border-radius: 999px;
  color: #003763;
  font-weight: 950;
  text-decoration: none;
}

.clinic-care h2 {
  max-width: 470px;
  margin: 26px 0 0;
  color: #003763;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.clinic-video-card {
  position: relative;
  grid-column: 3;
  width: 184px;
  height: 220px;
  justify-self: center;
  align-self: end;
  overflow: hidden;
  border-radius: 14px;
  background: #e2ecf2;
}

.clinic-video-card img {
  transform: scale(1.45) translateX(-4%);
}

.clinic-video-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 55, 99, 0.18));
  content: "";
}

.clinic-video-card span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: #003763;
  background: #fffaf1;
  font-size: 0.72rem;
  font-weight: 950;
  transform: translate(-50%, -50%);
}

.clinic-about,
.clinic-reviews,
.clinic-team,
.clinic-booking {
  padding: 74px 70px;
}

.clinic-about p,
.clinic-team p,
.clinic-reviews > div p {
  color: rgba(0, 55, 99, 0.44);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinic-about h2,
.clinic-team h2,
.clinic-reviews h2,
.clinic-booking h2 {
  max-width: 790px;
  margin: 0;
  color: #003763;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.clinic-service-grid,
.clinic-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.clinic-service-grid {
  margin-top: 34px;
}

.clinic-service-grid article,
.clinic-reviews article {
  padding: 26px;
  border-radius: 18px;
  background: #eef5f7;
}

.clinic-service-grid span,
.clinic-reviews strong {
  color: #8ebc3c;
  font-weight: 950;
}

.clinic-service-grid strong,
.clinic-reviews span {
  display: block;
  margin: 12px 0;
  color: #003763;
  font-weight: 950;
  line-height: 1.35;
}

.clinic-service-grid p {
  color: #426482;
  line-height: 1.6;
}

.clinic-team {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  background: #f4f8ef;
}

.clinic-team a,
.clinic-booking a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fffaf1;
  background: #003763;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.clinic-reviews > div {
  grid-column: 1 / -1;
}

.clinic-reviews small {
  color: #426482;
  font-weight: 900;
}

.clinic-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: #ddf69b;
}

.clinic-booking h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 1080px) {
  .freight-nav,
  .bakery-nav,
  .clinic-nav {
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .freight-nav nav,
  .bakery-nav nav,
  .clinic-nav nav {
    flex-wrap: wrap;
    order: 3;
    width: 100%;
  }

  .freight-hero,
  .freight-feature-grid,
  .freight-solution,
  .freight-faq,
  .bakery-bestsellers,
  .clinic-hero,
  .clinic-service-grid,
  .clinic-reviews {
    grid-template-columns: 1fr;
  }

  .freight-photo,
  .freight-air-card {
    min-height: 330px;
  }

  .freight-faq details {
    grid-column: auto;
  }

  .clinic-headline h1 {
    margin-bottom: 28px;
  }

  .clinic-care,
  .clinic-video-card {
    grid-column: auto;
  }

  .clinic-video-card {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .freight-nav,
  .bakery-nav {
    position: relative;
    top: auto;
    width: min(100% - 24px, 1180px);
    margin-bottom: 0;
  }

  .freight-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .freight-hero h1,
  .bakery-hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.8rem);
  }

  .freight-feature-grid,
  .freight-solution,
  .freight-faq,
  .bakery-products,
  .bakery-bestsellers {
    width: min(100% - 28px, 1180px);
  }

  .bakery-hero-photo {
    height: 230px;
    border-width: 9px;
  }

  .bakery-products {
    grid-template-columns: 1fr;
  }

  .bakery-blend {
    width: min(100% - 28px, 920px);
    border-radius: 90px;
  }

  .freight-footer,
  .bakery-footer,
  .clinic-topbar,
  .clinic-team,
  .clinic-booking {
    flex-wrap: wrap;
  }

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

  .clinic-topbar,
  .clinic-nav,
  .clinic-hero,
  .clinic-about,
  .clinic-team,
  .clinic-reviews,
  .clinic-booking {
    padding-left: 22px;
    padding-right: 22px;
  }

  .clinic-photo {
    min-height: 245px;
  }
}

/* Expanded Saddliers logistics demo */
.freight-sample {
  --freight-ink: #062f28;
  --freight-green: #006b51;
  --freight-deep: #002f25;
  --freight-acid: #effa2d;
  --freight-orange: #ff8150;
  --freight-cream: #f5faef;
  --freight-card: #ffffff;
  --freight-muted: #5c776f;
  color: var(--freight-ink);
  background:
    linear-gradient(90deg, rgba(0, 107, 81, 0.055) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #f9fff4 0%, #edf6ee 100%);
}

.freight-alert {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  min-height: 42px;
  padding: 10px 22px;
  color: #dffaf0;
  background: #032f27;
  font-size: 0.78rem;
  font-weight: 850;
}

.freight-alert strong {
  color: var(--freight-acid);
}

.freight-nav {
  top: 18px;
  width: min(1220px, calc(100% - 44px));
  min-height: 72px;
  margin: 18px auto -92px;
  padding: 0 16px 0 24px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 82, 63, 0.88);
  box-shadow: 0 22px 80px rgba(0, 47, 37, 0.26);
}

.freight-brand {
  color: var(--freight-acid);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.freight-nav nav {
  gap: 26px;
}

.freight-contact {
  min-height: 46px;
  color: #ffffff;
}

.freight-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  min-height: 820px;
  padding: 156px max(30px, calc((100vw - 1220px) / 2)) 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 42%, rgba(239, 250, 45, 0.12), transparent 23%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #00745a 0%, #004434 54%, #00281f 100%);
}

.freight-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -22vw;
  width: 52vw;
  height: 52vw;
  border: 2px solid rgba(239, 250, 45, 0.14);
  border-radius: 50%;
  content: "";
}

.freight-hero-copy,
.freight-hero-media {
  position: relative;
  z-index: 1;
}

.freight-kicker {
  color: var(--freight-orange);
}

.freight-hero h1 {
  max-width: 740px;
  color: var(--freight-acid);
  font-size: clamp(4.5rem, 10.5vw, 10.4rem);
  line-height: 0.86;
}

.freight-hero p {
  max-width: 590px;
  font-size: 1.04rem;
}

.freight-actions a {
  min-height: 50px;
  padding: 0 23px;
}

.freight-actions a:last-child {
  background: rgba(255, 255, 255, 0.14);
}

.freight-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin: 36px 0 0;
}

.freight-hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.freight-hero-stats dt {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 950;
}

.freight-hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.freight-hero-media {
  display: grid;
  gap: 18px;
}

.freight-photo {
  min-height: 438px;
  border-radius: 98px 98px 26px 98px;
}

.freight-tracking-card {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #eafff7;
  background: rgba(0, 47, 37, 0.78);
  box-shadow: 0 24px 80px rgba(0, 28, 22, 0.32);
  backdrop-filter: blur(18px);
}

.freight-tracking-card span {
  color: rgba(234, 255, 247, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.freight-tracking-card strong {
  display: block;
  margin-top: 8px;
  color: var(--freight-acid);
  font-size: 1.2rem;
}

.freight-tracking-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.freight-tracking-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(234, 255, 247, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
}

.freight-tracking-card li span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
}

.freight-tracking-card .is-complete span {
  border-color: var(--freight-acid);
  background: var(--freight-acid);
}

.freight-tracking-card .is-active {
  color: #ffffff;
}

.freight-tracking-card .is-active span {
  border-color: var(--freight-orange);
  background: var(--freight-orange);
  box-shadow: 0 0 0 6px rgba(255, 129, 80, 0.16);
}

.freight-command-strip,
.freight-services,
.freight-operations,
.freight-network,
.freight-industries,
.freight-process,
.freight-quote,
.freight-faq {
  width: min(1220px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.freight-command-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.freight-command-strip article {
  min-height: 176px;
  padding: 24px;
  border-radius: 26px;
  color: #ffffff;
  background: #073a30;
  box-shadow: 0 26px 80px rgba(0, 48, 38, 0.17);
}

.freight-command-strip article:nth-child(2) {
  color: var(--freight-ink);
  background: var(--freight-acid);
}

.freight-command-strip article:nth-child(3) {
  background: var(--freight-orange);
}

.freight-command-strip span,
.freight-service-grid span,
.freight-industry-grid span,
.freight-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
}

.freight-command-strip strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 1.28rem;
}

.freight-command-strip p,
.freight-service-grid p,
.freight-ops-panel p,
.freight-network-copy p,
.freight-industry-grid p,
.freight-process p,
.freight-quote-copy p,
.freight-faq p,
.freight-footer p {
  color: var(--freight-muted);
  line-height: 1.68;
}

.freight-command-strip article p,
.freight-command-strip article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.78);
}

.freight-command-strip article:nth-child(2) p {
  color: rgba(6, 47, 40, 0.72);
}

.freight-services,
.freight-industries,
.freight-process,
.freight-faq {
  margin-top: 92px;
}

.freight-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.freight-section-heading h2,
.freight-ops-panel h2,
.freight-network-copy h2,
.freight-process h2,
.freight-quote h2,
.freight-faq h2 {
  max-width: 780px;
  margin: 0;
  color: var(--freight-green);
  font-size: clamp(2.35rem, 5.2vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

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

.freight-service-grid article {
  min-height: 276px;
  padding: 24px;
  border: 1px solid rgba(0, 107, 81, 0.11);
  border-radius: 24px;
  background: var(--freight-card);
  box-shadow: 0 28px 80px rgba(0, 74, 54, 0.08);
}

.freight-service-grid article:nth-child(1),
.freight-service-grid article:nth-child(4) {
  background: #073a30;
}

.freight-service-grid article:nth-child(1) h3,
.freight-service-grid article:nth-child(4) h3 {
  color: #ffffff;
}

.freight-service-grid article:nth-child(1) p,
.freight-service-grid article:nth-child(4) p {
  color: rgba(255, 255, 255, 0.74);
}

.freight-service-grid span {
  color: var(--freight-ink);
  background: var(--freight-acid);
}

.freight-service-grid h3,
.freight-industry-grid strong,
.freight-process strong {
  margin: 24px 0 12px;
  color: var(--freight-ink);
  font-size: 1.24rem;
  line-height: 1.12;
}

.freight-operations,
.freight-network,
.freight-quote {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: 96px;
}

.freight-operations figure {
  min-height: 485px;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 34px 110px rgba(0, 47, 37, 0.16);
}

.freight-ops-panel {
  padding: 36px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 74, 54, 0.08);
}

.freight-ops-panel p:not(.freight-kicker) {
  margin-top: 22px;
}

.freight-ops-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.freight-ops-list span {
  padding: 14px;
  border-radius: 16px;
  color: var(--freight-ink);
  background: #f1f8ef;
  font-size: 0.86rem;
  font-weight: 950;
}

.freight-network {
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.9fr);
}

.freight-map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 25% 22%, rgba(239, 250, 45, 0.2), transparent 22%),
    #04382f;
  box-shadow: 0 34px 100px rgba(0, 47, 37, 0.16);
}

.freight-map-line {
  position: absolute;
  inset: 15% 14%;
  border: 3px solid rgba(239, 250, 45, 0.72);
  border-left-color: transparent;
  border-bottom-color: rgba(255, 129, 80, 0.84);
  border-radius: 48%;
  transform: rotate(-18deg);
}

.freight-map-card .pin {
  position: absolute;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--freight-ink);
  background: var(--freight-acid);
  font-size: 0.8rem;
  font-weight: 950;
}

.pin-syd {
  right: 22%;
  bottom: 28%;
}

.pin-mel {
  left: 28%;
  bottom: 18%;
}

.pin-bne {
  right: 18%;
  top: 19%;
}

.pin-adl {
  left: 16%;
  top: 42%;
}

.freight-map-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(0, 31, 25, 0.78);
  backdrop-filter: blur(14px);
}

.freight-map-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.freight-network-copy p {
  margin-top: 22px;
}

.freight-lane-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.freight-lane-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 74, 54, 0.07);
}

.freight-lane-list span {
  color: var(--freight-muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.freight-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.freight-industry-grid article {
  min-height: 218px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 74, 54, 0.07);
}

.freight-industry-grid span {
  color: #ffffff;
  background: var(--freight-green);
}

.freight-industry-grid strong {
  display: block;
}

.freight-process {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: start;
  padding: 44px;
  border-radius: 38px;
  color: #ffffff;
  background: #05352d;
}

.freight-process h2 {
  color: #ffffff;
}

.freight-process ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.freight-process li {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.freight-process span {
  color: var(--freight-ink);
  background: var(--freight-acid);
}

.freight-process strong {
  display: block;
  color: #ffffff;
}

.freight-process p {
  color: rgba(255, 255, 255, 0.72);
}

.freight-quote {
  align-items: stretch;
  margin-bottom: 94px;
}

.freight-quote-copy {
  padding: 42px;
  border-radius: 36px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 107, 81, 0.86), rgba(0, 47, 37, 0.96)),
    url("assets/demo-logistics-depot.png") center / cover;
  box-shadow: 0 34px 100px rgba(0, 47, 37, 0.17);
}

.freight-quote-copy h2,
.freight-quote-copy p {
  color: #ffffff;
}

.freight-quote-copy blockquote {
  margin: 42px 0 0;
  padding: 24px;
  border-left: 5px solid var(--freight-acid);
  border-radius: 18px;
  background: rgba(0, 31, 25, 0.54);
}

.freight-quote-copy blockquote p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.freight-quote-copy cite {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 850;
}

.freight-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  border-radius: 36px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 74, 54, 0.09);
}

.freight-quote-form label {
  display: grid;
  gap: 8px;
  color: var(--freight-ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.freight-quote-form input,
.freight-quote-form select,
.freight-quote-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 107, 81, 0.14);
  border-radius: 14px;
  color: var(--freight-ink);
  background: #f3f9f1;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
}

.freight-quote-form input,
.freight-quote-form select {
  min-height: 48px;
  padding: 0 14px;
}

.freight-quote-form textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.freight-wide-field,
.freight-quote-form button {
  grid-column: 1 / -1;
}

.freight-quote-form button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  color: var(--freight-ink);
  background: var(--freight-acid);
  cursor: pointer;
  font-weight: 950;
}

.freight-faq {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px 24px;
  margin-bottom: 90px;
}

.freight-faq details {
  grid-column: 2;
  border: 1px solid rgba(0, 107, 81, 0.13);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 74, 54, 0.06);
}

.freight-faq summary {
  padding: 20px 22px;
  color: var(--freight-green);
}

.freight-faq p {
  padding: 0 22px 22px;
}

.freight-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 42px max(28px, calc((100vw - 1220px) / 2));
  color: #ffffff;
  background: #002f25;
  font-size: 0.92rem;
}

.freight-footer strong {
  color: var(--freight-acid);
  font-size: 1.6rem;
}

.freight-footer p {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.freight-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.freight-footer a {
  color: #ffffff;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .freight-hero,
  .freight-operations,
  .freight-network,
  .freight-process,
  .freight-quote,
  .freight-faq {
    grid-template-columns: 1fr;
  }

  .freight-command-strip,
  .freight-service-grid,
  .freight-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .freight-faq details {
    grid-column: auto;
  }

  .freight-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .freight-alert {
    justify-content: flex-start;
    padding-left: 18px;
  }

  .freight-nav {
    width: min(100% - 24px, 1220px);
    margin: 14px auto 0;
    padding: 18px;
  }

  .freight-nav nav {
    gap: 18px;
  }

  .freight-hero {
    min-height: auto;
    padding: 48px 24px 56px;
  }

  .freight-hero h1 {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .freight-hero-stats,
  .freight-command-strip,
  .freight-service-grid,
  .freight-industry-grid,
  .freight-process ol,
  .freight-quote-form,
  .freight-ops-list {
    grid-template-columns: 1fr;
  }

  .freight-photo,
  .freight-operations figure,
  .freight-map-card {
    min-height: 300px;
  }

  .freight-tracking-card,
  .freight-section-heading,
  .freight-lane-list article {
    display: grid;
    grid-template-columns: 1fr;
  }

  .freight-command-strip,
  .freight-services,
  .freight-operations,
  .freight-network,
  .freight-industries,
  .freight-process,
  .freight-quote,
  .freight-faq {
    width: min(100% - 28px, 1220px);
  }

  .freight-command-strip {
    margin-top: 28px;
  }

  .freight-section-heading h2,
  .freight-ops-panel h2,
  .freight-network-copy h2,
  .freight-process h2,
  .freight-quote h2,
  .freight-faq h2 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .freight-ops-panel,
  .freight-process,
  .freight-quote-copy,
  .freight-quote-form {
    padding: 24px;
    border-radius: 26px;
  }
}

/* Expanded Crumb & Hearth bakery demo */
.bakery-sample {
  --bakery-ink: #24120a;
  --bakery-cocoa: #8f3a0a;
  --bakery-deep: #5f2508;
  --bakery-gold: #f9b326;
  --bakery-cream: #fff8ec;
  --bakery-butter: #f1d49a;
  --bakery-muted: #806657;
  color: var(--bakery-ink);
  background:
    radial-gradient(circle at 10% 16%, rgba(249, 179, 38, 0.14), transparent 18%),
    radial-gradient(circle at 92% 4%, rgba(143, 58, 10, 0.1), transparent 20%),
    #fff8ec;
}

.bakery-promo {
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
  min-height: 42px;
  padding: 11px 20px;
  color: var(--bakery-cocoa);
  background: #fff8ec;
  font-size: 0.78rem;
  font-weight: 950;
}

.bakery-promo span::before {
  width: 12px;
  height: 8px;
  background: var(--bakery-gold);
}

.bakery-nav {
  position: sticky;
  z-index: 18;
  top: 0;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  color: #fff8ec;
  background: rgba(143, 58, 10, 0.94);
  box-shadow: 0 22px 80px rgba(95, 37, 8, 0.16);
  backdrop-filter: blur(16px);
}

.bakery-brand {
  color: #ffe09b;
  font-size: 1.55rem;
}

.bakery-nav nav {
  gap: 22px;
}

.bakery-order {
  min-height: 46px;
  color: var(--bakery-ink);
  background: var(--bakery-gold);
}

.bakery-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 720px;
  padding: 78px max(24px, calc((100vw - 1180px) / 2)) 64px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.14), transparent 12%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.13), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%),
    #9a3f0b;
}

.bakery-hero::before {
  opacity: 0.11;
}

.bakery-hero-copy,
.bakery-hero-photo,
.bakery-order-card {
  position: relative;
  z-index: 1;
}

.bakery-kicker {
  margin: 0 0 16px;
  color: var(--bakery-gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bakery-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.4vw, 8.2rem);
  line-height: 0.92;
  text-align: left;
}

.bakery-hero-copy p:not(.bakery-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.bakery-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bakery-hero-actions a,
.bakery-order-card a,
.bakery-menu-grid a,
.bakery-special-card a,
.bakery-footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--bakery-ink);
  background: var(--bakery-gold);
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
}

.bakery-hero-actions a:last-child {
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.12);
}

.bakery-hero-photo {
  width: 100%;
  height: 384px;
  border: 12px solid #fff8ec;
  border-radius: 50%;
  box-shadow: 0 34px 90px rgba(48, 19, 6, 0.36);
}

.bakery-order-card {
  grid-column: 2;
  justify-self: end;
  width: min(360px, 100%);
  margin-top: -54px;
  padding: 22px;
  border-radius: 36px;
  color: var(--bakery-ink);
  background: #fff8ec;
  box-shadow: 0 30px 90px rgba(48, 19, 6, 0.2);
}

.bakery-order-card span {
  color: var(--bakery-cocoa);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bakery-order-card strong {
  display: block;
  margin: 8px 0 16px;
  font-size: 1.35rem;
}

.bakery-order-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.bakery-order-card li {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px;
  border-radius: 16px;
  background: #f7ead2;
  font-weight: 850;
}

.bakery-quick-menu,
.bakery-story,
.bakery-menu,
.bakery-specials,
.bakery-catering,
.bakery-reviews,
.bakery-visit {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.bakery-quick-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.bakery-quick-menu article {
  min-height: 172px;
  padding: 24px;
  border-radius: 34px;
  background: #fff8ec;
  box-shadow: 0 26px 80px rgba(95, 37, 8, 0.11);
}

.bakery-quick-menu article:nth-child(2) {
  color: #fff8ec;
  background: var(--bakery-cocoa);
}

.bakery-quick-menu article:nth-child(3) {
  background: var(--bakery-butter);
}

.bakery-quick-menu span,
.bakery-menu-grid article > div:first-child span,
.bakery-indicator {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--bakery-ink);
  background: var(--bakery-gold);
  font-size: 0.72rem;
  font-weight: 950;
}

.bakery-quick-menu strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.24rem;
}

.bakery-quick-menu p,
.bakery-story p,
.bakery-menu-grid p,
.bakery-special-card p,
.bakery-catering p,
.bakery-reviews p,
.bakery-footer p {
  color: var(--bakery-muted);
  line-height: 1.68;
}

.bakery-quick-menu article:nth-child(2) p {
  color: rgba(255, 248, 236, 0.76);
}

.bakery-story {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.82fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: 96px;
  text-align: left;
}

.bakery-story figure {
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px 42px 42px 120px;
  box-shadow: 0 34px 100px rgba(95, 37, 8, 0.16);
}

.bakery-story h2,
.bakery-section-heading h2,
.bakery-special-card h2,
.bakery-catering h2,
.bakery-visit h2 {
  margin: 0;
  color: var(--bakery-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.bakery-story p:not(.bakery-kicker) {
  margin-top: 22px;
}

.bakery-story dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.bakery-story dl div {
  padding: 16px;
  border-radius: 20px;
  background: #f7ead2;
}

.bakery-story dt {
  color: var(--bakery-cocoa);
  font-size: 1.45rem;
  font-weight: 950;
}

.bakery-story dd {
  margin: 4px 0 0;
  color: var(--bakery-muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.bakery-menu,
.bakery-specials,
.bakery-catering,
.bakery-reviews,
.bakery-visit {
  margin-top: 98px;
}

.bakery-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

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

.bakery-menu-grid article {
  display: grid;
  gap: 16px;
  min-height: 332px;
  padding: 24px;
  border-radius: 34px 34px 18px 18px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(95, 37, 8, 0.09);
}

.bakery-menu-grid .is-featured {
  color: #fff8ec;
  background: var(--bakery-cocoa);
}

.bakery-menu-grid article > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bakery-menu-grid strong {
  color: inherit;
  font-weight: 950;
}

.bakery-menu-grid img,
.bakery-product-art {
  width: 100%;
  height: 132px;
  border-radius: 26px;
}

.bakery-menu-grid .is-featured p {
  color: rgba(255, 248, 236, 0.78);
}

.bakery-product-art.bread {
  background:
    radial-gradient(ellipse at 45% 48%, #d68b30 0 24%, transparent 25%),
    radial-gradient(ellipse at 60% 46%, #f3bd68 0 24%, transparent 25%),
    linear-gradient(135deg, #fff4df, #e8bf79);
}

.bakery-product-art.scroll {
  background:
    radial-gradient(circle at 50% 50%, #6c2e11 0 13%, transparent 14%),
    repeating-radial-gradient(circle at 50% 50%, #f5c16b 0 14px, #8f3a0a 15px 25px, #f7d391 26px 35px);
}

.bakery-product-art.tart {
  background:
    radial-gradient(circle at 34% 48%, #9c1f2e 0 10%, transparent 11%),
    radial-gradient(circle at 52% 44%, #f6d458 0 12%, transparent 13%),
    radial-gradient(circle at 68% 51%, #d83344 0 10%, transparent 11%),
    radial-gradient(ellipse at 50% 58%, #f4c874 0 44%, transparent 45%),
    #fff4df;
}

.bakery-specials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.bakery-special-card {
  min-height: 390px;
  padding: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 22% 78%, rgba(249, 179, 38, 0.18), transparent 16%),
    #ead2a4;
  text-align: center;
}

.bakery-special-card h2 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.bakery-special-card p {
  max-width: 620px;
  margin: 18px auto;
}

.bakery-schedule {
  padding: 30px;
  border-radius: 34px;
  color: #fff8ec;
  background: var(--bakery-cocoa);
}

.bakery-schedule h3 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.bakery-schedule ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bakery-schedule li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 248, 236, 0.82);
  font-weight: 850;
}

.bakery-schedule span {
  color: var(--bakery-gold);
  font-weight: 950;
}

.bakery-catering {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.78), rgba(255, 248, 236, 0.96)),
    url("assets/demo-bakery-interior.png") center / cover;
  box-shadow: 0 34px 100px rgba(95, 37, 8, 0.12);
}

.bakery-catering p:not(.bakery-kicker) {
  margin-top: 22px;
}

.bakery-catering-options {
  display: grid;
  gap: 14px;
}

.bakery-catering-options article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(95, 37, 8, 0.08);
}

.bakery-catering-options strong {
  font-weight: 950;
}

.bakery-catering-options span {
  color: var(--bakery-cocoa);
  font-weight: 950;
}

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

.bakery-review-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(95, 37, 8, 0.08);
}

.bakery-review-grid strong {
  color: var(--bakery-cocoa);
  font-size: 1.6rem;
}

.bakery-review-grid span {
  color: var(--bakery-muted);
  font-weight: 950;
}

.bakery-visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 90px;
}

.bakery-visit-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 34px;
  color: #fff8ec;
  background: var(--bakery-deep);
}

.bakery-visit-card strong {
  color: var(--bakery-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.bakery-visit-card a {
  color: #fff8ec;
  font-weight: 950;
}

.bakery-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 44px max(24px, calc((100vw - 1180px) / 2));
  color: #fff8ec;
  background: var(--bakery-cocoa);
}

.bakery-footer strong {
  color: var(--bakery-gold);
  font-size: 1.65rem;
}

.bakery-footer p {
  max-width: 450px;
  margin: 10px 0 0;
  color: rgba(255, 248, 236, 0.72);
}

.bakery-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.bakery-footer a {
  color: #fff8ec;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .bakery-hero,
  .bakery-story,
  .bakery-specials,
  .bakery-catering,
  .bakery-visit {
    grid-template-columns: 1fr;
  }

  .bakery-quick-menu,
  .bakery-menu-grid,
  .bakery-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bakery-order-card {
    grid-column: auto;
    justify-self: start;
    margin-top: 0;
  }

  .bakery-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .bakery-promo {
    justify-content: flex-start;
  }

  .bakery-nav {
    position: relative;
    flex-wrap: wrap;
    gap: 18px;
  }

  .bakery-nav nav {
    order: 4;
    flex-wrap: wrap;
    width: 100%;
  }

  .bakery-hero {
    min-height: auto;
    padding: 48px 22px 54px;
  }

  .bakery-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.7rem);
  }

  .bakery-hero-photo {
    height: 250px;
    border-width: 8px;
  }

  .bakery-quick-menu,
  .bakery-story,
  .bakery-menu,
  .bakery-specials,
  .bakery-catering,
  .bakery-reviews,
  .bakery-visit {
    width: min(100% - 28px, 1180px);
  }

  .bakery-quick-menu,
  .bakery-menu-grid,
  .bakery-review-grid,
  .bakery-story dl {
    grid-template-columns: 1fr;
  }

  .bakery-quick-menu {
    margin-top: 28px;
  }

  .bakery-story figure {
    min-height: 280px;
    border-radius: 34px;
  }

  .bakery-story h2,
  .bakery-section-heading h2,
  .bakery-special-card h2,
  .bakery-catering h2,
  .bakery-visit h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .bakery-section-heading,
  .bakery-catering-options article {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bakery-special-card,
  .bakery-catering,
  .bakery-visit-card {
    padding: 24px;
    border-radius: 30px;
  }
}

/* Expanded SmileCraft studio clinic demo */
.clinic-sample {
  --clinic-navy: #003763;
  --clinic-ink: #06395f;
  --clinic-blue: #dfeef5;
  --clinic-soft: #fffaf1;
  --clinic-mint: #ddf69b;
  --clinic-sage: #edf5ec;
  --clinic-muted: #55718a;
  color: var(--clinic-navy);
  background:
    radial-gradient(circle at 50% -8%, #e8ffa0 0 24%, transparent 25%),
    radial-gradient(circle at 104% 24%, #e8ffa0 0 25%, transparent 26%),
    radial-gradient(circle at -8% 18%, #e8ffa0 0 18%, transparent 19%),
    #f7fbef;
}

.clinic-shell {
  width: min(1360px, calc(100% - 48px));
  margin: 30px auto;
  background: var(--clinic-soft);
  box-shadow: 0 38px 120px rgba(20, 60, 90, 0.13);
}

.clinic-topbar {
  min-height: 54px;
  padding: 0 68px;
  background: var(--clinic-mint);
}

.clinic-nav {
  position: sticky;
  z-index: 16;
  top: 0;
  padding: 30px 68px;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(16px);
}

.clinic-nav nav {
  gap: 22px;
}

.clinic-logo,
.clinic-nav a,
.clinic-topbar span,
.clinic-socials span {
  min-width: 0;
}

.clinic-book {
  min-height: 54px;
}

.clinic-kicker {
  margin: 0 0 16px;
  color: rgba(0, 55, 99, 0.48);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clinic-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.22fr) minmax(220px, 0.62fr);
  grid-template-rows: auto auto;
  gap: 30px 36px;
  padding: 48px 68px 86px;
}

.clinic-headline h1 {
  margin: 0 0 30px;
  color: var(--clinic-navy);
  font-size: clamp(3.25rem, 5.8vw, 6.1rem);
  overflow-wrap: anywhere;
}

.clinic-headline p:not(.clinic-kicker) {
  max-width: 390px;
  color: var(--clinic-navy);
}

.clinic-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.clinic-hero-actions a,
.clinic-booking-card a,
.clinic-team a,
.clinic-booking a,
.clinic-booking-form button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--clinic-soft);
  background: var(--clinic-navy);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.clinic-hero-actions a:last-child {
  color: var(--clinic-navy);
  background: transparent;
  border: 1px solid rgba(0, 55, 99, 0.2);
}

.clinic-photo {
  min-height: 440px;
  border-radius: 18px;
}

.clinic-stat-card {
  padding: 24px;
  background: var(--clinic-blue);
}

.clinic-stat-card p {
  margin-top: 52px;
}

.clinic-booking-card {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  color: var(--clinic-navy);
  background: #eef5f7;
  box-shadow: 0 22px 70px rgba(0, 55, 99, 0.09);
}

.clinic-booking-card span {
  color: rgba(0, 55, 99, 0.5);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinic-booking-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.24rem;
}

.clinic-booking-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinic-booking-card li {
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
}

.clinic-booking-card b {
  display: block;
  color: #8ebc3c;
}

.clinic-service-strip,
.clinic-treatments,
.clinic-experience,
.clinic-journey,
.clinic-team,
.clinic-results,
.clinic-reviews,
.clinic-faq,
.clinic-booking {
  padding-right: 68px;
  padding-left: 68px;
}

.clinic-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
  padding-bottom: 82px;
}

.clinic-service-strip article {
  min-height: 190px;
  padding: 26px;
  border-radius: 22px;
  background: #eef5f7;
}

.clinic-service-strip article:nth-child(2) {
  color: var(--clinic-navy);
  background: var(--clinic-mint);
}

.clinic-service-strip span,
.clinic-treatment-grid span,
.clinic-journey span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--clinic-navy);
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 950;
}

.clinic-service-strip strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 1.2rem;
}

.clinic-service-strip p,
.clinic-treatment-grid p,
.clinic-experience-copy p,
.clinic-team-copy p,
.clinic-journey p,
.clinic-results span,
.clinic-reviews span,
.clinic-faq p,
.clinic-footer p {
  color: var(--clinic-muted);
  line-height: 1.65;
}

.clinic-treatments,
.clinic-experience,
.clinic-journey,
.clinic-team,
.clinic-results,
.clinic-reviews,
.clinic-faq,
.clinic-booking {
  padding-top: 78px;
  padding-bottom: 78px;
}

.clinic-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.clinic-section-heading h2,
.clinic-experience-copy h2,
.clinic-journey h2,
.clinic-team h2,
.clinic-result-card h2,
.clinic-reviews h2,
.clinic-faq h2,
.clinic-booking h2 {
  max-width: 820px;
  margin: 0;
  color: var(--clinic-navy);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

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

.clinic-treatment-grid article {
  min-height: 280px;
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 55, 99, 0.06);
}

.clinic-treatment-grid article:nth-child(1),
.clinic-treatment-grid article:nth-child(4) {
  background: #eef5f7;
}

.clinic-treatment-grid strong {
  display: block;
  margin: 24px 0 12px;
  color: var(--clinic-navy);
  font-size: 1.2rem;
  line-height: 1.2;
}

.clinic-experience {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 0.84fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.clinic-experience figure {
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px 70px 18px 18px;
  box-shadow: 0 30px 90px rgba(0, 55, 99, 0.12);
}

.clinic-experience-copy p:not(.clinic-kicker) {
  margin-top: 24px;
}

.clinic-experience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.clinic-experience-list span {
  padding: 14px;
  border-radius: 16px;
  background: #eef5f7;
  font-size: 0.84rem;
  font-weight: 950;
}

.clinic-journey {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  color: var(--clinic-soft);
  background: var(--clinic-navy);
}

.clinic-journey h2,
.clinic-journey .clinic-kicker {
  color: var(--clinic-soft);
}

.clinic-journey ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinic-journey li {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.clinic-journey strong {
  display: block;
  margin: 20px 0 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.clinic-journey p {
  color: rgba(255, 250, 241, 0.72);
}

.clinic-team {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 34px;
  align-items: center;
  background: var(--clinic-soft);
}

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

.clinic-team-grid article {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  background: #eef5f7;
}

.clinic-team-grid span {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, #f3c8bd 0 20%, transparent 21%),
    linear-gradient(180deg, #dfeef5 0 48%, var(--clinic-navy) 49%);
}

.clinic-team-grid article:nth-child(2) span {
  background:
    radial-gradient(circle at 50% 35%, #d8af8b 0 20%, transparent 21%),
    linear-gradient(180deg, #f7fbef 0 48%, #8ebc3c 49%);
}

.clinic-team-grid article:nth-child(3) span {
  background:
    radial-gradient(circle at 50% 35%, #f0c9c2 0 20%, transparent 21%),
    linear-gradient(180deg, #dfeef5 0 48%, #7fb4c7 49%);
}

.clinic-team-grid strong {
  color: var(--clinic-navy);
}

.clinic-team-grid small {
  color: var(--clinic-muted);
  font-weight: 850;
}

.clinic-results {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 22px;
  align-items: stretch;
  background: #f4f8ef;
}

.clinic-result-card {
  padding: 34px;
  border-radius: 30px;
  background: var(--clinic-mint);
}

.clinic-result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.clinic-result-metrics article {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 55, 99, 0.05);
}

.clinic-result-metrics strong {
  display: block;
  color: var(--clinic-navy);
  font-size: 2rem;
}

.clinic-result-metrics span {
  display: block;
  margin-top: 10px;
  font-weight: 850;
}

.clinic-reviews {
  gap: 20px;
}

.clinic-reviews article,
.clinic-faq details {
  border-radius: 22px;
  background: #eef5f7;
}

.clinic-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px 24px;
}

.clinic-faq > div {
  align-self: start;
}

.clinic-faq details {
  grid-column: 2;
  border: 1px solid rgba(0, 55, 99, 0.1);
}

.clinic-faq summary {
  padding: 20px 22px;
  color: var(--clinic-navy);
  cursor: pointer;
  font-weight: 950;
}

.clinic-faq p {
  margin: 0;
  padding: 0 22px 22px;
}

.clinic-booking {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  background: var(--clinic-mint);
}

.clinic-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
  border-radius: 26px;
  background: var(--clinic-soft);
}

.clinic-booking-form label {
  display: grid;
  gap: 8px;
  color: var(--clinic-navy);
  font-size: 0.78rem;
  font-weight: 950;
}

.clinic-booking-form input,
.clinic-booking-form select,
.clinic-booking-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 55, 99, 0.13);
  border-radius: 14px;
  color: var(--clinic-navy);
  background: #eef5f7;
  font: inherit;
  font-size: 0.9rem;
}

.clinic-booking-form input,
.clinic-booking-form select {
  min-height: 48px;
  padding: 0 14px;
}

.clinic-booking-form textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.clinic-wide-field,
.clinic-booking-form button {
  grid-column: 1 / -1;
}

.clinic-booking-form button {
  border: 0;
  cursor: pointer;
}

.clinic-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 42px 68px;
  color: var(--clinic-soft);
  background: var(--clinic-navy);
}

.clinic-footer strong {
  color: var(--clinic-mint);
  font-size: 1.55rem;
}

.clinic-footer p {
  max-width: 440px;
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.72);
}

.clinic-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.clinic-footer a {
  color: var(--clinic-soft);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .clinic-topbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 14px;
    align-items: center;
  }

  .clinic-nav {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .clinic-nav nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .clinic-hero,
  .clinic-booking-card,
  .clinic-service-strip,
  .clinic-treatment-grid,
  .clinic-experience,
  .clinic-journey,
  .clinic-team,
  .clinic-results,
  .clinic-faq,
  .clinic-booking {
    grid-template-columns: 1fr;
  }

  .clinic-booking-card,
  .clinic-care,
  .clinic-video-card,
  .clinic-faq details {
    grid-column: auto;
  }

  .clinic-booking-card ul,
  .clinic-team-grid,
  .clinic-result-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clinic-headline h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 10vw, 5.8rem);
  }

  .clinic-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .clinic-shell {
    width: 100%;
    margin: 0;
  }

  .clinic-topbar,
  .clinic-nav,
  .clinic-hero,
  .clinic-service-strip,
  .clinic-treatments,
  .clinic-experience,
  .clinic-journey,
  .clinic-team,
  .clinic-results,
  .clinic-reviews,
  .clinic-faq,
  .clinic-booking,
  .clinic-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .clinic-topbar {
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    grid-template-columns: 1fr 1fr;
    font-size: 0.78rem;
  }

  .clinic-topbar strong {
    font-size: 0.88rem;
  }

  .clinic-socials {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .clinic-socials span {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .clinic-nav {
    position: relative;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .clinic-nav nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .clinic-nav nav::-webkit-scrollbar {
    display: none;
  }

  .clinic-nav nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eef5f7;
    font-size: 0.86rem;
  }

  .clinic-book,
  .clinic-nav > a:last-child {
    justify-self: start;
    min-height: 48px;
    padding: 0 20px;
  }

  .clinic-hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .clinic-headline h1 {
    max-width: 10ch;
    font-size: clamp(3.55rem, 15vw, 4.65rem);
  }

  .clinic-headline p:not(.clinic-kicker) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .clinic-hero-actions a {
    width: 100%;
  }

  .clinic-photo,
  .clinic-experience figure {
    min-height: 280px;
  }

  .clinic-stat-card {
    padding: 20px;
  }

  .clinic-stat-card p {
    margin-top: 20px;
  }

  .clinic-booking-card {
    padding: 18px;
  }

  .clinic-booking-card ul,
  .clinic-treatment-grid,
  .clinic-journey ol,
  .clinic-team-grid,
  .clinic-result-metrics,
  .clinic-booking-form,
  .clinic-experience-list {
    grid-template-columns: 1fr;
  }

  .clinic-section-heading,
  .clinic-faq {
    display: grid;
    grid-template-columns: 1fr;
  }

  .clinic-section-heading h2,
  .clinic-experience-copy h2,
  .clinic-journey h2,
  .clinic-team h2,
  .clinic-result-card h2,
  .clinic-reviews h2,
  .clinic-faq h2,
  .clinic-booking h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }
}

@media (max-width: 300px) {
  .clinic-topbar,
  .clinic-nav,
  .clinic-hero,
  .clinic-service-strip,
  .clinic-treatments,
  .clinic-experience,
  .clinic-journey,
  .clinic-team,
  .clinic-results,
  .clinic-reviews,
  .clinic-faq,
  .clinic-booking,
  .clinic-footer {
    padding-right: 12px;
    padding-left: 12px;
  }

  .clinic-topbar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 30px;
    padding-bottom: 12px;
    font-size: 0.62rem;
  }

  .clinic-topbar strong {
    font-size: 0.68rem;
  }

  .clinic-socials span {
    width: 24px;
    height: 24px;
    font-size: 0.58rem;
  }

  .clinic-nav {
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .clinic-logo {
    font-size: 0.82rem;
  }

  .clinic-book,
  .clinic-nav > a:last-child {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .clinic-nav nav {
    gap: 6px;
  }

  .clinic-nav nav a {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .clinic-hero {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .clinic-kicker {
    margin-bottom: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .clinic-headline h1 {
    max-width: 9ch;
    margin-bottom: 16px;
    font-size: 2.25rem;
  }

  .clinic-headline p:not(.clinic-kicker) {
    font-size: 0.78rem;
  }

  .clinic-photo,
  .clinic-experience figure {
    min-height: 210px;
  }
}

.demo-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.demo-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.is-menu-open .demo-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.is-menu-open .demo-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .demo-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 720px) {
  .freight-nav,
  .bakery-nav,
  .clinic-nav {
    align-items: center;
  }

  .demo-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    order: 2;
    margin-left: auto;
  }

  .freight-nav nav,
  .bakery-nav nav,
  .clinic-nav nav {
    display: none;
    order: 20;
    width: 100%;
    margin-top: 0;
    overflow: visible;
  }

  .freight-nav.is-menu-open nav,
  .bakery-nav.is-menu-open nav,
  .clinic-nav.is-menu-open nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .freight-nav nav a,
  .bakery-nav nav a,
  .clinic-nav nav a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    white-space: normal;
    text-align: center;
  }

  .freight-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .freight-nav .demo-menu-toggle {
    color: var(--freight-acid);
    border-color: rgba(255, 236, 35, 0.48);
    background: rgba(255, 236, 35, 0.08);
  }

  .freight-nav nav a {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .freight-contact {
    order: 3;
  }

  .bakery-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .bakery-nav .demo-menu-toggle {
    color: #fff5df;
    border-color: rgba(255, 245, 223, 0.38);
    background: rgba(255, 245, 223, 0.12);
  }

  .bakery-nav nav a {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
  }

  .bakery-cart {
    display: none;
  }

  .bakery-order {
    order: 3;
  }

  .clinic-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .clinic-nav .demo-menu-toggle {
    color: var(--clinic-navy);
    border-color: rgba(0, 55, 99, 0.24);
    background: rgba(0, 55, 99, 0.06);
  }

  .clinic-nav nav a {
    border: 1px solid rgba(0, 55, 99, 0.1);
    background: rgba(0, 55, 99, 0.06);
    color: var(--clinic-navy);
  }

  .clinic-book {
    order: 3;
  }
}

@media (max-width: 380px) {
  .freight-nav.is-menu-open nav,
  .bakery-nav.is-menu-open nav,
  .clinic-nav.is-menu-open nav {
    grid-template-columns: 1fr;
  }
}
