@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lora:wght@400;500;600&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --hoso-bg-start: #FDF6F0;
  --hoso-bg-mid: #FAEBE0;
  --hoso-bg-end: #F5E6D8;
  --hoso-card: #FFFFFF;
  --hoso-ink: #4A3F35;
  --hoso-muted: #7A6F65;
  --hoso-accent: #C96E4B;
  --hoso-accent-deep: #A85638;
  --hoso-border: #E8C4B4;
  --hoso-peach: #FAD4C4;
  --hoso-sand: #F2E6DC;
  --hoso-shadow-soft: 0 8px 32px rgba(201, 110, 75, 0.12);
  --hoso-shadow-card: 0 12px 36px rgba(74, 63, 53, 0.08);
  --hoso-shadow-pop: 0 18px 48px rgba(201, 110, 75, 0.22);
  --hoso-radius-card: 20px;
  --hoso-radius-pill: 16px;
  --hoso-radius-panel: 24px;
  --hoso-font-display: 'Cormorant Garamond', serif;
  --hoso-font-body: 'Lora', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --hoso-font-tech: 'Nunito Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--hoso-font-body);
  color: var(--hoso-ink);
  background: linear-gradient(160deg, var(--hoso-bg-start) 0%, var(--hoso-bg-mid) 55%, var(--hoso-bg-end) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

strong, p, span, li, h1, h2, h3, h4, h5, h6, a, button {
  color: inherit;
}

a {
  color: var(--hoso-accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--hoso-accent-deep);
}

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

.hoso-serif {
  font-family: var(--hoso-font-display);
  letter-spacing: -0.01em;
}

.hoso-tech {
  font-family: var(--hoso-font-tech);
}

.hoso-bg-canvas {
  position: relative;
  overflow: hidden;
}

.hoso-bg-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 110, 75, 0.10) 0, transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(250, 212, 196, 0.45) 0, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hoso-shell {
  position: relative;
  z-index: 1;
}

.hoso-section {
  position: relative;
  padding: 96px 0;
}

.hoso-section-tight {
  padding: 64px 0;
}

.hoso-eyebrow {
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--hoso-accent);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.hoso-h2 {
  font-family: var(--hoso-font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--hoso-ink);
  margin: 0 0 24px;
  line-height: 1.15;
}

.hoso-h2 small {
  display: block;
  font-family: var(--hoso-font-tech);
  font-size: 14px;
  color: var(--hoso-muted);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 12px;
}

.hoso-lead {
  font-size: 18px;
  line-height: 1.9;
  color: var(--hoso-muted);
  max-width: 720px;
}

.hoso-card {
  background: var(--hoso-card);
  border-radius: var(--hoso-radius-card);
  padding: 32px;
  box-shadow: var(--hoso-shadow-card);
  border: 1px solid rgba(232, 196, 180, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, z-index 0s;
  z-index: 1;
  color: var(--hoso-ink);
}

.hoso-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--hoso-shadow-pop);
  z-index: 20;
}

.hoso-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--hoso-radius-pill);
  font-family: var(--hoso-font-tech);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hoso-btn-primary {
  background: var(--hoso-accent);
  color: #FFFFFF;
  box-shadow: 0 10px 26px rgba(201, 110, 75, 0.32);
}

.hoso-btn-primary:hover {
  background: var(--hoso-accent-deep);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(168, 86, 56, 0.4);
}

.hoso-btn-ghost {
  background: var(--hoso-card);
  color: var(--hoso-ink);
  border: 2px solid var(--hoso-border);
}

.hoso-btn-ghost:hover {
  border-color: var(--hoso-accent);
  color: var(--hoso-accent);
  background: var(--hoso-card);
}

.hoso-btn-line {
  background: var(--hoso-accent);
  color: #FFFFFF;
  width: 100%;
}

.hoso-floating-panel {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 248px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--hoso-radius-panel);
  padding: 24px 18px;
  box-shadow: var(--hoso-shadow-soft);
  border: 1px solid rgba(232, 196, 180, 0.55);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hoso-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hoso-border);
}

