:root {
  --ink: #241b17;
  --ink-soft: #62564f;
  --ink-muted: #7a6d65;
  --cream: #f5efe6;
  --cream-deep: #e9ded0;
  --paper: #fffdf9;
  --paper-soft: #fbf7f1;
  --purple: #6b3bf0;
  --purple-dark: #4c21c5;
  --purple-soft: #eee8ff;
  --plum: #24183d;
  --plum-soft: #342451;
  --bronze: #9a5a25;
  --bronze-dark: #7d431c;
  --bronze-soft: #f3e5d7;
  --gold: #bd7a22;
  --sage: #567465;
  --line: rgba(36, 27, 23, 0.13);
  --shadow-sm: 0 12px 34px rgba(67, 47, 37, 0.08);
  --shadow-lg: 0 35px 90px rgba(57, 37, 28, 0.15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  background: var(--cream);
}

body,
body.zemma-marketing-shell,
html.dark body.zemma-marketing-shell {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.marketing-stage {
  min-height: 100vh;
  overflow: clip;
  background: var(--cream);
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid rgba(107, 59, 240, 0.44);
  outline-offset: 3px;
}

/* Header */
.site {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  border-bottom: 1px solid transparent;
  background: rgba(245, 239, 230, 0.9);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site.scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 8px 30px rgba(58, 40, 31, 0.06);
}

.nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 38px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo-img {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(36, 27, 23, 0.09);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.46);
}

.nav-links a,
.login {
  position: relative;
  color: #4e433c;
  font-size: 0.8rem;
  font-weight: 700;
}

.nav-links a {
  padding: 7px 12px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  background: var(--paper);
  color: var(--purple-dark);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  background: var(--paper);
  box-shadow: 0 5px 14px rgba(67, 47, 37, 0.08);
  color: var(--purple-dark);
}

.mobile-nav a.active,
.mobile-nav a[aria-current="page"] {
  color: var(--purple-dark);
}

.login::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  background: var(--purple);
  content: "";
  transition: transform 160ms ease;
}

.login:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  position: relative;
}

.lang {
  display: inline-flex;
  height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 156px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  visibility: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: 150ms ease;
}

.lang-switch.open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 0.82rem;
}

