:root {
  --navy: #081225;
  --navy-soft: #102345;
  --blue: #1158ff;
  --blue-strong: #0a39cc;
  --blue-bright: #4ea2ff;
  --ice: #eff5ff;
  --mist: #dbe8ff;
  --paper: #f8fbff;
  --text: #16243f;
  --muted: #60708f;
  --border: rgba(17, 88, 255, 0.14);
  --border-strong: rgba(17, 88, 255, 0.24);
  --white: #ffffff;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --shadow-sm: 0 16px 40px rgba(8, 18, 37, 0.08);
  --shadow-md: 0 24px 64px rgba(8, 18, 37, 0.12);
  --shadow-lg: 0 30px 90px rgba(8, 18, 37, 0.16);
  --glass: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-head: "DM Sans", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(78, 162, 255, 0.26), transparent 32%),
    radial-gradient(circle at right 15%, rgba(17, 88, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #f4f8ff 0%, #f8fbff 24%, #f1f6ff 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
}

body::before {
  top: -10rem;
  left: -8rem;
  background: rgba(78, 162, 255, 0.65);
}

body::after {
  right: -8rem;
  bottom: -12rem;
  background: rgba(17, 88, 255, 0.45);
}

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

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

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(8, 18, 37, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(17,88,255,0.08);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(17,88,255,0.08);
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 100%);
  box-shadow: 0 18px 36px rgba(17, 88, 255, 0.26);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 88, 255, 0.16);
  box-shadow: 0 10px 26px rgba(8, 18, 37, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ticker-wrap {
  margin: 6.3rem auto 0;
  width: min(1180px, calc(100% - 2.5rem));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ticker {
  display: inline-flex;
  gap: 2rem;
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

.ticker span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-soft);
}

.ticker .dot {
  color: rgba(17, 88, 255, 0.48);
}

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

.hero {
  position: relative;
  padding: 3.4rem 0 4.5rem;
}

.hero-shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 2.6rem;
  align-items: stretch;
}

.hero-inner,
.hero-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.62);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-inner {
  padding: 4.25rem clamp(1.5rem, 3vw, 3.25rem);
  overflow: hidden;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: auto auto -8rem -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 162, 255, 0.36), transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 88, 255, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 0 0 0.25rem rgba(17, 88, 255, 0.12);
}

.hero-headline {
  margin-top: 1.35rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.hero-headline .accent {
  color: var(--blue);
}

.hero-sub {
  max-width: 36rem;
  margin-top: 1.35rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.trust-line {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(17,88,255,0.12);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-proof {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-proof-card {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid rgba(17, 88, 255, 0.12);
  box-shadow: 0 12px 30px rgba(8, 18, 37, 0.08);
}

.hero-proof-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-proof-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero-visual {
  min-height: 43rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(88, 167, 255, 0.52), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.86) 0%, rgba(222,235,255,0.72) 45%, rgba(233,240,255,0.6) 100%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 4% auto auto;
  width: 46%;
  height: 36%;
  border-radius: 2rem 2rem 0 0;
  background: linear-gradient(180deg, rgba(17, 88, 255, 0.2), rgba(17, 88, 255, 0.02));
  transform: skewX(-18deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: -12%;
  right: 12%;
  bottom: 12%;
  height: 28%;
  border-radius: 3rem;
  background: linear-gradient(130deg, rgba(255,255,255,0.52), rgba(17,88,255,0.16));
  transform: rotate(-20deg);
}

.hero-visual-panel {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.52);
  background: linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0.12));
  box-shadow: 0 18px 46px rgba(8, 18, 37, 0.12);
}

.hero-visual-panel-back {
  top: 10%;
  right: 14%;
  width: 34%;
  height: 30%;
  border-radius: 2rem 2rem 0 2rem;
}

.hero-visual-panel-mid {
  bottom: 14%;
  left: 6%;
  width: 48%;
  height: 28%;
  border-radius: 2rem;
  transform: skewX(-22deg);
}

.hero-visual-panel-front {
  right: 10%;
  bottom: -2%;
  width: 34%;
  height: 38%;
  border-radius: 2rem 2rem 0 0;
}

.hero-arch {
  position: absolute;
  right: 20%;
  bottom: 9%;
  width: 44%;
  aspect-ratio: 0.72;
  border-radius: 16rem 16rem 0 0;
  background: linear-gradient(180deg, var(--blue-bright) 0%, var(--blue) 55%, #061c96 100%);
  box-shadow:
    inset 0 -18px 24px rgba(6, 28, 150, 0.38),
    inset 14px 0 22px rgba(255,255,255,0.18),
    0 26px 54px rgba(17, 88, 255, 0.28);
}

.hero-arch::before {
  content: "";
  position: absolute;
  inset: 20% 18% 0;
  border-radius: 10rem 10rem 0 0;
  background: linear-gradient(180deg, rgba(8,18,37,0.64), rgba(8,18,37,0.92));
}

.hero-visual-copy {
  position: absolute;
  top: 12%;
  left: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.hero-visual-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(8, 18, 37, 0.86);
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-visual-kicker::before,
.hero-visual-kicker::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: rgba(255,255,255,0.86);
}

.hero-visual-copy strong {
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(11,66,214,0.94), rgba(8,40,140,0.9));
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  box-shadow: 0 18px 44px rgba(8, 40, 140, 0.28);
}

.hero-visual-copy span:last-child {
  color: rgba(8, 18, 37, 0.78);
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-number {
  display: none;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section-light,
.section-gray,
.section-lime,
.section-dark {
  background: transparent;
}

.section-gray::before,
.section-light::before,
.section-lime::before,
.section-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-gray::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(221,233,255,0.22));
}

.section-light::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.5));
}