.hoso-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hoso-accent) 0%, var(--hoso-accent-deep) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--hoso-font-display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(201, 110, 75, 0.35);
}

.hoso-logo-domain {
  font-family: var(--hoso-font-tech);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--hoso-muted);
  text-transform: lowercase;
  margin-top: 2px;
}

.hoso-logo-name {
  font-family: var(--hoso-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--hoso-ink);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hoso-logo-sub {
  font-family: var(--hoso-font-tech);
  font-size: 10px;
  color: var(--hoso-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.hoso-side-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hoso-side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-family: var(--hoso-font-tech);
  font-size: 14px;
  font-weight: 500;
  color: var(--hoso-ink);
  transition: background 0.25s ease, color 0.25s ease;
}

.hoso-side-nav a::before {
  content: "·";
  color: var(--hoso-accent);
  font-size: 22px;
  line-height: 0;
  transition: transform 0.25s ease;
}

.hoso-side-nav a:hover,
.hoso-side-nav a.is-active {
  background: var(--hoso-accent);
  color: #FFFFFF;
}

.hoso-side-nav a:hover::before,
.hoso-side-nav a.is-active::before {
  color: #FFFFFF;
  transform: scale(1.3);
}

.hoso-side-cta {
  margin-top: 4px;
  padding: 14px 18px;
  font-size: 13px;
  text-align: center;
}

.hoso-top-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hoso-border);
  padding: 10px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hoso-top-bar .hoso-logo-block {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  flex: 1;
  min-width: 0;
}

.hoso-top-bar .hoso-logo-mark {
  width: 36px;
  height: 36px;
  font-size: 18px;
  flex-shrink: 0;
}

.hoso-top-bar .hoso-logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}

.hoso-top-bar .hoso-logo-name {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hoso-top-bar .hoso-logo-domain {
  margin-top: 1px;
  font-size: 10px;
}

.hoso-burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hoso-card);
  border: 1px solid var(--hoso-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}

.hoso-burger span {
  width: 18px;
  height: 2px;
  background: var(--hoso-ink);
  position: relative;
  display: block;
  transition: background 0.2s ease;
}

.hoso-burger span::before,
.hoso-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--hoso-ink);
  transition: transform 0.3s ease;
}

.hoso-burger span::before { top: -6px; }
.hoso-burger span::after { top: 6px; }

.hoso-burger[aria-expanded="true"] span { background: transparent; }
.hoso-burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); background: var(--hoso-accent); }
.hoso-burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); background: var(--hoso-accent); }

.hoso-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 84%;
  max-width: 360px;
  background: linear-gradient(170deg, var(--hoso-bg-start) 0%, var(--hoso-peach) 100%);
  z-index: 110;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 80px 28px 28px;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(74, 63, 53, 0.18);
}

.hoso-mobile-drawer.is-open {
  transform: translateX(0);
}

.hoso-mobile-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--hoso-accent) 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, var(--hoso-accent) 1px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.18;
  pointer-events: none;
}

.hoso-mobile-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hoso-mobile-drawer li a {
  display: block;
  font-family: var(--hoso-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--hoso-ink);
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 196, 180, 0.5);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.hoso-mobile-drawer li a:hover,
.hoso-mobile-drawer li a.is-active {
  color: var(--hoso-accent);
  padding-left: 8px;
}

.hoso-mobile-drawer .hoso-btn {
  position: relative;
  z-index: 1;
}

.hoso-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hoso-card);
  border: 1px solid var(--hoso-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--hoso-ink);
  cursor: pointer;
  z-index: 2;
}

.hoso-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 63, 53, 0.5);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hoso-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hoso-main {
  margin-left: 288px;
  position: relative;
  z-index: 1;
}