.lang-menu button:hover,
.lang-menu button.active {
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.lang-menu button span {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #a76730, var(--bronze-dark));
  box-shadow: 0 12px 24px rgba(126, 68, 28, 0.22);
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(126, 68, 28, 0.3);
}

.btn-secondary {
  border-color: rgba(36, 27, 23, 0.27);
  background: rgba(255, 253, 249, 0.46);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: rgba(36, 27, 23, 0.48);
  background: var(--paper);
}

.btn-light {
  background: white;
  box-shadow: 0 14px 34px rgba(12, 6, 25, 0.2);
  color: var(--plum);
}

.btn-large {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 14px;
  font-size: 0.94rem;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 2px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: 104px 24px 28px;
  opacity: 0;
  visibility: hidden;
  background: rgba(245, 239, 230, 0.98);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-menu-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.mobile-nav {
  display: grid;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 7vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.mobile-language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-lang-options {
  display: flex;
  gap: 6px;
}

.mobile-lang-options button {
  width: 44px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-lang-options button.active {
  border-color: var(--purple);
  background: var(--purple);
  color: white;
}

.mobile-cta {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 46px;
  background:
    linear-gradient(rgba(104, 75, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 75, 52, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(255, 253, 249, 0.7));
  content: "";
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 26px;
  right: -190px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 35% 35%, rgba(118, 80, 245, 0.14), rgba(118, 80, 245, 0) 68%);
}

.hero-orb-two {
  bottom: 40px;
  left: -210px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(189, 122, 34, 0.11), transparent 67%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(42px, 5vw, 72px);
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.eyebrow > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(189, 122, 34, 0.12);
}

.hero h1,
.section-heading h2,
.section-copy h2,
.product-copy h2,
.contact-copy h2,
.final-cta h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(3.25rem, 3.65vw, 4.15rem);
  line-height: 0.98;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--purple);
  font-family: inherit;
  font-style: normal;
  font-weight: 550;
}

.hero-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 690px;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.check-dot {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(86, 116, 101, 0.15);
  color: #315647;
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-stats {
  display: grid;
  width: 100%;
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.hero-stats > div + div {
  border-left: 1px solid var(--line);
  padding-left: clamp(14px, 1.8vw, 24px);
}

.hero-stats > div:not(:last-child) {
  padding-right: clamp(14px, 1.8vw, 24px);
}

.hero-stats dt {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-stats dd {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.35;
}

.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.3;
  margin: 0;
  isolation: isolate;
}

.hero-photo::before {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 68%;
  height: 72%;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(118, 80, 245, 0.2), rgba(189, 122, 34, 0.16));
  content: "";
  z-index: -1;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(104, 75, 52, 0.12);
  border-radius: 34px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 34px 80px rgba(67, 47, 37, 0.18);
}

.hero-photo-status {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 58px;
  align-items: center;
  max-width: min(320px, calc(100% - 48px));
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: linear-gradient(135deg, #7a58f4, var(--purple));
  box-shadow: 0 18px 42px rgba(92, 56, 213, 0.34);
  color: white;
  backdrop-filter: blur(16px);
}

.hero-photo-status strong {
  font-size: 0.84rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.hero-product {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 540px;
  align-items: center;
  margin-top: 52px;
  padding: 34px 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(126, 84, 247, 0.44), transparent 40%),
    radial-gradient(circle at 4% 94%, rgba(189, 122, 34, 0.16), transparent 30%),
    var(--plum);
  box-shadow: 0 36px 90px rgba(49, 31, 25, 0.2);
  grid-template-columns: minmax(190px, 0.78fr) minmax(390px, 1.25fr) minmax(190px, 0.78fr);
  gap: clamp(20px, 3vw, 40px);
}

.app-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 17px;
  border: 1px solid rgba(36, 27, 23, 0.11);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 38px 76px rgba(7, 3, 16, 0.34), 0 3px 0 white inset;
}

.app-window::before {
  content: none;
}

.app-window-bar,
.app-intro,
.calendar-head,
.dash-top,
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-window-bar {
  padding: 3px 3px 16px;
  border-bottom: 1px solid var(--line);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
}

.app-brand > span,
.dash-logo {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8666f8, #5a2fe8);
  box-shadow: 0 9px 18px rgba(90, 47, 232, 0.23);
  color: white;
  font-weight: 800;
}

.app-brand > span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 0.74rem;
}

.online {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e9f5ee;
  color: #2f674c;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.online i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3e9368;
}

.app-intro {
  padding: 17px 2px 9px;
  font-size: 0.74rem;
  font-weight: 750;
}

.app-intro span {
  color: var(--ink-muted);
  font-size: 0.63rem;
}

.service-list {
  display: grid;
  gap: 7px;
}

.service-row {
  display: grid;
  min-height: 61px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
}

.service-row.active {
  border-color: rgba(107, 59, 240, 0.46);
  box-shadow: 0 0 0 3px rgba(107, 59, 240, 0.07);
}

.service-swatch {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.swatch-one { background: linear-gradient(135deg, #7041ee, #a385fb); }
.swatch-two { background: linear-gradient(135deg, #bb6d96, #e8a3be); }
.swatch-three { background: linear-gradient(135deg, #c88643, #efbd7d); }

.service-row > span:nth-child(2) {
  display: grid;
}

.service-row strong {
  font-size: 0.7rem;
}

.service-row small {
  color: var(--ink-muted);
  font-size: 0.58rem;
}

.service-row b {
  font-size: 0.68rem;
}

.mini-calendar {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.calendar-head {
  font-size: 0.66rem;
}

.calendar-head span {
  color: var(--ink-muted);
}

.calendar-grid {
  display: grid;
  align-items: center;
  margin-top: 10px;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-grid small {
  color: var(--ink-muted);
  font-size: 0.47rem;
}

.calendar-grid span {
  display: grid;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  font-size: 0.52rem;
}

.calendar-grid span.selected {
  background: var(--purple);
  color: white;
  font-weight: 800;
}

.time-row {
  display: grid;
  margin: 9px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.time-row span {
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  color: var(--ink-muted);
  text-align: center;
  font-size: 0.56rem;
}

.time-row span.active {
  border-color: var(--purple);
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-weight: 800;
}

.demo-button {
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7650f5, #5a2ee3);
  box-shadow: 0 10px 22px rgba(90, 47, 232, 0.24);
  color: white;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 800;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(36, 27, 23, 0.08);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 20px 50px rgba(55, 36, 28, 0.17);
  backdrop-filter: blur(12px);
}

.float-card small,
.float-card strong {
  display: block;
  line-height: 1.3;
}

.float-card small {
  color: var(--ink-muted);
  font-size: 0.52rem;
}

.float-card strong {
  margin-top: 2px;
  font-size: 0.68rem;
}

.float-card strong b {
  color: #28835a;
}

.float-booking {
  top: 44px;
  left: 0;
  padding: 12px 16px;
  border-radius: 15px;
  transform: rotate(-2deg);
}

.float-icon,
.chart-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: var(--purple-soft);
  color: var(--purple);
  font-weight: 900;
}

.float-result {
  top: 330px;
  right: -2px;
  padding: 12px 15px;
  border-radius: 15px;
  transform: rotate(2deg);
}

.float-confirmed {
  bottom: 26px;
  left: 28px;
  display: grid;
  min-width: 135px;
  padding: 11px 14px;
  border-radius: 14px;
  grid-template-columns: auto 1fr;
}

.float-confirmed > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #e6f5ec;
  color: #357b57;
  grid-row: span 2;
}

.hero-day-panel,
.hero-activity-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.showcase-label {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-day-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  color: white;
  backdrop-filter: blur(14px);
}

.showcase-studio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.showcase-studio > span:last-child {
  display: grid;
}

.showcase-studio small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.56rem;
}

.showcase-studio strong {
  font-size: 0.78rem;
}

.showcase-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #8c6bff, #6335ea);
  box-shadow: 0 12px 24px rgba(12, 5, 29, 0.25);
  font-size: 0.73rem;
  font-weight: 850;
}

.showcase-metric {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 25px;
}

.showcase-metric > span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.63rem;
  grid-column: 1 / -1;
}

.showcase-metric strong {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 3.15rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.showcase-metric b {
  align-self: end;
  margin-bottom: 5px;
  color: #9be1bb;
  font-size: 0.63rem;
}

.showcase-capacity {
  margin-top: 22px;
}

.showcase-capacity > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
}

.showcase-capacity strong {
  color: white;
  font-size: 0.68rem;
}

.showcase-capacity > i {
  display: block;
  height: 5px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.showcase-capacity > i > b {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8967ff, #c2afff);
}

.showcase-next {
  display: grid;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(9, 4, 20, 0.18);
}

.showcase-next small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.52rem;
}

.showcase-next span {
  margin-top: 9px;
  color: #ae95ff;
  font-size: 0.59rem;
  font-weight: 850;
}

.showcase-next strong {
  margin-top: 2px;
  font-size: 0.66rem;
}

.hero-activity-panel {
  display: grid;
  align-content: center;
  gap: 10px;
}

.hero-activity-panel .showcase-label {
  margin-bottom: 8px;
}

.activity-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 38px rgba(8, 3, 18, 0.2);
  color: var(--ink);
}

.activity-primary {
  border-color: rgba(145, 113, 255, 0.55);
  box-shadow: 0 20px 42px rgba(8, 3, 18, 0.24), 0 0 0 3px rgba(136, 100, 255, 0.13);
}

.activity-card p {
  display: grid;
  min-width: 0;
}

.activity-card small {
  color: var(--ink-muted);
  font-size: 0.52rem;
}

.activity-card strong {
  overflow: hidden;
  margin-top: 1px;
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card strong b {
  color: #28835a;
}

.activity-card em {
  margin-top: 4px;
  color: #4f6f5f;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 700;
}

.activity-check {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: #e6f5ec;
  color: #357b57;
  font-size: 0.73rem;
  font-weight: 900;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 4;
  padding: 22px 0;
  background: var(--cream);
}

.trust-grid {
  display: grid;
  min-height: 92px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 18px 48px rgba(67, 47, 37, 0.08);
  grid-template-columns: minmax(190px, 1.35fr) repeat(4, minmax(0, 1fr));
}

.trust-grid p {
  padding: 0 24px 0 4px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.trust-grid > span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.35;
}

.trust-grid b,
.price-card li b,
.product-points b {
  color: var(--sage);
}

.trust-grid > span b {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(86, 116, 101, 0.13);
  font-size: 0.7rem;
}

/* Shared sections */
.section {
  position: relative;
  padding: 106px 0;
}

.section-heading h2,
.section-copy h2,
.product-copy h2,
.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.65rem, 4.25vw, 4.05rem);
  text-wrap: balance;
}

.section-heading > p:last-child,
.section-copy > p,
.product-copy > p,
.contact-copy > p {
  max-width: 630px;
  margin-top: 24px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.centered {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.centered > p:last-child {
  margin-inline: auto;
}

.section-kicker.light {
  color: #dca44e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.87rem;
  font-weight: 750;
}

/* Audience */
.audience {
  background: var(--paper-soft);
}

.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
}

.photo-composition {
  position: relative;
  min-height: 610px;
}

.photo {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: var(--cream-deep);
  box-shadow: var(--shadow-lg);
}

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

.photo-main {
  inset: 0 92px 94px 0;
}

.photo-main img {
  object-position: 54% center;
}

.photo-small {
  right: 0;
  bottom: 0;
  width: 51%;
  height: 42%;
  border: 8px solid var(--paper-soft);
  border-radius: 27px;
}

.photo-small img {
  object-position: 62% center;
}

.photo-note {
  position: absolute;
  bottom: 42px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow-sm);
}

.photo-note strong {
  color: var(--purple);
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

.photo-note span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.industry-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #51463f;
  font-size: 0.74rem;
  font-weight: 650;
}

/* Features */
.features {
  background: var(--cream);
}

.features-heading,
.process-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.62fr);
  gap: clamp(42px, 7vw, 92px);
}

.features-heading > p,
.process-heading > p {
  max-width: 470px;
  padding-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  overflow: hidden;
  margin-top: 56px;
  padding: 1px;
  border-radius: 30px;
  background: var(--line);
  box-shadow: 0 30px 80px rgba(67, 47, 37, 0.1);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}

.feature-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--purple), #b99efb);
  content: "";
  transition: transform 260ms ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-large {
  min-height: 320px;
  grid-column: auto;
  flex-direction: column;
  gap: 0;
}

.feature-wide {
  grid-column: auto;
}

.feature-dark {
  border-color: transparent;
  background: var(--plum);
  color: white;
}

.feature-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 0.66rem;
  font-weight: 850;
}

.feature-dark .feature-icon {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.feature-card h3 {
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.feature-large h3 {
  margin-top: 18px;
}

.feature-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.feature-dark p {
  color: rgba(255, 255, 255, 0.69);
}

.feature-ui {
  align-self: stretch;
  margin: auto 0 0;
}

.booking-slots {
  display: grid;
  width: 100%;
  gap: 6px;
}

.booking-slots div {
  display: grid;
  min-height: 43px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper-soft);
  grid-template-columns: auto 1fr auto;
  gap: 12px;
}

.booking-slots span {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 800;
}

.booking-slots b {
  font-size: 0.7rem;
}

.booking-slots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
}

.booking-slots i.free {
  background: var(--sage);
}

.message-bubble,
.client-mini {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper-soft);
}

.message-bubble > span,
.client-mini > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 0.68rem;
  font-weight: 850;
}

.message-bubble p,
.client-mini p {
  display: grid;
  margin: 0;
}

.message-bubble strong,
.client-mini strong {
  font-size: 0.7rem;
}

.message-bubble small,
.client-mini small {
  color: var(--ink-muted);
  font-size: 0.6rem;
}

.client-mini b {
  margin-left: auto;
  color: var(--purple);
}

.team-row {
  display: flex;
  margin-top: auto;
}

.team-row span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 4px solid var(--plum);
  border-radius: 50%;
  background: #6d4aba;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.team-row span + span {
  margin-left: -12px;
}

.team-row span:nth-child(2) { background: #95684d; }
.team-row span:nth-child(3) { background: #527b6b; }
.team-row span:nth-child(4) { background: rgba(255, 255, 255, 0.15); }

.palette {
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: auto;
}

.palette span {
  width: 23%;
  height: 42px;
  border-radius: 12px;
  background: var(--purple);
}

.palette span:nth-child(2) { height: 54px; background: var(--bronze); }
.palette span:nth-child(3) { height: 66px; background: #bda58e; }
.palette span:nth-child(4) { height: 78px; background: var(--plum); }

.bars {
  display: flex;
  height: 78px;
  align-items: end;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
  border-bottom: 1px solid var(--line);
}

.bars i {
  width: 100%;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, var(--purple), #a88cf7);
}

/* Process */
.process {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.process .section-heading {
  max-width: 760px;
}

.process-grid {
  display: grid;
  overflow: visible;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(67, 47, 37, 0.09);
  counter-reset: step;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 318px;
  padding: 32px;
  border: 0;
  background: var(--paper);
}

.process-card + .process-card {
  border-left: 1px solid var(--line);
}

.process-card:first-child {
  border-radius: 29px 0 0 29px;
}

.process-card:last-child {
  border-radius: 0 29px 29px 0;
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: -15px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--bronze);
  content: "→";
  font-size: 0.8rem;
  font-weight: 850;
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--bronze-soft);
  color: var(--bronze-dark);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-visual {
  display: grid;
  height: 118px;
  place-items: center;
  margin: 24px 0 22px;
  border: 1px solid rgba(154, 90, 37, 0.13);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--paper-soft), var(--bronze-soft));
}

.step-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.step-brand span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--purple);
  color: white;
  font-weight: 800;
}