.section-lime::before {
  background: linear-gradient(180deg, rgba(230,240,255,0.22), rgba(255,255,255,0.08));
}

.section-navy {
  background:
    radial-gradient(circle at top left, rgba(78,162,255,0.18), transparent 24%),
    linear-gradient(180deg, #09152b 0%, #081225 100%);
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--blue-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(17,88,255,0.34);
}

.section-headline {
  max-width: 13ch;
  margin-bottom: 1.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.section-headline em {
  font-style: normal;
  color: var(--blue);
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-navy .section-label {
  color: #9dc5ff;
}

.section-navy .section-label::before {
  background: rgba(157, 197, 255, 0.42);
}

.section-navy .section-headline,
.section-navy .section-intro {
  color: var(--white);
}

.section-navy .section-intro {
  color: rgba(255,255,255,0.72);
}

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

.problem-card,
.why-item,
.case,
.pricing-card,
.pricing-side,
.contact-form {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.66);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.problem-card,
.why-item {
  padding: 1.8rem;
}

.problem-card:hover,
.why-item:hover,
.case:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
  box-shadow: 0 28px 70px rgba(8, 18, 37, 0.16);
}

.problem-icon,
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(17,88,255,0.14), rgba(78,162,255,0.24));
  color: var(--blue-strong);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-card h3,
.step-content h3,
.case-title,
.pricing-card h3,
.pricing-side h3,
.why-item h3 {
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.problem-card h3,
.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.problem-card p,
.why-item p,
.case-body,
.step-content p,
.pricing-side p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.64);
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}

.case {
  padding: 2.5rem;
  margin-bottom: 1.3rem;
}

.case:last-child {
  margin-bottom: 0;
}

.case-divider {
  display: none;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(17,88,255,0.12);
  background: rgba(17,88,255,0.08);
  color: var(--blue-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.case-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 1.8rem;
}

.case-proof-card {
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(233,243,255,0.74));
  border: 1px solid rgba(17,88,255,0.12);
  box-shadow: var(--shadow-sm);
}

.case-proof-label,
.contact-trust-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-proof-label::before,
.contact-trust-kicker::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.case-proof-card strong {
  display: block;
  margin-top: 0.75rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.02rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.case-showcase {
  margin: 1.45rem 0 1.75rem;
}

.showcase-browser {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(17, 88, 255, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(233,243,255,0.82));
  box-shadow: 0 26px 70px rgba(8, 18, 37, 0.16);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.case-showcase:hover .showcase-browser {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 34px 86px rgba(8, 18, 37, 0.2);
}

.showcase-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.15rem 0.8rem;
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(17, 88, 255, 0.08);
}

.showcase-chrome span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(17, 88, 255, 0.22);
}