.hoso-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.hoso-hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hoso-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hoso-particles canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hoso-hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hoso-hero-watermark span {
  position: absolute;
  font-family: var(--hoso-font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 600;
  color: var(--hoso-accent);
  opacity: 0.05;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hoso-hero-watermark span:nth-child(1) { top: 8%; left: -2%; }
.hoso-hero-watermark span:nth-child(2) { top: 32%; right: -4%; }
.hoso-hero-watermark span:nth-child(3) { bottom: 18%; left: 12%; }
.hoso-hero-watermark span:nth-child(4) { bottom: 4%; right: 8%; }

.hoso-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
}

.hoso-hero-text .hoso-eyebrow {
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--hoso-border);
}

.hoso-h1 {
  font-family: var(--hoso-font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hoso-ink);
  margin: 18px 0 24px;
}

.hoso-h1 .hoso-h1-sub {
  display: block;
  font-size: 0.55em;
  color: var(--hoso-accent);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.hoso-hero-sub {
  font-family: var(--hoso-font-tech);
  font-size: 15px;
  color: var(--hoso-muted);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.hoso-hero-sub span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hoso-hero-sub span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hoso-accent);
}

.hoso-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hoso-hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--hoso-border);
}

.hoso-hero-trust div {
  display: flex;
  flex-direction: column;
}

.hoso-hero-trust strong {
  font-family: var(--hoso-font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--hoso-accent);
  line-height: 1;
}

.hoso-hero-trust small {
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  color: var(--hoso-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.hoso-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(74, 63, 53, 0.18);
  background: var(--hoso-sand);
  max-width: 100%;
}

.hoso-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hoso-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(74, 63, 53, 0.55) 100%);
}

.hoso-hero-badge {
  position: absolute;
  z-index: 2;
  background: var(--hoso-card);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--hoso-shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--hoso-border);
  color: var(--hoso-ink);
}

.hoso-hero-badge strong {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  color: var(--hoso-accent);
  line-height: 1;
}

.hoso-hero-badge small {
  font-family: var(--hoso-font-tech);
  font-size: 11px;
  color: var(--hoso-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
  display: block;
}

.hoso-hero-badge--top { top: 24px; left: 24px; }
.hoso-hero-badge--bot { bottom: 24px; right: 24px; }

.hoso-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
  margin-top: 32px;
  min-width: 0;
}

.hoso-bento-cell {
  position: relative;
  border-radius: var(--hoso-radius-card);
  overflow: hidden;
  background: var(--hoso-card);
  box-shadow: var(--hoso-shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(232, 196, 180, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s, box-shadow 0.3s ease;
  color: var(--hoso-ink);
  z-index: 1;
}

.hoso-bento-cell:hover {
  transform: scale(1.03);
  z-index: 20;
  box-shadow: var(--hoso-shadow-pop);
}

.hoso-bento-cell.is-photo {
  padding: 0;
}

.hoso-bento-cell.is-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hoso-bento-cell.is-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(74, 63, 53, 0.6) 100%);
}

.hoso-bento-cell .hoso-bento-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--hoso-font-display);
  font-size: 36px;
  color: var(--hoso-accent);
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}

.hoso-bento-cell h3 {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--hoso-ink);
  position: relative;
  z-index: 1;
}