.step-brand i {
  width: 28px;
  height: 28px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: #baa18d;
  box-shadow: 0 0 0 1px var(--line);
}

.step-brand i + i { margin-left: -15px; background: #708c7c; }

.step-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
}

.step-link span {
  overflow: hidden;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-link b {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  color: white;
}

.step-success {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-success span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #dfeee6;
  color: #35614d;
  font-size: 1.5rem;
  font-weight: 900;
}

.step-success b {
  margin-left: -10px;
  margin-top: -54px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  font-size: 0.65rem;
}

.process-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.process-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

/* Product showcase */
.product-section {
  padding: 18px 0 106px;
  background: var(--paper-soft);
}

.product-shell {
  display: grid;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  padding: 64px 0 64px 64px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 15%, rgba(119, 80, 247, 0.4), transparent 33%),
    radial-gradient(circle at 15% 90%, rgba(189, 122, 34, 0.15), transparent 32%),
    var(--plum);
  box-shadow: var(--shadow-lg);
  color: white;
  grid-template-columns: minmax(330px, 0.78fr) minmax(560px, 1.22fr);
  gap: 52px;
}

.product-copy {
  position: relative;
  z-index: 2;
}

.product-copy h2 em,
.contact-copy h2 em {
  color: #a889ff;
}

.product-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.product-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.product-points > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.product-points b {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #9ee1bd;
}

.product-copy .btn {
  margin-top: 34px;
}

.dashboard-preview {
  overflow: hidden;
  display: grid;
  min-height: 490px;
  border: 7px solid rgba(255, 255, 255, 0.14);
  border-right: 0;
  border-radius: 28px 0 0 28px;
  transform: perspective(1500px) rotateY(-5deg) translateX(18px);
  background: #f8f6f2;
  box-shadow: -32px 42px 80px rgba(8, 4, 17, 0.32);
  color: var(--ink);
  grid-template-columns: 62px 1fr;
}

.dash-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 20px 11px;
  background: #1c142b;
}

.dash-logo {
  width: 32px;
  height: 32px;
  margin-bottom: 13px;
  border-radius: 10px;
  font-size: 0.72rem;
}

.dash-sidebar i {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.dash-sidebar i.active {
  background: var(--purple);
}

.dash-main {
  padding: 24px;
}

.dash-top p {
  display: grid;
}

.dash-top small {
  color: var(--ink-muted);
  font-size: 0.58rem;
}

.dash-top strong {
  font-size: 0.92rem;
}

.dash-top > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 0.59rem;
  font-weight: 850;
}

.dash-stats {
  display: grid;
  margin-top: 25px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.dash-stats > div {
  display: grid;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.dash-stats small {
  color: var(--ink-muted);
  font-size: 0.52rem;
}

.dash-stats strong {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.dash-stats b {
  color: #347657;
  font-size: 0.5rem;
}

.dash-content {
  display: grid;
  margin-top: 10px;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 9px;
}

.dash-chart,
.dash-list {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.chart-head strong,
.dash-list > strong {
  font-size: 0.63rem;
}

.chart-head span {
  color: var(--ink-muted);
  font-size: 0.48rem;
}

.chart-lines {
  display: flex;
  height: 140px;
  align-items: end;
  gap: 8px;
  margin-top: 14px;
  padding: 0 8px;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 34px, rgba(36, 27, 23, 0.05) 35px);
}

.chart-lines i {
  width: 100%;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, var(--purple), #a98cff);
}

.dash-list > strong {
  display: block;
  margin-bottom: 10px;
}

.dash-list p {
  display: grid;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.dash-list span {
  color: var(--purple);
  font-size: 0.5rem;
  font-weight: 800;
}

.dash-list b {
  font-size: 0.56rem;
}

/* Pricing */
.pricing {
  background: var(--cream);
}

.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.billing-toggle {
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.7);
}

.billing-toggle button {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 750;
}

.billing-toggle button.active {
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  box-shadow: 0 8px 18px rgba(126, 68, 28, 0.2);
  color: white;
}

.billing-toggle b {
  padding: 3px 6px;
  border-radius: 999px;
  background: #e6f3eb;
  color: #2e6c4d;
  font-size: 0.57rem;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  margin-top: 60px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.48);
  box-shadow: 0 30px 80px rgba(67, 47, 37, 0.09);
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 34px;
  border: 0;
  border-radius: 22px;
  background: var(--paper);
}

.price-card.featured {
  z-index: 1;
  outline: 1px solid rgba(107, 59, 240, 0.45);
  background: linear-gradient(180deg, rgba(107, 59, 240, 0.09), var(--paper) 32%);
  box-shadow: 0 22px 55px rgba(89, 48, 201, 0.13);
}

.popular {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.plan-top p {
  min-height: 48px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 23px;
}

.amount {
  font-family: "Manrope", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  padding-bottom: 5px;
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.annual-note {
  min-height: 25px;
  margin-top: 7px;
  color: #397354;
  font-size: 0.65rem;
  font-weight: 700;
}

.btn-plan {
  width: 100%;
  margin-top: 16px;
  border-color: rgba(36, 27, 23, 0.25);
  background: rgba(255, 253, 249, 0.78);
  color: var(--ink);
}

.btn-plan.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #a76730, var(--bronze-dark));
  color: white;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.5;
}

.price-card li b {
  flex: 0 0 auto;
  font-weight: 900;
}

.pricing-footnote {
  margin-top: 22px;
  color: var(--ink-muted);
  text-align: center;
  font-size: 0.68rem;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.76fr 1.24fr;
}

.faq-layout .section-heading > p:not(.section-kicker) {
  max-width: 540px;
  margin-top: 32px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  content: "";
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 150ms ease;
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 620px;
  padding: 0 54px 25px 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.7;
}

/* Contact */
.contact {
  padding-top: 24px;
  background: var(--paper-soft);
}

.contact-card {
  display: grid;
  overflow: hidden;
  padding: 68px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 85%, rgba(189, 122, 34, 0.16), transparent 28%),
    radial-gradient(circle at 95% 0%, rgba(107, 59, 240, 0.28), transparent 33%),
    var(--plum);
  box-shadow: var(--shadow-lg);
  color: white;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 76px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-meta {
  display: grid;
  gap: 3px;
  margin-top: 31px;
}

.contact-meta span:first-child {
  color: white;
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-meta span:last-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.67rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.67rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.8rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input {
  height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px 13px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a88cff;
  background: rgba(255, 255, 255, 0.12);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(82, 150, 112, 0.18);
  color: #c4f0d6;
}

.form-status.error {
  background: rgba(190, 74, 74, 0.18);
  color: #ffd2d2;
}

/* Final CTA & footer */
.final-cta {
  padding: 35px 0 110px;
  background: var(--paper-soft);
}

.final-cta-inner {
  display: grid;
  align-items: center;
  padding: 47px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: auto 1fr auto;
  gap: 30px;
}

.final-mark {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 17px;
  box-shadow: 0 9px 18px rgba(90, 47, 232, 0.23);
  object-fit: contain;
}

.final-cta p {
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.final-cta h2 {
  margin-top: 9px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.foot-min {
  padding: 38px 0 20px;
  border-top: 1px solid var(--line);
  background: #ede3d7;
}

.foot-top {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.foot-logo img {
  width: 128px;
  height: auto;
}

.foot-brand p {
  max-width: 390px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.5;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 24px;
}

.foot-links a,
.foot-audiences a,
.foot-legal a,
.foot-cookie-link {
  width: fit-content;
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.foot-links a:hover,
.foot-audiences a:hover,
.foot-legal a:hover,
.foot-cookie-link:hover,
.foot-bottom a:hover {
  color: var(--purple);
}

.foot-links a {
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 750;
}

.foot-secondary {
  display: grid;
  align-items: center;
  margin-top: 26px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 36px;
}

.foot-audiences,
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
}

.foot-audiences span {
  color: var(--ink);
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.foot-legal {
  justify-content: flex-end;
}

.foot-cookie-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.73rem;
  line-height: inherit;
  text-align: left;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.65rem;
}

.foot-bottom a {
  color: var(--ink);
  font-weight: 700;
}

.foot-languages {
  display: flex;
  align-items: center;
  gap: 6px;
}

.foot-languages a {
  display: grid;
  min-width: 32px;
  min-height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.foot-languages a:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(560px, calc(100% - 48px));
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(154, 90, 37, 0.24);
  border-radius: 22px;
  opacity: 0;
  transform: translateY(25px);
  visibility: hidden;
  background:
    linear-gradient(120deg, rgba(243, 229, 215, 0.72), rgba(255, 253, 249, 0.98) 48%),
    var(--paper);
  box-shadow: 0 28px 80px rgba(57, 37, 28, 0.2);
  backdrop-filter: blur(16px);
  grid-template-columns: 1fr auto;
  gap: 20px;
  transition: 220ms ease;
}

.cookie-banner::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--bronze), var(--purple));
  content: "";
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie-banner strong {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.cookie-banner p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.55;
}

.cookie-banner p a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cookie-btn {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.9);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 750;
  transition: 160ms ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 90, 37, 0.38);
  background: var(--bronze-soft);
}

.cookie-btn.primary {
  border-color: var(--bronze);
  background: var(--bronze);
  color: white;
  box-shadow: 0 10px 24px rgba(154, 90, 37, 0.23);
}

.cookie-btn.primary:hover {
  border-color: var(--bronze-dark);
  background: var(--bronze-dark);
}

/* Product-led redesign */
.hero-system {
  position: relative;
  width: 100%;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% -10%, rgba(126, 84, 247, 0.42), transparent 42%),
    radial-gradient(circle at 0 100%, rgba(154, 90, 37, 0.2), transparent 34%),
    var(--plum);
  box-shadow: 0 38px 90px rgba(38, 24, 19, 0.2);
  color: white;
}

.hero-system::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  pointer-events: none;
}

.hero-system-top,
.hero-system-grid {
  position: relative;
  z-index: 1;
}

.hero-system-top {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-system-brand,
.hero-system-brand p,
.request-client,
.request-client p,
.schedule-result,
.schedule-result p,
.system-automation li,
.system-automation li p {
  display: flex;
}

.hero-system-brand {
  align-items: center;
  gap: 11px;
}

.hero-system-brand > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #8c6bff, #6335ea);
  box-shadow: 0 12px 25px rgba(13, 5, 29, 0.25);
  font-weight: 850;
}

.hero-system-brand p,
.request-client p,
.schedule-result p,
.system-automation li p {
  flex-direction: column;
}

.hero-system-brand small,
.request-client small,
.schedule-result small,
.system-automation small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.59rem;
}