.showcase-screen {
  padding: 1.25rem;
}

.showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-kicker::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.showcase-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.showcase-pill-muted {
  background: rgba(255,255,255,0.84);
  color: #4f3f2b;
  border: 1px solid rgba(88, 64, 28, 0.14);
}

.craft-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  align-items: center;
  color: #5c4735;
  font-size: 0.83rem;
}

.craft-nav strong {
  margin-right: auto;
  color: #2f231a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.craft-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.85fr);
  gap: 1.2rem;
  margin-top: 1.1rem;
}

.craft-copy {
  padding: 1.5rem;
  border-radius: 26px;
  background: linear-gradient(160deg, #f8f1e8 0%, #efe4d3 100%);
  color: #4b3929;
}

.craft-copy h4,
.salon-side h4 {
  margin-top: 0.8rem;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.craft-copy p,
.salon-side p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.craft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.craft-visual {
  position: relative;
  min-height: 15.5rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0)),
    linear-gradient(145deg, #6c5239 0%, #ad835c 42%, #e4c59a 100%);
  overflow: hidden;
}

.craft-cabinet,
.craft-drawing-card,
.craft-square,
.craft-board-stack,
.craft-tape,
.craft-toolline {
  position: absolute;
}

.craft-cabinet {
  inset: 12% 16% 16% 16%;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24), transparent 24%),
    linear-gradient(145deg, #f4e1c2 0%, #d6b183 42%, #92653d 100%);
  box-shadow: 0 18px 36px rgba(48, 32, 16, 0.2);
  overflow: hidden;
}

.craft-cabinet-top,
.craft-cabinet-door,
.craft-cabinet-shelf,
.craft-cabinet-drawer {
  position: absolute;
  display: block;
  background: rgba(76, 47, 20, 0.18);
}

.craft-cabinet-top {
  left: 0;
  right: 0;
  top: 12%;
  height: 9%;
  background: rgba(255,255,255,0.22);
}

.craft-cabinet-door {
  top: 24%;
  bottom: 16%;
  width: 28%;
  border-radius: 16px;
  background: rgba(110, 71, 35, 0.28);
}

.craft-cabinet-door-left {
  left: 14%;
}

.craft-cabinet-door-right {
  right: 14%;
}

.craft-cabinet-shelf {
  left: 44%;
  width: 16%;
  height: 4%;
  border-radius: 999px;
  background: rgba(87, 60, 28, 0.32);
}

.craft-cabinet-shelf-top {
  top: 36%;
}

.craft-cabinet-shelf-mid {
  top: 54%;
}

.craft-cabinet-drawer {
  left: 18%;
  right: 18%;
  bottom: 8%;
  height: 10%;
  border-radius: 14px;
  background: rgba(87, 60, 28, 0.24);
}

.craft-drawing-card {
  top: 10%;
  right: 4%;
  width: 33%;
  height: 42%;
  border-radius: 22px;
  transform: rotate(8deg);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(244,232,214,0.76));
  box-shadow: 0 18px 36px rgba(48, 32, 16, 0.14);
  border: 1px solid rgba(128, 92, 52, 0.12);
}

.craft-drawing-card i {
  position: absolute;
  left: 14%;
  right: 14%;
  display: block;
  height: 1px;
  background: rgba(96, 70, 40, 0.3);
}

.craft-drawing-card i:nth-child(1) {
  top: 28%;
}

.craft-drawing-card i:nth-child(2) {
  top: 50%;
}

.craft-drawing-card i:nth-child(3) {
  top: 72%;
}

.craft-drawing-card::before,
.craft-drawing-card::after {
  content: "";
  position: absolute;
  border: 1.5px solid rgba(96, 70, 40, 0.34);
}

.craft-drawing-card::before {
  left: 22%;
  right: 22%;
  top: 18%;
  bottom: 20%;
  border-radius: 6px;
}