.hoso-bento-cell p {
  font-size: 14px;
  color: var(--hoso-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

.hoso-bento-cell.is-photo h3,
.hoso-bento-cell.is-photo p {
  color: #FFFFFF;
  position: absolute;
  left: 24px;
  right: 24px;
}

.hoso-bento-cell.is-photo h3 { bottom: 56px; font-size: 24px; }
.hoso-bento-cell.is-photo p { bottom: 28px; color: rgba(255, 255, 255, 0.85); font-size: 13px; }

.hoso-bento-cell.size-2x2 { grid-column: span 2; grid-row: span 2; }
.hoso-bento-cell.size-2x1 { grid-column: span 2; grid-row: span 1; }
.hoso-bento-cell.size-1x2 { grid-column: span 1; grid-row: span 2; }

.hoso-about-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.hoso-about-sticky {
  position: sticky;
  top: 80px;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(74, 63, 53, 0.18);
  background: var(--hoso-sand);
}

.hoso-about-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hoso-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hoso-about-stats div {
  background: var(--hoso-card);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--hoso-border);
  color: var(--hoso-ink);
}

.hoso-about-stats strong {
  display: block;
  font-family: var(--hoso-font-display);
  font-size: 34px;
  color: var(--hoso-accent);
  font-weight: 600;
  line-height: 1;
}

.hoso-about-stats span {
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  color: var(--hoso-muted);
  letter-spacing: 0.05em;
  margin-top: 6px;
  display: block;
}

.hoso-process-graph {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
  position: relative;
}

.hoso-process-node {
  background: var(--hoso-card);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--hoso-border);
  position: relative;
  box-shadow: var(--hoso-shadow-card);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s;
  z-index: 1;
  color: var(--hoso-ink);
  cursor: grab;
}

.hoso-process-node:hover {
  transform: translateY(-6px) rotate(-1deg);
  z-index: 20;
}

.hoso-process-node .hoso-node-step {
  font-family: var(--hoso-font-display);
  font-size: 48px;
  color: var(--hoso-accent);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
}

.hoso-process-node h3 {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--hoso-ink);
}

.hoso-process-node p {
  font-size: 14px;
  color: var(--hoso-muted);
  margin: 0;
  line-height: 1.7;
}

.hoso-process-node .hoso-node-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 24px;
}

.hoso-masonry {
  column-count: 3;
  column-gap: 22px;
}

.hoso-masonry-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--hoso-card);
  box-shadow: var(--hoso-shadow-card);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0s;
  z-index: 1;
  color: var(--hoso-ink);
}

.hoso-masonry-item:hover {
  transform: scale(1.02);
  z-index: 20;
}

.hoso-masonry-item img {
  width: 100%;
  display: block;
}

.hoso-masonry-caption {
  padding: 18px 20px 22px;
}

.hoso-masonry-caption h3 {
  font-family: var(--hoso-font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--hoso-ink);
}

.hoso-masonry-caption p {
  font-size: 13px;
  color: var(--hoso-muted);
  margin: 0;
  line-height: 1.6;
}

.hoso-masonry-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--hoso-accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--hoso-font-tech);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hoso-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.hoso-advantage {
  background: var(--hoso-card);
  border-radius: 22px;
  padding: 30px 26px;
  border: 1px solid var(--hoso-border);
  box-shadow: var(--hoso-shadow-card);
  transition: flex-grow 0.4s ease, transform 0.3s ease, z-index 0s, box-shadow 0.3s ease;
  z-index: 1;
  color: var(--hoso-ink);
  position: relative;
  min-height: 220px;
}

.hoso-advantage:hover {
  transform: translateY(-6px);
  z-index: 20;
  box-shadow: var(--hoso-shadow-pop);
}

.hoso-advantage .hoso-adv-num {
  font-family: var(--hoso-font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--hoso-accent);
  line-height: 1;
  margin-bottom: 14px;
}

.hoso-advantage h3 {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--hoso-ink);
}

.hoso-advantage p {
  font-size: 14px;
  color: var(--hoso-muted);
  line-height: 1.7;
  margin: 0;
}

