:root {
  --peach-base: #FDF4F0;
  --peach-soft: #FAE8E0;
  --peach-warm: #F5DDD5;
  --peach-border: #F5C4B8;
  --peach-pale: #FDDFDF;
  --peach-apricot: #FDCB6E;
  --peach-accent: #E17055;
  --peach-deep: #C45A3D;
  --terracotta: #6B3A3A;
  --text-soft: #9C8181;
  --pure-white: #FFFFFF;
  --ink-900: #2A1410;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--terracotta);
  background: linear-gradient(135deg, #FDF4F0 0%, #FAE8E0 50%, #F5DDD5 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--terracotta);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.2rem; }

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

.tech-mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.peach-grad {
  background: linear-gradient(135deg, var(--peach-base), var(--peach-soft));
}

.glass-pill {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(225, 112, 85, 0.15);
  box-shadow: 0 8px 32px rgba(225, 112, 85, 0.12);
  border-radius: 40px;
}

.peach-card {
  background: var(--pure-white);
  border-radius: 32px;
  border: 1px solid var(--peach-border);
  box-shadow: 0 12px 40px rgba(225, 112, 85, 0.1);
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, z-index 0s;
  position: relative;
}

.peach-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(225, 112, 85, 0.25);
  z-index: 10;
  border-color: var(--peach-accent);
}

.cta-peach {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--peach-accent);
  color: var(--pure-white) !important;
  padding: 18px 36px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(225, 112, 85, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.cta-peach:hover {
  background: var(--peach-deep);
  color: var(--pure-white) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(196, 90, 61, 0.5);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--peach-accent) !important;
  padding: 18px 36px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  border: 2px solid var(--peach-accent);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.cta-ghost:hover {
  background: var(--peach-accent);
  color: var(--pure-white) !important;
  transform: translateY(-2px) scale(1.04);
}

.floating-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  z-index: 100;
  padding: 10px 16px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--peach-accent), var(--peach-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(225, 112, 85, 0.4);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text .brand-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--peach-deep);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.brand-text .brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--terracotta);
  letter-spacing: -0.01em;
}

.brand-text .brand-sub {
  font-size: 0.68rem;
  color: var(--text-soft);
  font-weight: 500;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.desktop-nav a {
  padding: 10px 18px;
  border-radius: 24px;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.desktop-nav a:hover, .desktop-nav a.is-current {
  background: var(--peach-accent);
  color: var(--pure-white);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--peach-accent);
  color: var(--pure-white);
  padding: 12px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(225, 112, 85, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--peach-deep);
  color: var(--pure-white);
  transform: scale(1.05);
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(253, 244, 240, 0.97), rgba(245, 221, 213, 0.97));
  backdrop-filter: blur(24px);
  z-index: 200;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
  visibility: hidden;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-drawer .blob-a, .mobile-drawer .blob-b {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.mobile-drawer .blob-a {
  width: 300px; height: 300px;
  background: var(--peach-accent);
  top: 20%; right: -50px;
  animation: floatBlob 18s ease-in-out infinite;
}

.mobile-drawer .blob-b {
  width: 260px; height: 260px;
  background: var(--peach-apricot);
  bottom: 10%; left: -60px;
  animation: floatBlob 22s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-list a {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--terracotta);
  padding: 18px 4px;
  border-bottom: 1px solid var(--peach-border);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}

.mobile-drawer.is-open .mobile-nav-list a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer.is-open .mobile-nav-list li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-drawer.is-open .mobile-nav-list li:nth-child(2) a { transition-delay: 0.16s; }
.mobile-drawer.is-open .mobile-nav-list li:nth-child(3) a { transition-delay: 0.22s; }
.mobile-drawer.is-open .mobile-nav-list li:nth-child(4) a { transition-delay: 0.28s; }
.mobile-drawer.is-open .mobile-nav-list li:nth-child(5) a { transition-delay: 0.34s; }
.mobile-drawer.is-open .mobile-nav-list li:nth-child(6) a { transition-delay: 0.4s; }
.mobile-drawer.is-open .mobile-nav-list li:nth-child(7) a { transition-delay: 0.46s; }
.mobile-drawer.is-open .mobile-nav-list li:nth-child(8) a { transition-delay: 0.52s; }

.mobile-nav-list a:hover { color: var(--peach-accent); }

.mobile-cta-wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--terracotta);
  z-index: 5;
}