.craft-drawing-card::after {
  top: 18%;
  bottom: 20%;
  left: 50%;
  width: 0;
  border-left-width: 1.5px;
  border-right: none;
  border-top: none;
  border-bottom: none;
}

.craft-square {
  right: 15%;
  bottom: 11%;
  width: 5.8rem;
  height: 5.8rem;
  transform: rotate(12deg);
}

.craft-square-long,
.craft-square-short {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #f6d8ab 0%, #d69f57 100%);
  box-shadow: 0 10px 18px rgba(67, 40, 12, 0.14);
}

.craft-square-long {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.75rem;
  border-radius: 999px;
}

.craft-square-short {
  left: 0;
  bottom: 0;
  width: 0.75rem;
  height: 100%;
  border-radius: 999px;
}

.craft-board-stack {
  left: 10%;
  top: 18%;
  width: 4.6rem;
  height: 3.8rem;
}

.craft-board-stack span {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #f0cc97 0%, #b47a44 100%);
  box-shadow: 0 10px 18px rgba(67, 40, 12, 0.12);
}

.craft-board-stack span:nth-child(1) { top: 0; }
.craft-board-stack span:nth-child(2) { top: 1.2rem; width: 88%; }
.craft-board-stack span:nth-child(3) { top: 2.4rem; width: 74%; }

.craft-tape {
  left: 10%;
  bottom: 13%;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #f6d467 0%, #d99a19 100%);
  box-shadow: 0 12px 24px rgba(67, 40, 12, 0.16);
}

.craft-tape::before,
.craft-tape::after,
.craft-tape span {
  content: "";
  position: absolute;
  display: block;
}

.craft-tape::before {
  inset: 24%;
  border-radius: 999px;
  background: rgba(84, 54, 20, 0.38);
}

.craft-tape::after {
  right: -0.3rem;
  top: 1rem;
  width: 0.8rem;
  height: 1rem;
  border-radius: 0.3rem;
  background: #4d3420;
}

.craft-tape span {
  right: -1.4rem;
  top: 1.28rem;
  width: 1.4rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #f7ead1;
}

.craft-toolline {
  left: 27%;
  bottom: 11%;
  display: flex;
  gap: 0.55rem;
}

.craft-toolline span {
  display: block;
  width: 2.8rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.44);
}

.case-showcase:hover .craft-cabinet {
  transform: translate(-4px, -4px);
}

.case-showcase:hover .craft-drawing-card {
  transform: rotate(11deg) translateY(-6px);
}

.case-showcase:hover .craft-square {
  transform: rotate(15deg) translateY(-4px);
}

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

.craft-card {
  padding: 1.1rem 1.15rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(120, 83, 35, 0.1);
  color: #5b4734;
}

.craft-card span,
.salon-service span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.68;
}

.craft-card strong,
.salon-service strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.craft-card-wide {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(108,82,57,0.12), rgba(255,255,255,0.7));
}

.craft-materials {
  display: flex;
  gap: 0.45rem;
}

.craft-materials i {
  display: block;
  width: 1.3rem;
  height: 3.3rem;
  border-radius: 999px;
}