.hoso-team-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.hoso-team-row {
  position: relative;
  background: var(--hoso-card);
  border-radius: 18px;
  padding: 20px 24px;
  border: 1px solid var(--hoso-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, z-index 0s, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1;
  color: var(--hoso-ink);
}

.hoso-team-row:hover {
  background: var(--hoso-accent);
  color: #FFFFFF;
  transform: translateX(8px);
  z-index: 20;
  box-shadow: var(--hoso-shadow-pop);
}

.hoso-team-row:hover .hoso-team-name,
.hoso-team-row:hover .hoso-team-role {
  color: #FFFFFF;
}

.hoso-team-row:hover .hoso-team-arrow {
  color: #FFFFFF;
  transform: translateX(6px);
}

.hoso-team-name {
  font-family: var(--hoso-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--hoso-ink);
  transition: color 0.3s ease;
}

.hoso-team-role {
  font-family: var(--hoso-font-tech);
  font-size: 13px;
  color: var(--hoso-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.hoso-team-arrow {
  font-size: 18px;
  color: var(--hoso-accent);
  transition: transform 0.3s ease, color 0.3s ease;
}

.hoso-team-tooltip {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--hoso-card);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--hoso-shadow-pop);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
  border: 1px solid var(--hoso-border);
  min-width: 260px;
  color: var(--hoso-ink);
}

.hoso-team-row:hover .hoso-team-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hoso-team-tooltip img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hoso-team-tooltip-info strong {
  display: block;
  font-family: var(--hoso-font-display);
  font-size: 17px;
  color: var(--hoso-ink);
  line-height: 1.2;
}

.hoso-team-tooltip-info span {
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  color: var(--hoso-muted);
  letter-spacing: 0.04em;
}

.hoso-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.hoso-testimonial {
  background: var(--hoso-card);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--hoso-border);
  box-shadow: var(--hoso-shadow-card);
  transition: transform 0.3s ease, z-index 0s, box-shadow 0.3s ease;
  z-index: 1;
  color: var(--hoso-ink);
  position: relative;
}

.hoso-testimonial:hover {
  transform: translateY(-4px);
  z-index: 20;
  box-shadow: var(--hoso-shadow-pop);
}

.hoso-testimonial .hoso-stars {
  color: var(--hoso-accent);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.hoso-testimonial blockquote {
  font-family: var(--hoso-font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--hoso-ink);
  margin: 0 0 22px;
  font-style: italic;
}

.hoso-testimonial cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--hoso-font-tech);
  font-size: 13px;
  color: var(--hoso-muted);
}

.hoso-testimonial cite strong {
  color: var(--hoso-ink);
  font-weight: 600;
  display: block;
  font-family: var(--hoso-font-display);
  font-size: 17px;
}

.hoso-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.hoso-faq-item {
  background: var(--hoso-card);
  border-radius: 18px;
  border: 1px solid var(--hoso-border);
  overflow: hidden;
  transition: box-shadow 0.3s ease, z-index 0s;
  z-index: 1;
  color: var(--hoso-ink);
}

.hoso-faq-item.is-open {
  box-shadow: var(--hoso-shadow-pop);
  z-index: 20;
}

.hoso-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--hoso-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--hoso-ink);
  cursor: pointer;
  text-align: left;
}

.hoso-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hoso-peach);
  color: var(--hoso-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--hoso-font-tech);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hoso-faq-item.is-open .hoso-faq-icon {
  transform: rotate(45deg);
  background: var(--hoso-accent);
  color: #FFFFFF;
}

.hoso-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.hoso-faq-item.is-open .hoso-faq-a {
  max-height: 400px;
  padding: 0 26px 24px;
}

.hoso-faq-a p {
  font-size: 15px;
  color: var(--hoso-muted);
  line-height: 1.8;
  margin: 0;
}

.hoso-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hoso-form {
  background: var(--hoso-card);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--hoso-shadow-card);
  border: 1px solid var(--hoso-border);
  color: var(--hoso-ink);
}

.hoso-form-row {
  margin-bottom: 20px;
}

.hoso-form-row label {
  display: block;
  font-family: var(--hoso-font-tech);
  font-size: 13px;
  font-weight: 600;
  color: var(--hoso-ink);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.hoso-form-row input,
.hoso-form-row textarea,
.hoso-form-row select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--hoso-border);
  font-family: var(--hoso-font-body);
  font-size: 16px;
  color: var(--hoso-ink);
  transition: border-color 0.3s ease;
  outline: none;
}

.hoso-form-row input::placeholder,
.hoso-form-row textarea::placeholder {
  color: var(--hoso-muted);
  opacity: 0.6;
}