.hero-system-brand strong { font-size: 0.78rem; }

.system-live {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(112, 210, 157, 0.13);
  color: #a8e3c2;
  font-size: 0.63rem;
  font-weight: 800;
}

.system-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6dd09b;
  box-shadow: 0 0 0 5px rgba(109, 208, 155, 0.1);
}

.hero-system-grid {
  display: grid;
  min-height: 425px;
  align-items: stretch;
  grid-template-columns: minmax(190px, 0.78fr) minmax(420px, 1.5fr) minmax(200px, 0.82fr);
}

.system-request,
.system-automation {
  padding: 30px;
}

.system-request { border-right: 1px solid rgba(255, 255, 255, 0.1); }
.system-automation { border-left: 1px solid rgba(255, 255, 255, 0.1); }

.system-number,
.advantage-index {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.09);
  color: #bba7ff;
  font-size: 0.63rem;
  font-weight: 850;
}

.system-label {
  margin-top: 32px;
  color: #d3c9ef;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-request h2 {
  margin-top: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.request-client {
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.request-client > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(130, 93, 246, 0.22);
  color: #cbbdff;
  font-size: 0.62rem;
  font-weight: 800;
}

.request-client strong { font-size: 0.7rem; }
.request-services { display: grid; gap: 7px; margin-top: 8px; }
.request-services > span { display: grid; align-items: center; padding: 10px 12px; border-radius: 11px; background: rgba(255, 255, 255, 0.06); grid-template-columns: auto 1fr auto; gap: 9px; }
.request-services i { width: 7px; height: 7px; border-radius: 50%; background: #8f6cff; }
.request-services > span:last-child i { background: #c47b3e; }
.request-services b { font-size: 0.67rem; }
.request-services small { color: rgba(255, 255, 255, 0.46); font-size: 0.57rem; }

.system-schedule {
  display: flex;
  align-self: center;
  flex-direction: column;
  margin: 28px;
  padding: 24px;
  border: 1px solid rgba(36, 27, 23, 0.1);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 28px 60px rgba(7, 3, 16, 0.3);
  color: var(--ink);
}

.schedule-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.schedule-head p { display: grid; }
.schedule-head small { color: var(--ink-muted); font-size: 0.58rem; }
.schedule-head strong { margin-top: 2px; font-size: 0.83rem; }
.schedule-head > span { padding: 6px 10px; border-radius: 999px; background: var(--purple-soft); color: var(--purple-dark); font-size: 0.63rem; font-weight: 800; }
.schedule-timeline { margin-top: 22px; }
.time-axis { display: grid; color: var(--ink-muted); font-size: 0.51rem; grid-template-columns: 1.25fr 0.42fr 0.85fr auto; }
.time-axis span:last-child { text-align: right; }
.timeline-track { display: grid; min-height: 105px; margin-top: 7px; grid-template-columns: 1.25fr 0.42fr 0.85fr; gap: 6px; }
.timeline-service { display: flex; min-width: 0; align-items: center; gap: 9px; padding: 13px; border-radius: 15px; }
.timeline-service > span { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 9px; color: white; font-size: 0.61rem; font-weight: 800; }
.timeline-service p { display: grid; min-width: 0; }
.timeline-service strong { overflow: hidden; font-size: 0.7rem; text-overflow: ellipsis; white-space: nowrap; }
.timeline-service small { margin-top: 2px; color: var(--ink-muted); font-size: 0.55rem; }
.timeline-purple { background: #f0ebff; }
.timeline-purple > span { background: var(--purple); }
.timeline-bronze { background: var(--bronze-soft); }
.timeline-bronze > span { background: var(--bronze); }
.timeline-buffer { display: grid; place-items: center; border: 1px dashed rgba(36, 27, 23, 0.18); border-radius: 13px; background: #f8f3ec; }
.timeline-buffer span { color: var(--ink-muted); font-size: 0.47rem; font-weight: 750; text-align: center; }
.schedule-result { align-items: center; gap: 10px; margin-top: 18px; padding: 13px; border-radius: 14px; background: #e8f3ed; }
.schedule-result > span { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #cfe8da; color: #35614d; font-weight: 900; }
.schedule-result strong { font-size: 0.69rem; }
.schedule-result small { color: #61766b; }

.system-automation ul { display: grid; gap: 9px; margin-top: 28px; list-style: none; }
.system-automation li { align-items: center; gap: 10px; padding: 13px; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 13px; background: rgba(255, 255, 255, 0.055); }
.system-automation li > span { display: grid; width: 29px; height: 29px; flex: 0 0 auto; place-items: center; border-radius: 9px; background: rgba(111, 205, 153, 0.13); color: #9cdeb9; font-size: 0.65rem; }
.system-automation strong { font-size: 0.66rem; }

.capabilities { overflow: hidden; background: var(--cream); }
.capabilities-head { max-width: 900px; }
.capabilities-head h2,
.automation-copy h2,
.growth-copy h2,
.brand-copy h2 { margin-top: 18px; font-family: "Manrope", sans-serif; font-size: clamp(2.8rem, 4.6vw, 4.55rem); font-weight: 750; letter-spacing: -0.065em; line-height: 0.98; text-wrap: balance; }
.capabilities-head > p:last-child { max-width: 680px; margin-top: 24px; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.advantage-stack { display: grid; gap: 28px; margin-top: 66px; }
.advantage-story { display: grid; min-height: 570px; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: var(--paper); box-shadow: 0 28px 75px rgba(67, 47, 37, 0.09); grid-template-columns: minmax(330px, 0.88fr) minmax(480px, 1.12fr); }
.advantage-copy { padding: 58px; }
.advantage-copy .advantage-index { background: var(--purple-soft); color: var(--purple-dark); }
.advantage-label { margin-top: 34px; color: var(--bronze); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.advantage-copy h3 { margin-top: 12px; font-family: "Manrope", sans-serif; font-size: clamp(2.4rem, 3.5vw, 3.55rem); letter-spacing: -0.06em; line-height: 1; }
.advantage-copy h3 em { color: var(--purple); font-style: normal; font-weight: 550; }
.advantage-copy > p:not(.advantage-label) { max-width: 480px; margin-top: 23px; color: var(--ink-soft); font-size: 0.91rem; line-height: 1.75; }
.advantage-list { display: grid; gap: 11px; margin-top: 28px; list-style: none; }
.advantage-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: 0.77rem; }
.advantage-list li > span:first-child { display: grid; width: 20px; height: 20px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #e3f0e9; color: #37624f; font-size: 0.59rem; font-weight: 900; }
.advantage-visual { min-width: 0; align-self: stretch; }
.multi-visual { display: grid; place-items: center; padding: 50px; background: linear-gradient(145deg, #ede6ff, #f6eee4); }
.multi-card { width: min(100%, 540px); padding: 28px; border: 1px solid rgba(36, 27, 23, 0.11); border-radius: 24px; background: rgba(255, 253, 249, 0.95); box-shadow: 0 28px 60px rgba(64, 43, 34, 0.16); }
.multi-card-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.multi-card-head p { display: grid; }
.multi-card-head small { color: var(--ink-muted); font-size: 0.59rem; }
.multi-card-head strong { font-size: 0.9rem; }
.multi-card-head > span { padding: 6px 9px; border-radius: 999px; background: #e6f3ec; color: #396650; font-size: 0.55rem; font-weight: 800; }
.multi-row { display: grid; align-items: center; padding: 20px 0; grid-template-columns: 47px 6px 1fr auto; gap: 13px; }
.multi-row time { color: var(--purple-dark); font-size: 0.72rem; font-weight: 850; }
.multi-row > i { width: 6px; height: 54px; border-radius: 999px; }
.multi-row > i.purple { background: linear-gradient(var(--purple), #a98cf9); }
.multi-row > i.bronze { background: linear-gradient(var(--bronze), #d9aa80); }
.multi-row p { display: grid; }
.multi-row strong { font-size: 0.85rem; }
.multi-row small { color: var(--ink-muted); font-size: 0.65rem; }
.multi-row > b { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; background: var(--paper-soft); color: var(--ink-muted); font-size: 0.55rem; }
.multi-gap { display: grid; align-items: center; grid-template-columns: 47px 1fr auto; gap: 13px; }
.multi-gap span,
.multi-gap small { color: var(--ink-muted); font-size: 0.54rem; }
.multi-gap i { height: 1px; background: var(--line); }
.multi-total { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.72rem; }
.multi-total span { color: var(--ink-muted); }

.advantage-team { border-color: rgba(255, 255, 255, 0.08); background: var(--plum); color: white; }
.advantage-team .advantage-copy { order: 2; }
.advantage-team .advantage-index { background: rgba(255, 255, 255, 0.1); color: #c8b9ff; }
.advantage-team .advantage-label { color: #dca44e; }
.advantage-team .advantage-copy h3 em { color: #a889ff; }
.advantage-team .advantage-copy > p:not(.advantage-label) { color: rgba(255, 255, 255, 0.68); }
.light-list li { color: rgba(255, 255, 255, 0.75); }
.panels-visual { display: grid; align-content: center; padding: 54px 0 54px 54px; background: radial-gradient(circle at 15% 20%, rgba(123, 83, 246, 0.38), transparent 42%); }
.panel-tabs { display: flex; width: fit-content; gap: 5px; margin: 0 0 13px 52px; padding: 5px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 999px; background: rgba(255, 255, 255, 0.06); }
.panel-tabs span { padding: 7px 14px; border-radius: 999px; color: rgba(255, 255, 255, 0.55); font-size: 0.6rem; font-weight: 750; }
.panel-tabs span.active { background: white; color: var(--plum); }
.panel-screen { display: grid; min-height: 345px; overflow: hidden; border: 6px solid rgba(255, 255, 255, 0.16); border-right: 0; border-radius: 25px 0 0 25px; background: var(--paper); box-shadow: 0 28px 70px rgba(5, 2, 14, 0.35); color: var(--ink); grid-template-columns: 54px 1fr; }
.panel-side { display: grid; align-content: start; justify-items: center; gap: 18px; padding: 17px 8px; background: #19102b; }
.panel-side > span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 9px; background: var(--purple); color: white; font-size: 0.62rem; font-weight: 850; }
.panel-side i { width: 23px; height: 23px; border-radius: 7px; background: rgba(255, 255, 255, 0.08); }
.panel-side i.active { background: var(--purple); }
.panel-content { padding: 23px; }
.panel-title { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.panel-title p { display: grid; }
.panel-title small { color: var(--ink-muted); font-size: 0.55rem; }
.panel-title strong { font-size: 0.82rem; }
.panel-title > span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: var(--purple-soft); color: var(--purple-dark); font-size: 0.55rem; font-weight: 850; }
.permission-row { display: grid; align-items: center; margin-top: 11px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; grid-template-columns: auto 1fr auto; gap: 10px; }
.permission-icon { display: grid; width: 33px; height: 33px; place-items: center; border-radius: 10px; background: var(--purple); color: white; font-size: 0.59rem; font-weight: 800; }
.permission-icon.bronze { background: var(--bronze); }
.permission-row p { display: grid; }
.permission-row strong { font-size: 0.68rem; }
.permission-row small { color: var(--ink-muted); font-size: 0.56rem; }
.permission-row > b { color: var(--sage); }
.panel-audit { display: grid; align-items: center; margin-top: 18px; padding-top: 15px; border-top: 1px dashed var(--line); grid-template-columns: auto 1fr; gap: 12px; }
.panel-audit > span { color: var(--purple); font-size: 0.6rem; font-weight: 800; }
.panel-audit p { display: grid; }
.panel-audit strong { font-size: 0.63rem; }
.panel-audit small { color: var(--ink-muted); font-size: 0.54rem; }

.waitlist-visual { display: grid; align-content: center; padding: 50px; background: radial-gradient(circle at 90% 10%, rgba(106, 58, 237, 0.18), transparent 38%), #eee3d6; }
.waitlist-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.waitlist-head p { display: grid; }
.waitlist-head small { color: var(--bronze); font-size: 0.58rem; font-weight: 850; letter-spacing: 0.1em; }
.waitlist-head strong { margin-top: 4px; font-size: 0.9rem; }
.waitlist-head > span { padding: 5px 9px; border-radius: 999px; background: var(--paper); color: var(--ink-muted); font-size: 0.58rem; font-weight: 800; }
.waitlist-flow { display: grid; }
.waitlist-flow > i { width: 1px; height: 22px; margin-left: 37px; background: var(--line); }
.flow-step { display: grid; align-items: center; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); box-shadow: var(--shadow-sm); grid-template-columns: 42px 1fr auto; gap: 12px; }
.flow-step > span { font-size: 0.63rem; font-weight: 850; }
.flow-step p { display: grid; }
.flow-step strong { font-size: 0.73rem; }
.flow-step small { color: var(--ink-muted); font-size: 0.58rem; }
.flow-step > b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; font-size: 0.68rem; }
.flow-step.cancelled { opacity: 0.62; }
.flow-step.cancelled > b { background: #f5e5e2; color: #a14a40; }
.flow-step.matched { border-color: rgba(107, 59, 240, 0.35); box-shadow: 0 12px 35px rgba(107, 59, 240, 0.12); }
.flow-step.matched > span { color: var(--purple); }
.flow-step.matched > b { background: var(--purple-soft); color: var(--purple); }
.flow-step.booked > b { background: #e1f0e8; color: #35614d; }

.automation { background: var(--plum); color: white; }
.automation::before { position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(124, 82, 247, 0.3), transparent 34%), radial-gradient(circle at 90% 90%, rgba(154, 90, 37, 0.18), transparent 30%); content: ""; pointer-events: none; }
.automation-layout { position: relative; display: grid; align-items: center; grid-template-columns: minmax(320px, 0.78fr) minmax(500px, 1.22fr); gap: 80px; }
.automation-copy > p:not(.section-kicker) { max-width: 500px; margin-top: 24px; color: rgba(255, 255, 255, 0.67); line-height: 1.75; }
.automation-copy h2 em { color: #a98cff; }
.automation-copy .btn { margin-top: 33px; }
.rule-ledger { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.rule-ledger article { display: grid; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); grid-template-columns: 46px 1fr auto; gap: 17px; }
.rule-ledger article > span { color: #a990ff; font-size: 0.65rem; font-weight: 850; }
.rule-ledger article p { display: grid; }
.rule-ledger article strong { font-family: "Manrope", sans-serif; font-size: 1.02rem; }
.rule-ledger article small { max-width: 440px; margin-top: 4px; color: rgba(255, 255, 255, 0.54); font-size: 0.7rem; line-height: 1.55; }
.rule-ledger article > b { padding: 6px 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.09); color: rgba(255, 255, 255, 0.68); font-size: 0.55rem; font-weight: 750; }

.growth-section { background: var(--paper-soft); }
.growth-layout { display: grid; align-items: center; grid-template-columns: minmax(470px, 1.05fr) minmax(360px, 0.95fr); gap: 88px; }
.growth-dashboard { position: relative; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--paper); box-shadow: var(--shadow-lg); }
.growth-dashboard::before { position: absolute; top: -130px; right: -120px; width: 310px; height: 310px; border-radius: 50%; background: radial-gradient(circle, rgba(107, 59, 240, 0.15), transparent 68%); content: ""; }
.growth-top { position: relative; display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.growth-top p { display: grid; }
.growth-top small { color: var(--bronze); font-size: 0.56rem; font-weight: 850; letter-spacing: 0.12em; }
.growth-top strong { font-size: 0.92rem; }
.growth-top > span { color: #357458; font-size: 0.7rem; font-weight: 850; }
.growth-metric { display: grid; padding: 28px 0 24px; grid-template-columns: 1fr auto; }
.growth-metric > span { color: var(--ink-muted); font-size: 0.67rem; grid-column: 1 / -1; }
.growth-metric > strong { margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 3.4rem; letter-spacing: -0.08em; line-height: 1; }
.growth-metric > div { align-self: end; width: 170px; height: 7px; margin-bottom: 8px; overflow: hidden; border-radius: 999px; background: var(--cream-deep); }
.growth-metric i { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--purple), #a68afb); }
.growth-client { display: grid; align-items: center; margin-top: 9px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-soft); grid-template-columns: auto 1fr auto; gap: 11px; }
.growth-client > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: var(--purple-soft); color: var(--purple-dark); font-size: 0.59rem; font-weight: 850; }
.growth-client:nth-of-type(4) > span { background: var(--bronze-soft); color: var(--bronze-dark); }
.growth-client p { display: grid; }
.growth-client strong { font-size: 0.68rem; }
.growth-client small { color: var(--ink-muted); font-size: 0.56rem; }
.growth-client > b { padding: 5px 8px; border-radius: 999px; background: #e4f0e9; color: #35614d; font-size: 0.53rem; }
.growth-bars { display: flex; height: 92px; align-items: end; gap: 8px; margin-top: 24px; padding-top: 14px; border-bottom: 1px solid var(--line); }
.growth-bars i { width: 100%; height: var(--h); border-radius: 6px 6px 0 0; background: linear-gradient(to top, var(--purple), #ad94fa); }
.growth-copy > p:not(.section-kicker) { margin-top: 24px; color: var(--ink-soft); line-height: 1.75; }
.growth-features { display: grid; margin-top: 30px; border-top: 1px solid var(--line); }
.growth-features > p { display: grid; padding: 18px 0; border-bottom: 1px solid var(--line); grid-template-columns: 42px 1fr; }
.growth-features > p > span { color: var(--purple); font-size: 0.65rem; font-weight: 850; grid-row: span 2; }
.growth-features strong { font-size: 0.82rem; }
.growth-features small { margin-top: 3px; color: var(--ink-muted); font-size: 0.68rem; }

.brand-section { padding-top: 30px; background: var(--paper-soft); }
.brand-layout { display: grid; min-height: 600px; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(135deg, #f2e7da, #ece5ff); box-shadow: var(--shadow-lg); grid-template-columns: minmax(350px, 0.86fr) minmax(520px, 1.14fr); }
.brand-copy { padding: 62px; }
.brand-copy > p:not(.section-kicker) { margin-top: 24px; color: var(--ink-soft); line-height: 1.75; }
.brand-points { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.brand-points span { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.76rem; }
.brand-points span::before { margin-right: 10px; color: var(--sage); content: "✓"; font-weight: 900; }
.brand-preview { align-self: end; margin: 56px 0 0; overflow: hidden; border: 7px solid rgba(255, 255, 255, 0.5); border-right: 0; border-bottom: 0; border-radius: 28px 0 0 0; background: var(--paper); box-shadow: -24px -12px 65px rgba(67, 47, 37, 0.16); }
.brand-browser { display: flex; min-height: 46px; align-items: center; gap: 6px; padding: 0 16px; border-bottom: 1px solid var(--line); background: #f4ede4; }
.brand-browser > span { width: 7px; height: 7px; border-radius: 50%; background: #c8b5a3; }
.brand-browser > span:nth-child(2) { background: #9f8065; }
.brand-browser > span:nth-child(3) { background: #8064cb; }
.brand-browser p { margin-left: 8px; padding: 5px 10px; border-radius: 999px; background: var(--paper); color: var(--ink-muted); font-size: 0.55rem; }
.brand-page { position: relative; min-height: 430px; padding: 58px 65px; background: radial-gradient(circle at 82% 18%, rgba(107, 59, 240, 0.12), transparent 32%), var(--paper); }
.brand-page-mark { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 15px; background: linear-gradient(135deg, #5a8473, #85a697); box-shadow: 0 15px 28px rgba(86, 116, 101, 0.25); color: white; font-family: "Manrope", sans-serif; font-weight: 850; }
.brand-page > p { display: grid; margin-top: 24px; }
.brand-page > p small { color: var(--bronze); font-size: 0.56rem; font-weight: 850; letter-spacing: 0.13em; }
.brand-page > p strong { margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 2rem; letter-spacing: -0.05em; }
.brand-page > p span { color: var(--ink-muted); font-size: 0.68rem; }
.brand-services { display: grid; gap: 8px; margin-top: 25px; }
.brand-services > span { display: grid; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: white; grid-template-columns: auto 1fr auto; gap: 10px; }
.brand-services i { width: 30px; height: 30px; border-radius: 9px; background: #6f927f; }
.brand-services > span:last-child i { background: #a96d3c; }
.brand-services b { font-size: 0.7rem; }
.brand-services small { color: var(--ink-muted); font-size: 0.56rem; }
.brand-languages { position: absolute; top: 24px; right: 26px; display: flex; gap: 4px; }
.brand-languages span { padding: 5px 8px; border-radius: 999px; color: var(--ink-muted); font-size: 0.53rem; font-weight: 800; }
.brand-languages span.active { background: var(--plum); color: white; }
.brand-palette { display: flex; gap: 7px; padding: 15px; border-top: 1px solid var(--line); background: var(--paper); }
.brand-palette span { width: 34px; height: 16px; border-radius: 999px; background: #6f927f; }
.brand-palette span:nth-child(2) { background: #9a5a25; }
.brand-palette span:nth-child(3) { background: #d3c1ae; }
.brand-palette span:nth-child(4) { background: var(--purple); }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in,
.marketing-ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

.bento-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2) { transition-delay: 70ms; }

.bento-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3) { transition-delay: 140ms; }

/* Large desktop hero: the opening composition and proof strip fill the first viewport. */
@media (min-width: 1200px) {
  .hero {
    display: grid;
    min-height: calc(100vh - 136px);
    min-height: calc(100svh - 136px);
    align-items: center;
    padding: 124px 0 58px;
  }

  .hero-grid {
    width: min(calc(100% - 64px), 1320px);
    grid-template-columns: minmax(0, 0.98fr) minmax(540px, 1.02fr);
    gap: clamp(64px, 5vw, 92px);
  }

  .trust-grid {
    width: min(calc(100% - 64px), 1320px);
    grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(0, 1fr));
  }

  .trust-grid p {
    padding-inline: 22px;
    text-align: center;
  }

  .trust-grid > span {
    justify-content: center;
    padding-inline: 18px;
  }

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

  .hero h1 {
    max-width: 720px;
    margin-top: 22px;
    font-size: clamp(4rem, 4.1vw, 4.85rem);
    line-height: 0.96;
  }

  .hero-lead {
    max-width: 650px;
    margin-top: 24px;
    font-size: 1.08rem;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-note {
    margin-top: 17px;
  }

  .hero-stats {
    margin-top: 32px;
    padding-top: 24px;
  }

  .hero-stats dt {
    font-size: 1.5rem;
  }

  .hero-stats dd {
    font-size: 0.71rem;
  }

  .hero-photo {
    aspect-ratio: 1.16;
  }
}

@media (min-width: 1800px) and (min-height: 1050px) {
  .hero-grid {
    width: min(calc(100% - 96px), 1440px);
    grid-template-columns: minmax(0, 0.96fr) minmax(650px, 1.04fr);
    gap: clamp(76px, 5vw, 112px);
  }

  .trust-grid {
    width: min(calc(100% - 96px), 1440px);
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4.85rem, 4.15vw, 5.5rem);
  }

  .hero-photo {
    aspect-ratio: 1.08;
  }
}

/* Responsive */
@media (max-width: 1120px) {
  .nav { gap: 24px; }
  .nav-links a { padding-inline: 10px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(370px, 0.98fr);
    gap: 38px;
  }
  .hero h1 { font-size: clamp(3.05rem, 5.1vw, 3.65rem); }
  .hero-product {
    padding-inline: 28px;
    grid-template-columns: minmax(170px, 0.72fr) minmax(370px, 1.2fr) minmax(170px, 0.72fr);
    gap: 20px;
  }
  .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-grid p {
    display: block;
    grid-column: 1 / -1;
    margin-bottom: 4px;
    padding: 0 4px 13px;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > span:nth-child(2) { border-left: 0; }
  .product-shell { padding-left: 48px; grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1.25fr); }
  .contact-card { gap: 45px; padding: 54px; }
}

@media (max-width: 920px) {
  .nav-links,
  .login,
  .cta-desktop { display: none; }
  .nav-right { margin-left: auto; }
  .hamburger { display: grid; }
  .mobile-menu { display: block; }
  body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .hero { padding: 112px 0 48px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }
  .hero .eyebrow,
  .hero-actions,
  .hero-note { justify-content: center; }
  .hero h1,
  .hero-lead { margin-inline: auto; }
  .hero-photo {
    width: min(720px, 100%);
    aspect-ratio: 1.48;
    justify-self: center;
  }
  .hero-product {
    width: min(650px, 100%);
    min-height: auto;
    justify-self: center;
    margin-top: 44px;
    padding: 34px;
    grid-template-columns: minmax(0, 430px);
    justify-content: center;
  }
  .hero-day-panel,
  .hero-activity-panel { display: none; }
  .trust-grid { min-height: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid > span { min-height: 54px; padding: 0 14px; }
  .trust-grid > span:nth-child(4) { border-left: 0; }
  .trust-grid > span:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .section { padding: 96px 0; }
  .split-layout { grid-template-columns: 1fr; }
  .photo-composition { width: min(100%, 650px); min-height: 570px; }
  .section-copy { max-width: 680px; }
  .features-heading,
  .process-heading { grid-template-columns: 1fr; gap: 24px; }
  .features-heading > p,
  .process-heading > p { max-width: 620px; padding-bottom: 0; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .feature-large,
  .feature-wide { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { display: grid; min-height: auto; align-items: center; grid-template-columns: auto 190px 1fr; gap: 22px; }
  .process-card + .process-card { border-top: 1px solid var(--line); border-left: 0; }
  .process-card:first-child { border-radius: 29px 29px 0 0; }
  .process-card:last-child { border-radius: 0 0 29px 29px; }
  .process-card:not(:last-child)::after { top: auto; right: 32px; bottom: -15px; content: "↓"; }
  .step-visual { width: 190px; height: 130px; margin: 0; grid-row: span 2; }
  .process-card h3 { align-self: end; }
  .process-card p { align-self: start; }
  .product-section { padding-top: 10px; }
  .product-shell { padding: 64px 0 0; grid-template-columns: 1fr; }
  .product-copy { max-width: 650px; padding: 0 54px; }
  .dashboard-preview { width: calc(100% - 50px); margin-left: 50px; transform: none; }
  .pricing-head { align-items: start; flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .faq-layout { gap: 60px; grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-copy { max-width: 650px; }
  .final-cta-inner { grid-template-columns: auto 1fr; }
  .final-cta .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site { height: 70px; }
  .logo-img { width: 120px; }
  .nav { gap: 12px; }
  .nav-right { gap: 8px; }
  .lang { height: 40px; }
  .hero { padding: 96px 0 36px; background-size: 32px 32px; }
  .hero-grid { gap: 28px; }
  .hero-copy { text-align: left; }
  .hero .eyebrow,
  .hero-actions,
  .hero-note { justify-content: flex-start; }
  .hero .eyebrow { font-size: 0.65rem; letter-spacing: 0.13em; }
  .hero h1 { margin: 15px 0 0; font-size: clamp(2.35rem, 10.5vw, 2.95rem); line-height: 0.99; }
  .hero-lead { margin-top: 16px; font-size: 0.94rem; line-height: 1.55; }
  .hero-actions { display: grid; margin-top: 22px; }
  .hero-actions .btn { width: 100%; }
  .hero-note { align-items: flex-start; margin-top: 12px; font-size: 0.7rem; text-align: left; }
  .hero-stats { margin-top: 20px; padding-top: 18px; }
  .hero-stats > div + div { padding-left: 10px; }
  .hero-stats > div:not(:last-child) { padding-right: 10px; }
  .hero-stats dt { font-size: 1.1rem; }
  .hero-stats dd { font-size: 0.58rem; }
  .hero-photo {
    aspect-ratio: 1.52;
  }
  .hero-photo::before {
    right: -9px;
    bottom: -9px;
    border-radius: 25px;
  }
  .hero-photo img { border-radius: 25px; }
  .hero-photo-status {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    max-width: calc(100% - 28px);
    padding: 10px 14px;
    border-radius: 15px;
  }
  .hero-photo-status strong { font-size: 0.74rem; }
  .hero-product { width: 100%; margin-top: 38px; padding: 18px; border-radius: 25px; }
  .hero-copy,
  .hero-product { width: 100%; }
  .app-window { width: 100%; margin: 0 auto; padding: 14px; border-radius: 22px; }
  .float-card { display: none; }
  .trust-strip { padding: 17px 0; }
  .trust-grid { padding: 15px; border-radius: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid p { margin-bottom: 3px; padding: 0 2px 13px; font-size: 0.82rem; }
  .trust-grid > span { min-height: 58px; padding: 7px 10px; font-size: 0.66rem; }
  .trust-grid > span b { width: 20px; height: 20px; flex-basis: 20px; }
  .section { padding: 80px 0; }
  .section-heading h2,
  .section-copy h2,
  .product-copy h2,
  .contact-copy h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .photo-composition { min-height: 420px; }
  .photo-main { inset: 0 38px 65px 0; }
  .photo-small { width: 48%; height: 40%; border-width: 5px; }
  .photo-note { bottom: 16px; left: -5px; }
  .bento-grid { margin-top: 45px; grid-template-columns: 1fr; }
  .feature-large,
  .feature-wide { grid-column: span 1; }
  .feature-card,
  .feature-large { min-height: 310px; flex-direction: column; }
  .booking-slots { width: 100%; margin-top: auto; }
  .process-grid { margin-top: 42px; }
  .process-card { display: block; padding: 24px; }
  .step-visual { width: 100%; height: 138px; margin: 20px 0 24px; }
  .product-shell { width: calc(100% - 20px); padding-top: 48px; border-radius: 26px; }
  .product-copy { padding: 0 26px; }
  .dashboard-preview { width: calc(100% - 18px); min-height: 380px; margin: 15px 0 0 18px; border-radius: 20px 0 0 0; grid-template-columns: 42px 1fr; }
  .dash-sidebar { padding: 14px 6px; }
  .dash-sidebar i { width: 22px; height: 22px; }
  .dash-main { padding: 15px; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .dash-stats > div:last-child { display: none; }
  .dash-content { grid-template-columns: 1fr; }
  .dash-list { display: none; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { width: 50%; justify-content: center; }
  .pricing-grid { margin-top: 40px; }
  .price-card { padding: 26px; }
  .faq-list summary { min-height: 70px; font-size: 0.92rem; }
  .contact { padding-top: 10px; }
  .contact-card { width: calc(100% - 20px); padding: 42px 22px; border-radius: 26px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
  .final-cta { padding-bottom: 80px; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta .btn { width: 100%; grid-column: auto; }
  .foot-min { padding-top: 24px; }
  .foot-brand p { display: none; }
  .foot-top { min-height: 0; align-items: flex-start; flex-direction: column; gap: 16px; }
  .foot-links { justify-content: flex-start; gap: 6px 16px; }
  .foot-secondary { margin-top: 18px; padding-block: 12px; grid-template-columns: 1fr; gap: 10px; }
  .foot-audiences { gap: 4px 11px; }
  .foot-legal { justify-content: flex-start; gap: 4px 11px; }
  .foot-bottom { align-items: flex-start; flex-direction: column; padding-top: 12px; gap: 4px; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { width: 50%; }
}

@media (max-width: 1120px) {
  .hero-system-grid { grid-template-columns: minmax(175px, 0.68fr) minmax(390px, 1.4fr) minmax(180px, 0.72fr); }
  .system-request,
  .system-automation { padding: 24px; }
  .system-schedule { margin-inline: 20px; }
  .advantage-copy { padding: 46px; }
  .multi-visual,
  .waitlist-visual { padding: 38px; }
  .automation-layout { gap: 55px; }
  .growth-layout { gap: 58px; }
  .brand-copy { padding: 48px; }
}

@media (max-width: 920px) {
  .hero-system { width: min(720px, 100%); justify-self: center; }
  .hero-system-grid { grid-template-columns: 1fr; }
  .system-request,
  .system-automation { display: none; }
  .system-schedule { margin: 28px; }
  .advantage-story,
  .automation-layout,
  .growth-layout,
  .brand-layout { grid-template-columns: 1fr; }
  .advantage-story { min-height: 0; }
  .advantage-team .advantage-copy { order: 0; }
  .advantage-visual { min-height: 470px; }
  .panels-visual { padding-top: 20px; }
  .automation-layout { gap: 56px; }
  .growth-copy { order: -1; }
  .brand-preview { width: calc(100% - 48px); margin-left: 48px; }
}

@media (max-width: 680px) {
  .hero-system { margin-top: 38px; border-radius: 25px; }
  .hero-system-top { min-height: 68px; padding: 0 17px; }
  .hero-system-brand > span { width: 33px; height: 33px; }
  .system-live span { display: none; }
  .system-live { width: 30px; height: 30px; justify-content: center; padding: 0; }
  .system-schedule { margin: 14px; padding: 17px; border-radius: 18px; }
  .schedule-head { align-items: flex-start; flex-direction: column; gap: 9px; }
  .schedule-head > span { align-self: flex-start; }
  .timeline-track { min-height: 88px; grid-template-columns: 1.22fr 0.35fr 0.9fr; }
  .timeline-service { align-items: flex-start; flex-direction: column; padding: 10px; gap: 6px; }
  .timeline-service > span { width: 25px; height: 25px; }
  .timeline-service small { display: none; }
  .timeline-buffer span { font-size: 0; }
  .timeline-buffer span::after { content: "+10"; font-size: 0.45rem; }
  .schedule-result { align-items: flex-start; }
  .hero-stats dt { font-size: 0.98rem; }
  .capabilities-head h2,
  .automation-copy h2,
  .growth-copy h2,
  .brand-copy h2 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .advantage-stack { gap: 18px; margin-top: 44px; }
  .advantage-story { border-radius: 25px; }
  .advantage-copy { padding: 34px 24px; }
  .advantage-copy h3 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .advantage-visual { min-height: auto; }
  .multi-visual,
  .waitlist-visual { padding: 24px 14px; }
  .multi-card { padding: 19px; border-radius: 18px; }
  .multi-card-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .multi-row { grid-template-columns: 40px 5px 1fr; }
  .multi-row > b { display: none; }
  .multi-gap { grid-template-columns: 40px 1fr auto; }
  .panels-visual { min-height: 380px; padding: 28px 0 28px 14px; }
  .panel-tabs { margin-left: 20px; }
  .panel-screen { min-height: 320px; border-width: 4px; grid-template-columns: 42px 1fr; }
  .panel-side { gap: 14px; padding-inline: 5px; }
  .panel-content { padding: 15px; }
  .permission-row { padding: 10px; }
  .permission-row small { display: none; }
  .panel-audit { grid-template-columns: 1fr; }
  .panel-audit > span { display: none; }
  .waitlist-head { align-items: flex-start; }
  .flow-step { padding: 13px; grid-template-columns: 36px 1fr auto; }
  .automation-layout { gap: 44px; }
  .rule-ledger article { align-items: start; padding-block: 21px; grid-template-columns: 32px 1fr; }
  .rule-ledger article > b { display: none; }
  .growth-dashboard { padding: 22px; border-radius: 23px; }
  .growth-metric > strong { font-size: 2.8rem; }
  .growth-metric > div { width: 120px; }
  .growth-client { grid-template-columns: auto 1fr; }
  .growth-client > b { display: none; }
  .brand-section { padding-top: 10px; }
  .brand-layout { width: calc(100% - 20px); border-radius: 26px; }
  .brand-copy { padding: 40px 24px; }
  .brand-preview { width: calc(100% - 18px); margin: 0 0 0 18px; border-width: 5px; }
  .brand-page { min-height: 390px; padding: 46px 25px; }
}

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

/* Premium prikaz djelatnosti na početnoj. */
.industry-showcase {
  padding-top: clamp(24px, 4vw, 54px);
}

.industry-showcase-shell {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 6vw, 82px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 8% 12%, rgba(132, 87, 255, 0.24), transparent 32%),
    radial-gradient(circle at 93% 88%, rgba(191, 129, 67, 0.2), transparent 30%),
    linear-gradient(145deg, #17111f 0%, #24172f 54%, #18121f 100%);
  box-shadow: 0 34px 80px rgba(36, 23, 47, 0.2);
}

.industry-showcase-shell::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 74%, rgba(255, 255, 255, 0.05));
  content: "";
  pointer-events: none;
}

.industry-showcase-orb {
  position: absolute;
  z-index: -1;
  width: clamp(180px, 24vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(7px);
  opacity: 0.44;
  pointer-events: none;
  animation: industry-orb-drift 11s ease-in-out infinite alternate;
}

.industry-showcase-orb-one {
  top: -15%;
  right: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(165, 133, 255, 0.78), rgba(101, 53, 220, 0.08) 72%);
}

.industry-showcase-orb-two {
  bottom: -20%;
  left: 22%;
  background: radial-gradient(circle at 35% 35%, rgba(218, 161, 93, 0.62), rgba(191, 129, 67, 0.04) 70%);
  animation-delay: -5s;
  animation-direction: alternate-reverse;
}

.industry-showcase-heading {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.industry-showcase-heading .section-kicker {
  color: #d8ad6d;
}

.industry-showcase-heading h2 {
  max-width: 820px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.industry-showcase-heading h2 em {
  color: #a888ff;
}

.industry-showcase-heading > p:last-child {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}

.industry-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 5vw, 58px);
}

.industry-card {
  position: relative;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #241c2c;
  box-shadow: 0 16px 34px rgba(7, 4, 10, 0.2);
  color: #fff;
  text-decoration: none;
  transform-origin: center bottom;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 280ms ease, box-shadow 280ms ease;
}

.industry-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 32%, transparent 70%, rgba(168, 136, 255, 0.16));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.industry-card-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.industry-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 8, 17, 0.02) 12%, rgba(13, 8, 17, 0.25) 44%, rgba(13, 8, 17, 0.96) 100%);
  content: "";
}

.industry-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.industry-card-content {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 7px 14px;
  padding: 22px;
}

.industry-card-index {
  grid-column: 1 / -1;
  width: max-content;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  background: rgba(18, 12, 24, 0.46);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  backdrop-filter: blur(9px);
}

.industry-card-content strong {
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
}

.industry-card-content > span:not(.industry-card-index) {
  grid-column: 1 / -1;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.5;
}

.industry-card-content b {
  grid-column: 2;
  grid-row: 2;
  color: #c2adff;
  font-size: 1.08rem;
  transition: transform 220ms ease;
}

.industry-card:hover,
.industry-card:focus-visible {
  z-index: 2;
  border-color: rgba(197, 176, 255, 0.5);
  box-shadow: 0 24px 52px rgba(7, 4, 10, 0.36);
  transform: translateY(-7px);
}

.industry-card:focus-visible {
  outline: 3px solid rgba(196, 173, 255, 0.72);
  outline-offset: 4px;
}

.industry-card:hover::after,
.industry-card:focus-visible::after {
  opacity: 1;
}

.industry-card:hover .industry-card-media img,
.industry-card:focus-visible .industry-card-media img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.075);
}

.industry-card:hover .industry-card-content b,
.industry-card:focus-visible .industry-card-content b {
  transform: translate(3px, -3px);
}

.industry-showcase-grid .industry-card:nth-child(2) { transition-delay: 45ms; }
.industry-showcase-grid .industry-card:nth-child(3) { transition-delay: 90ms; }
.industry-showcase-grid .industry-card:nth-child(4) { transition-delay: 135ms; }
.industry-showcase-grid .industry-card:nth-child(5) { transition-delay: 60ms; }
.industry-showcase-grid .industry-card:nth-child(6) { transition-delay: 105ms; }
.industry-showcase-grid .industry-card:nth-child(7) { transition-delay: 150ms; }
.industry-showcase-grid .industry-card:nth-child(8) { transition-delay: 195ms; }

@keyframes industry-orb-drift {
  from { transform: translate3d(-24px, -14px, 0) scale(0.92); }
  to { transform: translate3d(34px, 28px, 0) scale(1.08); }
}

@media (max-width: 1080px) {
  .industry-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-card {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .industry-showcase > .container {
    width: calc(100% - 22px);
  }

  .industry-showcase-shell {
    padding: 42px 14px 14px;
    border-radius: 28px;
  }

  .industry-showcase-heading {
    padding-inline: 10px;
  }

  .industry-showcase-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .industry-showcase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .industry-card {
    min-height: min(112vw, 410px);
    border-radius: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-showcase-orb {
    animation: none;
  }

  .industry-showcase-grid .industry-card {
    transition-delay: 0ms;
  }
}

/* Dinamičke kartice zadnjih blog članaka na početnoj. */
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.home-blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 59, 240, 0.32);
  box-shadow: var(--shadow-lg);
}

.home-blog-card:focus-visible {
  outline: 3px solid rgba(107, 59, 240, 0.35);
  outline-offset: 3px;
}

.home-blog-card-cover {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-soft), var(--bronze-soft));
}

.home-blog-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.home-blog-card:hover .home-blog-card-cover img {
  transform: scale(1.035);
}

.home-blog-card-mark {
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--purple);
  opacity: 0.55;
}

.home-blog-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-height: 250px;
  padding: 22px 24px 24px;
}

.home-blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  min-height: 25px;
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--ink-muted);
}

.home-blog-card-category {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 0.66rem;
  font-weight: 800;
}

.home-blog-card h3 {
  margin: 0;
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 1.04rem;
  line-height: 1.42;
  color: var(--ink);
}

.home-blog-card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.home-blog-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
}

.home-blog-card-link b {
  color: var(--purple);
  transition: transform 180ms ease;
}

.home-blog-card:hover .home-blog-card-link b {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-blog-card-body {
    min-height: 0;
    padding: 20px 20px 22px;
  }
}