main {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.hero-block {
  position: relative;
  min-height: calc(100vh - 60px);
  padding: 80px 24px 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(225, 112, 85, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(225, 112, 85, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-blob-1 {
  width: 420px; height: 420px;
  background: var(--peach-accent);
  top: -100px; right: -80px;
  animation: heroFloat1 22s ease-in-out infinite;
}

.hero-blob-2 {
  width: 360px; height: 360px;
  background: var(--peach-apricot);
  bottom: -80px; left: -60px;
  animation: heroFloat2 28s ease-in-out infinite;
}

.hero-blob-3 {
  width: 280px; height: 280px;
  background: var(--peach-pale);
  top: 40%; left: 50%;
  animation: heroFloat3 25s ease-in-out infinite;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 60px) scale(1.15); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.2); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-30%, -60%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text .eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--peach-deep);
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: 18px;
  margin-bottom: 22px;
  border: 1px solid var(--peach-border);
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--terracotta);
}

.hero-text h1 .accent { color: var(--peach-accent); }

.hero-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

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

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--peach-accent);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(253, 219, 198, 0.5));
  backdrop-filter: blur(14px);
  border: 1px solid var(--peach-border);
  box-shadow: 0 24px 60px rgba(225, 112, 85, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .pipe-svg {
  width: 70%;
  height: 70%;
  animation: spinPipe 30s linear infinite;
}

@keyframes spinPipe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

section {
  padding: 80px 24px;
  position: relative;
}

.section-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head .kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--peach-deep);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.bento-cell {
  border-radius: 28px;
  background: var(--pure-white);
  border: 1px solid var(--peach-border);
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.bento-cell:hover {
  z-index: 10;
  transform: scale(1.02);
  border-color: var(--peach-accent);
  box-shadow: 0 18px 50px rgba(225, 112, 85, 0.2);
}

.bento-cell.is-large {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--pure-white);
  background: linear-gradient(160deg, var(--peach-accent), var(--peach-deep));
  border: none;
}

.bento-cell.is-large h3, .bento-cell.is-large .bento-meta {
  color: var(--pure-white);
}

.bento-cell.is-photo {
  padding: 0;
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.bento-cell .bento-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--peach-deep);
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 10px;
  border-radius: 14px;
  margin-bottom: 10px;
}

.bento-cell.is-large .bento-tag {
  background: rgba(255, 255, 255, 0.25);
  color: var(--pure-white);
}

.bento-cell h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.bento-cell .bento-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 10px;
}

.bento-cell ul {
  list-style: none;
  margin-top: 14px;
}

.bento-cell li {
  font-size: 0.92rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
}

.bento-cell li::before {
  content: "·";
  color: var(--peach-accent);
  font-weight: 700;
  font-size: 1.3rem;
}

.split-sticky {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.split-left {
  border-radius: 32px;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.split-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(107, 58, 58, 0.4));
}

.split-right h2 { margin-bottom: 18px; }
.split-right p { margin-bottom: 16px; color: var(--terracotta); }

.fact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.fact-card {
  background: var(--pure-white);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--peach-border);
}

.fact-card .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--peach-accent);
  line-height: 1;
}

.fact-card .lbl {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
}

.timeline-block {
  position: relative;
  padding-left: 36px;
}

.timeline-block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--peach-accent), var(--peach-apricot));
}

.tl-step {
  position: relative;
  padding: 0 0 36px 28px;
}

.tl-step::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 3px solid var(--peach-accent);
  z-index: 2;
}

.tl-step .tl-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  color: var(--peach-deep);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.tl-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tl-step p { color: var(--text-soft); }

.masonry {
  column-count: 1;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--pure-white);
  border: 1px solid var(--peach-border);
  transition: all 0.3s ease;
}

.masonry-item:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 18px 50px rgba(225, 112, 85, 0.25);
  border-color: var(--peach-accent);
}

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

.masonry-cap {
  padding: 18px 20px;
  background: var(--pure-white);
}