.hoso-form-row input:focus,
.hoso-form-row textarea:focus,
.hoso-form-row select:focus {
  border-bottom-color: var(--hoso-accent);
}

.hoso-form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.hoso-form-success {
  display: none;
  background: var(--hoso-card);
  border: 2px solid var(--hoso-accent);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: var(--hoso-ink);
}

.hoso-form-success.is-shown {
  display: block;
}

.hoso-form-success h3 {
  font-family: var(--hoso-font-display);
  font-size: 28px;
  color: var(--hoso-accent);
  margin: 0 0 12px;
}

.hoso-contact-info {
  background: var(--hoso-card);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--hoso-shadow-card);
  border: 1px solid var(--hoso-border);
  color: var(--hoso-ink);
}

.hoso-contact-info h3 {
  font-family: var(--hoso-font-display);
  font-size: 26px;
  margin: 0 0 8px;
  color: var(--hoso-ink);
}

.hoso-contact-info > p {
  color: var(--hoso-muted);
  font-size: 14px;
  margin: 0 0 28px;
}

.hoso-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hoso-contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hoso-contact-list .hoso-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--hoso-peach);
  color: var(--hoso-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hoso-contact-list small {
  display: block;
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  color: var(--hoso-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hoso-contact-list strong {
  font-family: var(--hoso-font-display);
  font-size: 20px;
  color: var(--hoso-ink);
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.hoso-contact-list a {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  color: var(--hoso-accent);
  font-weight: 600;
}

.hoso-cta-banner {
  background: linear-gradient(135deg, var(--hoso-accent) 0%, var(--hoso-accent-deep) 100%);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 30px 60px rgba(201, 110, 75, 0.25);
}

.hoso-cta-banner h2 {
  font-family: var(--hoso-font-display);
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #FFFFFF;
  line-height: 1.2;
}

.hoso-cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}

.hoso-cta-banner .hoso-btn-primary {
  background: #FFFFFF;
  color: var(--hoso-accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.hoso-cta-banner .hoso-btn-primary:hover {
  background: var(--hoso-ink);
  color: #FFFFFF;
}

.hoso-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hoso-cta-actions a {
  text-align: center;
  font-size: 14px;
}

.hoso-footer {
  background: var(--hoso-accent);
  color: #FFFFFF;
  border-radius: 48px 48px 0 0;
  padding: 72px 0 36px;
  margin-top: 80px;
  position: relative;
}

.hoso-footer h4 {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 18px;
  font-weight: 600;
}

.hoso-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.hoso-footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.hoso-footer-brand .hoso-logo-mark {
  background: #FFFFFF;
  color: var(--hoso-accent);
}

.hoso-footer-brand .hoso-logo-name {
  color: #FFFFFF;
}

.hoso-footer-brand .hoso-logo-domain {
  color: rgba(255, 255, 255, 0.7);
}

.hoso-footer-brand .hoso-logo-sub {
  color: rgba(255, 255, 255, 0.85);
}

.hoso-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hoso-footer ul a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--hoso-font-tech);
  font-size: 14px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.hoso-footer ul a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.hoso-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.hoso-footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 10px;
}

.hoso-footer-bottom a:hover {
  color: #FFFFFF;
}

.hoso-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 460px;
  background: var(--hoso-card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(74, 63, 53, 0.25);
  z-index: 200;
  border: 1px solid var(--hoso-border);
  color: var(--hoso-ink);
}

.hoso-cookie-banner h4 {
  font-family: var(--hoso-font-display);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--hoso-ink);
}

.hoso-cookie-banner p {
  font-size: 13px;
  color: var(--hoso-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.hoso-cookie-banner p a {
  color: var(--hoso-accent);
  text-decoration: underline;
}

.hoso-cookie-actions {
  display: flex;
  gap: 8px;
}

.hoso-cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  font-family: var(--hoso-font-tech);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

.hoso-cookie-accept {
  background: var(--hoso-accent);
  color: #FFFFFF;
}

.hoso-cookie-accept:hover {
  background: var(--hoso-accent-deep);
}

.hoso-cookie-decline {
  background: var(--hoso-sand);
  color: var(--hoso-ink);
}

.hoso-cookie-decline:hover {
  background: var(--hoso-border);
}

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

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

.hoso-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.hoso-service-card {
  background: var(--hoso-card);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--hoso-border);
  box-shadow: var(--hoso-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--hoso-ink);
  transition: transform 0.3s ease, z-index 0s, box-shadow 0.3s ease;
  z-index: 1;
  position: relative;
}

.hoso-service-card:hover {
  transform: translateY(-6px);
  z-index: 20;
  box-shadow: var(--hoso-shadow-pop);
}

.hoso-service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--hoso-sand);
}

.hoso-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hoso-service-card h3 {
  font-family: var(--hoso-font-display);
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: var(--hoso-ink);
}

.hoso-service-card .hoso-service-desc {
  font-size: 15px;
  color: var(--hoso-muted);
  line-height: 1.8;
  margin: 0;
}

.hoso-service-card .hoso-service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--hoso-border);
}