.craft-materials i:nth-child(1) { background: #d8be98; }
.craft-materials i:nth-child(2) { background: #8f6b46; }
.craft-materials i:nth-child(3) { background: #4d3420; }

.showcase-salon .showcase-browser {
  background: linear-gradient(180deg, #121621 0%, #1b2232 100%);
  border-color: rgba(255,255,255,0.08);
}

.showcase-salon .showcase-chrome {
  background: rgba(255,255,255,0.04);
  border-bottom-color: rgba(255,255,255,0.08);
}

.showcase-salon .showcase-chrome span {
  background: rgba(255,255,255,0.18);
}

.showcase-salon .showcase-screen {
  padding: 1.3rem;
}

.salon-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
  gap: 1rem;
}

.salon-side {
  padding: 1.4rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(237, 198, 164, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  color: #f6efe9;
  border: 1px solid rgba(255,255,255,0.08);
}

.salon-side .showcase-kicker {
  color: #d7b7a1;
}

.salon-side p {
  color: rgba(255,255,255,0.72);
}

.salon-booking {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.salon-rating {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  font-weight: 600;
}

.salon-visual {
  position: relative;
  min-height: 16rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(145deg, #f2e1d6 0%, #c79d8a 42%, #5f4255 100%);
  overflow: hidden;
}

.salon-mirror,
.salon-chair,
.salon-tools {
  position: absolute;
}

.salon-mirror {
  inset: 10% 14% 16% 18%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.08)),
    linear-gradient(145deg, rgba(245,232,225,0.92), rgba(163,121,139,0.32));
  border: 10px solid rgba(62, 36, 53, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

.salon-chair {
  left: 30%;
  right: 20%;
  bottom: 8%;
  height: 58%;
}

.salon-chair span {
  position: absolute;
  display: block;
}

.salon-chair-head {
  top: 0;
  left: 32%;
  width: 28%;
  height: 18%;
  border-radius: 999px;
  background: #2a1f2b;
}

.salon-chair-back {
  top: 16%;
  left: 18%;
  right: 18%;
  height: 32%;
  border-radius: 22px 22px 18px 18px;
  background: linear-gradient(180deg, #f0d9ce 0%, #d39a8a 100%);
}

.salon-chair-seat {
  left: 20%;
  right: 20%;
  bottom: 24%;
  height: 16%;
  border-radius: 18px;
  background: linear-gradient(180deg, #2f2432 0%, #1d1620 100%);
}

.salon-chair-base {
  left: 48%;
  bottom: 0;
  width: 4%;
  height: 28%;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 0 0 1px rgba(47, 36, 50, 0.12);
}

.salon-tools {
  top: 14%;
  left: 12%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.salon-scissors,
.salon-comb,
.salon-spray {
  position: relative;
  display: block;
}

.salon-scissors {
  width: 4.8rem;
  height: 3.9rem;
  transform: rotate(-10deg);
}

.salon-scissors-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.salon-scissor-handle,
.salon-scissor-link,
.salon-scissor-screw {
  fill: none;
  stroke: rgba(47, 36, 50, 0.82);
}

.salon-scissor-handle {
  stroke-width: 4.4;
}

.salon-scissor-link {
  stroke-width: 3.6;
  stroke-linecap: round;
}

.salon-scissor-blade {
  fill: none;
  stroke: rgba(62, 36, 53, 0.88);
  stroke-width: 4.2;
  stroke-linecap: round;
}

.salon-scissor-screw {
  fill: rgba(47, 36, 50, 0.92);
  stroke: none;
}

.salon-comb {
  width: 2.9rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 36, 50, 0.82), rgba(47, 36, 50, 0.68));
  transform: rotate(-18deg);
}

.salon-comb i {
  position: absolute;
  left: 0.32rem;
  right: 0.3rem;
  bottom: -0.48rem;
  display: block;
  height: 0.55rem;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(47, 36, 50, 0.82) 0 2px,
      transparent 2px 5px
    );
}

.salon-spray {
  width: 1.05rem;
  height: 2.35rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(199,157,138,0.9));
  box-shadow: 0 8px 18px rgba(47, 36, 50, 0.14);
}

.salon-spray::before,
.salon-spray::after {
  content: "";
  position: absolute;
  display: block;
}

.salon-spray::before {
  top: -0.32rem;
  left: 0.22rem;
  width: 0.6rem;
  height: 0.42rem;
  border-radius: 0.2rem 0.2rem 0.1rem 0.1rem;
  background: rgba(47, 36, 50, 0.82);
}

.salon-spray::after {
  top: 0.05rem;
  right: -0.46rem;
  width: 0.58rem;
  height: 0.12rem;
  border-radius: 999px;
  background: rgba(47, 36, 50, 0.82);
}

.salon-floating-card {
  position: absolute;
  left: 10%;
  bottom: 9%;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
}

.salon-floating-card span {
  display: block;
  font-size: 0.74rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.salon-floating-card strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.case-showcase:hover .salon-floating-card {
  transform: translateY(-5px);
}

.case-showcase:hover .salon-chair {
  transform: translateY(-4px);
}

.case-showcase:hover .salon-scissors {
  transform: rotate(-8deg) translateY(-2px);
}

.salon-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.salon-service {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f7f1ec;
}

.case-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.case-deliverable {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(17,88,255,0.08);
  border: 1px solid rgba(17,88,255,0.12);
  color: var(--blue-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.stat {
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(234,243,255,0.74));
  border: 1px solid rgba(17,88,255,0.12);
}

.stat-num {
  display: block;
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.case-quote {
  padding: 1.4rem 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(17,88,255,0.12);
  background: linear-gradient(135deg, rgba(17,88,255,0.08), rgba(255,255,255,0.75));
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.8;
}

.case-quote cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.4rem;
  align-items: start;
}

.pricing-card,
.pricing-side {
  padding: 2rem;
}

.pricing-card {
  background:
    radial-gradient(circle at top left, rgba(78,162,255,0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(236,243,255,0.76));
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(17,88,255,0.12);
}

.price-from,
.price-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.price-num {
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 0 0 0.22rem rgba(17,88,255,0.12);
}

.pricing-options {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(17,88,255,0.12);
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-trust {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
}

.pricing-trust-item {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(17,88,255,0.12);
}

.pricing-trust-label,
.contact-point-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-trust-item strong,
.contact-point strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.pricing-side {
  background: linear-gradient(180deg, rgba(8,18,37,0.94), rgba(9,30,68,0.88));
  color: var(--white);
}

.pricing-side h3 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.pricing-side p {
  color: rgba(255,255,255,0.72);
}

.faq-grid,
.contact-points {
  display: grid;
  gap: 1rem;
}

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

.faq-card,
.contact-point {
  padding: 1.25rem 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.66);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faq-card h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.faq-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.contact-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1.3rem 1.35rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}

.contact-trust-copy h3 {
  margin-top: 0.8rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-trust-copy p {
  margin-top: 0.7rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.75;
}

.contact-trust-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.contact-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-link-pill:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
}

.contact-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.contact-point {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.contact-point strong,
.contact-point strong a {
  color: var(--white);
}

.section-navy .contact-form {
  max-width: 720px;
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  color: rgba(255,255,255,0.76);
  font-size: 0.82rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(157,197,255,0.72);
  background: rgba(255,255,255,0.12);
}

.form-note {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
}

.form-note a {
  color: #a9ccff;
  text-decoration: underline;
}

.footer {
  padding: 2.6rem 0 3rem;
  background: transparent;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(8,18,37,0.94), rgba(9,30,68,0.88));
  box-shadow: 0 26px 60px rgba(8,18,37,0.2);
  color: var(--white);
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.footer-logo span {
  color: #9dc5ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  margin: 1rem 0;
}

.footer-links a,
.footer-legal,
.footer-legal a {
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-legal {
  font-size: 0.84rem;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (max-width: 1100px) {
  .hero-shell,
  .pricing-wrap,
  .problem-grid,
  .why-grid,
  .case-proof-grid,
  .case-stats,
  .faq-grid,
  .contact-points {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 32rem;
  }

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

@media (max-width: 860px) {
  .nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(100%, calc(100% - 1.5rem));
    margin: 0.75rem auto 0;
    padding: 0.9rem 1rem;
  }

  .ticker-wrap,
  .hero-shell,
  .container {
    width: min(100%, calc(100% - 1.5rem));
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 1.25rem;
  }

  .hero-inner,
  .hero-visual,
  .case,
  .pricing-card,
  .pricing-side,
  .contact-form {
    border-radius: 28px;
  }

  .hero-headline {
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .hero-proof,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-trust-actions {
    justify-content: flex-start;
  }

  .craft-hero,
  .salon-shell,
  .salon-services,
  .craft-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .hero-visual-copy strong {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .craft-card-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .nav-logo,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .ticker-wrap {
    margin-top: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .hero-visual-copy {
    left: 6%;
    top: 8%;
    right: 6%;
  }

  .hero-visual-kicker::before,
  .hero-visual-kicker::after {
    width: 1.4rem;
  }

  .section-headline {
    max-width: none;
  }

  .problem-card,
  .why-item,
  .case,
  .pricing-card,
  .pricing-side,
  .contact-form,
  .step,
  .footer-inner {
    padding: 1.4rem;
  }
}