.masonry-cap h4 { font-size: 1.05rem; margin-bottom: 4px; }
.masonry-cap .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--peach-deep);
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.advantage-card {
  background: var(--pure-white);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--peach-border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: scale(1.05);
  z-index: 10;
  border-color: var(--peach-accent);
  box-shadow: 0 20px 50px rgba(225, 112, 85, 0.25);
  background: linear-gradient(160deg, #fff, #FDF4F0);
}

.advantage-card .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--peach-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.advantage-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.advantage-card p { font-size: 0.95rem; color: var(--text-soft); }

.team-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-row {
  position: relative;
  background: var(--pure-white);
  border-radius: 22px;
  padding: 22px 26px;
  border: 1px solid var(--peach-border);
  transition: all 0.3s ease;
  cursor: default;
}

.team-row:hover {
  z-index: 10;
  transform: scale(1.02);
  border-color: var(--peach-accent);
  box-shadow: 0 16px 40px rgba(225, 112, 85, 0.2);
}

.team-row .row-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.team-row .name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--terracotta);
}

.team-row .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--peach-deep);
}

.team-reveal {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--peach-border);
  display: none;
  align-items: center;
  gap: 14px;
}

.team-row:hover .team-reveal, .team-row.is-tapped .team-reveal {
  display: flex;
}

.team-reveal img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--peach-accent);
}

.team-reveal .meta-block .nm { font-weight: 700; color: var(--terracotta); font-size: 0.95rem; }
.team-reveal .meta-block .exp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.reviews-carousel {
  position: relative;
  perspective: 1200px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  overflow: hidden;
}

.review-card {
  position: absolute;
  width: min(440px, 88%);
  background: var(--pure-white);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--peach-border);
  box-shadow: 0 12px 40px rgba(225, 112, 85, 0.15);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}

.review-card.is-active {
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 24px 60px rgba(225, 112, 85, 0.25);
  border-color: var(--peach-accent);
}

.review-card.is-prev {
  transform: translateX(-70%) scale(0.85) rotateY(20deg);
  opacity: 0.5;
  z-index: 2;
}

.review-card.is-next {
  transform: translateX(70%) scale(0.85) rotateY(-20deg);
  opacity: 0.5;
  z-index: 2;
}

.review-stars {
  color: var(--peach-apricot);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 1.05rem;
  color: var(--terracotta);
  margin-bottom: 16px;
  line-height: 1.7;
}

.review-author {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--peach-deep);
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.review-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--peach-accent);
  background: var(--pure-white);
  color: var(--peach-accent);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-controls button:hover {
  background: var(--peach-accent);
  color: var(--pure-white);
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--pure-white);
  border-radius: 22px;
  border: 1px solid var(--peach-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.is-open { border-color: var(--peach-accent); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--terracotta);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .icn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--peach-pale);
  color: var(--peach-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.is-open .faq-q .icn {
  background: var(--peach-accent);
  color: var(--pure-white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.faq-item.is-open .faq-a {
  max-height: 320px;
  padding: 0 24px 22px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  background: var(--pure-white);
  border-radius: 36px;
  padding: 36px;
  border: 1px solid var(--peach-border);
  box-shadow: 0 20px 50px rgba(225, 112, 85, 0.12);
}

.form-field { margin-bottom: 22px; }

.form-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--peach-deep);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.form-field input, .form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--peach-border);
  padding: 12px 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--terracotta);
  transition: border-color 0.3s ease;
}

.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--peach-accent);
}

.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.7;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  border: 2px solid var(--peach-border);
  border-radius: 16px;
  padding: 14px;
}

.info-block { padding: 8px 0; }

.info-block .info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--peach-border);
}

.info-block .info-row:last-child { border-bottom: none; }

.info-block .ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--peach-pale);
  color: var(--peach-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-block .info-row .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.info-block .info-row .val {
  font-weight: 600;
  color: var(--terracotta);
  font-size: 1rem;
  word-break: break-all;
}

.cta-banner {
  background: linear-gradient(135deg, var(--peach-accent), var(--peach-deep));
  border-radius: 36px;
  padding: 56px 32px;
  text-align: center;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--peach-apricot);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  top: -100px;
  right: -100px;
}