.hoso-service-card .hoso-service-price small {
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  color: var(--hoso-muted);
  letter-spacing: 0.05em;
}

.hoso-service-card .hoso-service-price strong {
  font-family: var(--hoso-font-display);
  font-size: 28px;
  color: var(--hoso-accent);
  font-weight: 600;
}

.hoso-service-card .hoso-service-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hoso-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--hoso-peach);
  color: var(--hoso-accent);
  font-family: var(--hoso-font-tech);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hoso-page-hero {
  padding: 80px 0 48px;
  position: relative;
  overflow: hidden;
}

.hoso-page-hero h1 {
  font-family: var(--hoso-font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--hoso-ink);
  margin: 12px 0 18px;
  line-height: 1.1;
}

.hoso-page-hero p {
  font-size: 18px;
  color: var(--hoso-muted);
  max-width: 720px;
  margin: 0;
}

.hoso-content-block {
  background: var(--hoso-card);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--hoso-border);
  color: var(--hoso-ink);
  margin-bottom: 24px;
  box-shadow: var(--hoso-shadow-card);
}

.hoso-content-block h2 {
  font-family: var(--hoso-font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--hoso-ink);
}

.hoso-content-block h3 {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--hoso-ink);
}

.hoso-content-block p {
  font-size: 16px;
  color: var(--hoso-ink);
  line-height: 1.9;
  margin: 0 0 16px;
}

.hoso-content-block ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.hoso-content-block li {
  margin-bottom: 8px;
  line-height: 1.8;
  color: var(--hoso-ink);
}

.hoso-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

.hoso-detail-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--hoso-sand);
  box-shadow: var(--hoso-shadow-card);
}

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

.hoso-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.hoso-stat-row div {
  background: var(--hoso-sand);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  color: var(--hoso-ink);
}

.hoso-stat-row strong {
  display: block;
  font-family: var(--hoso-font-display);
  font-size: 28px;
  color: var(--hoso-accent);
  font-weight: 600;
  line-height: 1.1;
}

.hoso-stat-row small {
  display: block;
  font-family: var(--hoso-font-tech);
  font-size: 11px;
  color: var(--hoso-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hoso-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.hoso-project {
  border-radius: 20px;
  overflow: hidden;
  background: var(--hoso-card);
  border: 1px solid var(--hoso-border);
  box-shadow: var(--hoso-shadow-card);
  transition: transform 0.3s ease, z-index 0s, box-shadow 0.3s ease;
  z-index: 1;
  color: var(--hoso-ink);
}

.hoso-project:hover {
  transform: translateY(-6px);
  z-index: 20;
  box-shadow: var(--hoso-shadow-pop);
}

.hoso-project-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--hoso-sand);
}

.hoso-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hoso-project:hover .hoso-project-img img {
  transform: scale(1.06);
}

.hoso-project-body {
  padding: 22px;
}

.hoso-project-body h3 {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--hoso-ink);
}

.hoso-project-body p {
  font-size: 14px;
  color: var(--hoso-muted);
  margin: 0;
  line-height: 1.7;
}

.hoso-project-meta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hoso-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  text-align: center;
}

.hoso-thanks-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--hoso-accent);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: 24px;
  box-shadow: 0 16px 36px rgba(201, 110, 75, 0.3);
}

.hoso-thanks h1 {
  font-family: var(--hoso-font-display);
  font-size: 56px;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--hoso-ink);
  line-height: 1.1;
}

.hoso-thanks p {
  font-size: 18px;
  color: var(--hoso-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hoso-thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hoso-privacy-content h2 {
  font-family: var(--hoso-font-display);
  font-size: 30px;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--hoso-ink);
}

.hoso-privacy-content h3 {
  font-family: var(--hoso-font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 22px 0 8px;
  color: var(--hoso-ink);
}

.hoso-privacy-content p, .hoso-privacy-content li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--hoso-ink);
  margin: 0 0 12px;
}

.hoso-privacy-content ul {
  padding-left: 22px;
}

.hoso-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--hoso-ink);
  color: #FFFFFF;
  padding: 16px 22px;
  border-radius: 14px;
  font-family: var(--hoso-font-tech);
  font-size: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  z-index: 250;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hoso-toast.is-shown {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  .hoso-floating-panel { display: none; }
  .hoso-top-bar { display: flex; }
  .hoso-main { margin-left: 0; padding-top: 64px; }
  .hoso-hero { min-height: auto; padding: 80px 0 60px; }
  .hoso-hero-inner { grid-template-columns: 1fr; }
  .hoso-about-split { grid-template-columns: 1fr; gap: 32px; }
  .hoso-about-sticky { position: relative; top: 0; }
  .hoso-contact-split { grid-template-columns: 1fr; }
  .hoso-detail-grid { grid-template-columns: 1fr; }
  .hoso-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hoso-cta-banner { grid-template-columns: 1fr; padding: 40px 32px; text-align: center; }
  .hoso-bento { grid-template-columns: repeat(2, 1fr); }
  .hoso-bento-cell.size-2x2 { grid-column: span 2; grid-row: span 2; }
  .hoso-process-graph { grid-template-columns: repeat(2, 1fr); }
  .hoso-advantages { grid-template-columns: repeat(2, 1fr); }
  .hoso-testimonials { grid-template-columns: 1fr; }
  .hoso-services-list { grid-template-columns: 1fr; }
  .hoso-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .hoso-masonry { column-count: 2; }
  .hoso-team-row:hover .hoso-team-tooltip { display: none; }
}

@media (max-width: 720px) {
  .hoso-container { padding: 0 20px; }
  .hoso-section { padding: 64px 0; }
  .hoso-h2 { font-size: 32px; }
  .hoso-h1 { font-size: 36px; }
  .hoso-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .hoso-bento-cell, .hoso-bento-cell.size-2x2, .hoso-bento-cell.size-2x1, .hoso-bento-cell.size-1x2 { grid-column: span 1; grid-row: span 1; min-height: 220px; }
  .hoso-process-graph { grid-template-columns: 1fr; }
  .hoso-advantages { grid-template-columns: 1fr; }
  .hoso-projects-grid { grid-template-columns: 1fr; }
  .hoso-masonry { column-count: 1; }
  .hoso-stat-row { grid-template-columns: 1fr; }
  .hoso-footer-grid { grid-template-columns: 1fr; }
  .hoso-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .hoso-hero-trust { gap: 16px; }
  .hoso-hero-trust strong { font-size: 26px; }
  .hoso-content-block { padding: 26px 22px; }
  .hoso-form, .hoso-contact-info { padding: 26px 22px; }
  .hoso-thanks h1 { font-size: 38px; }
  .hoso-team-row { padding: 16px 18px; }
  .hoso-team-name { font-size: 20px; }
}