.cta-banner h2 { color: var(--pure-white); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); position: relative; margin-bottom: 28px; }
.cta-banner .cta-peach {
  background: var(--pure-white);
  color: var(--peach-deep) !important;
  position: relative;
}
.cta-banner .cta-peach:hover {
  background: var(--peach-base);
  color: var(--peach-accent) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 500;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--peach-border);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(107, 58, 58, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.cookie-banner h4 {
  font-size: 1.05rem;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

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

.cookie-btn {
  flex: 1;
  min-width: 110px;
  padding: 10px 16px;
  border-radius: 18px;
  border: 2px solid var(--peach-accent);
  background: transparent;
  color: var(--peach-accent);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.cookie-btn:hover { background: var(--peach-pale); }

.cookie-btn.is-accept {
  background: var(--peach-accent);
  color: var(--pure-white);
}

.cookie-btn.is-accept:hover { background: var(--peach-deep); border-color: var(--peach-deep); }

.cookie-links {
  font-size: 0.78rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-links a { color: var(--peach-deep); }

.footer-block {
  background: linear-gradient(180deg, var(--peach-accent) 0%, var(--peach-deep) 100%);
  color: var(--pure-white);
  border-radius: 48px 48px 0 0;
  padding: 64px 24px 28px;
  position: relative;
}

.footer-block h4, .footer-block h3, .footer-block p, .footer-block li, .footer-block a, .footer-block span, .footer-block address {
  color: var(--pure-white);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--pure-white);
}

.footer-col p {
  font-size: 0.92rem;
  opacity: 0.92;
  line-height: 1.7;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.92rem;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}
.footer-col a:hover { opacity: 1; color: var(--peach-apricot); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.9;
}

.footer-bottom a { color: var(--pure-white); text-decoration: underline; opacity: 0.9; }

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

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

.thanks-hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}

.thanks-card {
  max-width: 640px;
  background: var(--pure-white);
  border-radius: 36px;
  padding: 56px 40px;
  border: 1px solid var(--peach-border);
  box-shadow: 0 24px 60px rgba(225, 112, 85, 0.2);
}

.thanks-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-accent), var(--peach-deep));
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  box-shadow: 0 12px 30px rgba(225, 112, 85, 0.4);
}

.legal-page { padding: 120px 24px 60px; max-width: 880px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.legal-page h2 { font-size: 1.4rem; margin: 28px 0 12px; }
.legal-page p, .legal-page li { margin-bottom: 12px; color: var(--terracotta); line-height: 1.8; }
.legal-page ul { padding-left: 24px; }

.detail-hero {
  padding: 100px 24px 60px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(253, 219, 198, 0.4));
}

.detail-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.detail-hero img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid var(--peach-border);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.price-pill {
  display: inline-block;
  background: var(--peach-pale);
  color: var(--peach-deep);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 1.15rem;
  margin: 14px 0;
}

.kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  background: var(--peach-pale);
  padding: 2px 8px;
  border-radius: 8px;
  color: var(--peach-deep);
}

@media (min-width: 640px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .detail-hero-inner { grid-template-columns: 1.1fr 1fr; }
}

@media (min-width: 900px) {
  section { padding: 110px 32px; }
  .hero-block { padding: 100px 32px 80px; }
  .hero-content { grid-template-columns: 1.1fr 1fr; gap: 60px; }
  .bento-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(160px, auto); }
  .bento-cell.is-large { grid-column: span 2; grid-row: span 2; }
  .bento-cell.is-wide { grid-column: span 2; }
  .masonry { column-count: 3; }
  .advantage-grid { grid-template-columns: repeat(3, 1fr); }
  .split-sticky { grid-template-columns: 1fr 1.1fr; gap: 56px; }
  .contact-split { grid-template-columns: 1.1fr 1fr; padding: 48px; gap: 56px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .desktop-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .burger-btn { display: none; }
  .fact-row { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .hero-text h1 { font-size: 4.6rem; }
}
@media (max-width: 640px) {
  .hero-blob-1 { width: 200px; height: 200px; right: -40px; top: -50px; }
  .hero-blob-2 { width: 160px; height: 160px; left: -30px; bottom: -40px; }
  .hero-blob-3 { width: 140px; height: 140px; }
  .reviews-carousel {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }
  .reviews-carousel .review-card {
    position: relative;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    display: none;
  }
  .reviews-carousel .review-card.is-active {
    display: block;
  }
  .review-controls {
    display: flex;
  }
}

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