:root {
  --honey-50: #FFFCF0;
  --honey-100: #FEF9E7;
  --honey-200: #FEF3C7;
  --honey-300: #FDE68A;
  --amber-500: #F59E0B;
  --orange-500: #EA580C;
  --orange-600: #C2410C;
  --orange-700: #9A3412;
  --brown-900: #451A03;
  --brown-700: #92400E;
  --brown-500: #B45309;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 32px rgba(234, 88, 12, 0.08);
  --shadow-hover: 0 20px 50px rgba(234, 88, 12, 0.18);
  --shadow-button: 8px 8px 0px #EA580C;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', 'Noto Serif JP', serif;
  --font-body: 'Lora', 'Noto Serif JP', serif;
  --font-tech: 'JetBrains Mono', 'Courier New', monospace;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--brown-900);
  background: linear-gradient(135deg, #FEF3C7 0%, #FEF9E7 50%, #FFFCF0 100%);
  background-attachment: fixed;
  cursor: default;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brown-900);
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--font-body);
}

p {
  color: var(--brown-700);
  font-size: 17px;
  line-height: 1.9;
}

a {
  text-decoration: none;
  color: var(--orange-500);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange-700);
}

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

img, .pure-img {
  max-width: 100%;
  height: auto;
}

.pure-g {
  letter-spacing: 0;
}

.pure-g > div {
  letter-spacing: 0;
}

.container-honey {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-tight {
  padding: 48px 0;
}

.text-tech {
  font-family: var(--font-tech);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.text-caption {
  font-family: var(--font-tech);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-500);
}

.lead-text {
  font-size: 19px;
  line-height: 1.8;
  color: var(--brown-700);
}

.btn-honey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: var(--orange-500);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn-honey:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px var(--orange-700);
  color: var(--white);
}

.btn-honey:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0px var(--orange-700);
}

.btn-honey-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 33px;
  background: var(--white);
  color: var(--orange-500);
  border: 3px solid var(--orange-500);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn-honey-outline:hover {
  background: var(--orange-500);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.card-honey {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  color: var(--brown-900);
}

.card-honey:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brown-900);
}

.section-subtitle {
  font-size: 18px;
  color: var(--brown-700);
  max-width: 640px;
  margin-bottom: 48px;
}

.divider-honey {
  width: 64px;
  height: 4px;
  background: var(--orange-500);
  border-radius: 4px;
  margin: 0 0 24px 0;
}

.divider-honey.center {
  margin-left: auto;
  margin-right: auto;
}

.spotlight-cursor {
  position: fixed;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  filter: blur(8px);
  mix-blend-mode: multiply;
  display: none;
}

@media (min-width: 1024px) {
  .spotlight-cursor { display: block; }
}

a, button, .card-honey, .bento-tile, .stack-card, .reveal-element {
  cursor: pointer;
}

a:hover, button:hover, .card-honey:hover, .bento-tile:hover, .stack-card:hover {
  cursor: crosshair;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 88, 12, 0.15);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  padding: 0 24px;
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--brown-700);
  border-bottom: 1px solid rgba(234, 88, 12, 0.08);
  max-width: 1280px;
  margin: 0 auto;
}

.header-domain {
  letter-spacing: 0.08em;
  color: var(--orange-500);
  font-weight: 600;
}

.header-phone-mini {
  color: var(--brown-700);
  text-decoration: none;
}

.header-phone-mini:hover {
  color: var(--orange-500);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 16px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown-900);
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--orange-500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 4px 4px 0 var(--orange-600);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-900);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--orange-500);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

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

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--brown-700);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: var(--orange-500);
  color: var(--white);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
    padding: 12px 22px;
    background: var(--orange-500);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--orange-600);
    transition: all 0.2s ease;
  }

  .header-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--orange-700);
    color: var(--white);
  }
}

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

@media (min-width: 1024px) {
  .burger-btn {
    display: none;
  }
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.98), rgba(254, 249, 231, 0.98));
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 80px 24px 40px;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu::before,
.mobile-menu::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.mobile-menu::before {
  width: 300px;
  height: 300px;
  background: var(--orange-500);
  opacity: 0.2;
  top: 10%;
  left: -50px;
  animation: pulse-blob 6s ease-in-out infinite;
}

.mobile-menu::after {
  width: 250px;
  height: 250px;
  background: var(--amber-500);
  opacity: 0.2;
  bottom: 10%;
  right: -50px;
  animation: pulse-blob 8s ease-in-out infinite reverse;
}

@keyframes pulse-blob {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--brown-900);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-900);
  z-index: 10;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.mobile-nav-list li {
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 0.4s ease forwards;
}

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

@keyframes scaleIn {
  to { opacity: 1; transform: scale(1); }
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--brown-900);
  padding: 12px 0;
  border-bottom: 1px solid rgba(234, 88, 12, 0.15);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--orange-500);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.kinetic-word {
  position: absolute;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 700;
  color: var(--orange-500);
  opacity: 0.06;
  letter-spacing: 0.15em;
  white-space: nowrap;
  user-select: none;
}

.kinetic-word:nth-child(1) {
  top: 10%;
  left: -5%;
  animation: float-1 25s linear infinite;
}

.kinetic-word:nth-child(2) {
  top: 35%;
  right: -8%;
  animation: float-2 30s linear infinite;
}

.kinetic-word:nth-child(3) {
  bottom: 25%;
  left: 10%;
  animation: float-3 28s linear infinite;
}

.kinetic-word:nth-child(4) {
  top: 60%;
  right: 5%;
  animation: float-1 35s linear infinite reverse;
}

.kinetic-word:nth-child(5) {
  bottom: 5%;
  left: 30%;
  animation: float-2 22s linear infinite;
}

@keyframes float-1 {
  0% { transform: translate(0, 0) rotate(-5deg); }
  50% { transform: translate(60px, -40px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(-5deg); }
}

@keyframes float-2 {
  0% { transform: translate(0, 0) rotate(3deg); }
  50% { transform: translate(-80px, 30px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(3deg); }
}

@keyframes float-3 {
  0% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(50px, 60px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(-2deg); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234, 88, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 88, 12, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tech);
  font-size: 13px;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--brown-900);
}

@media (min-width: 768px) {
  .hero-title { font-size: 64px; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 80px; }
}

.hero-title-accent {
  color: var(--orange-500);
  font-style: italic;
  display: block;
}

.hero-subline {
  font-family: var(--font-tech);
  font-size: 14px;
  color: var(--brown-700);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--brown-700);
  font-family: var(--font-tech);
}

.hero-meta-icon {
  color: var(--orange-500);
  font-size: 18px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px dashed rgba(234, 88, 12, 0.2);
}

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

.hero-trust-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
}

.hero-trust-label {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--brown-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.hero-visual-3d {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 180px;
  box-shadow: var(--shadow-hover);
  animation: morph 18s ease-in-out infinite;
  overflow: hidden;
}

@keyframes morph {
  0%, 100% { border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%; }
  33% { border-radius: 30% 60% 40% 70% / 60% 40% 70% 30%; }
  66% { border-radius: 60% 40% 70% 30% / 30% 70% 40% 60%; }
}

.hero-visual-icon {
  position: relative;
  z-index: 2;
  color: var(--orange-500);
  text-shadow: 8px 8px 0 var(--orange-600);
}

.hero-badge {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  z-index: 3;
  font-size: 13px;
}

.hero-badge-1 {
  top: 10%;
  left: -10%;
  animation: float-badge 4s ease-in-out infinite;
}

.hero-badge-2 {
  bottom: 15%;
  right: -10%;
  animation: float-badge 5s ease-in-out infinite reverse;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge-label {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hero-badge-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-900);
}

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

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
  }
}

.bento-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--brown-900);
  border: 2px solid transparent;
  min-height: 200px;
}

.bento-tile:hover {
  transform: scale(1.03) translateY(-5px);
  z-index: 10;
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-500);
}

.bento-tile-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white);
}

.bento-tile-large p,
.bento-tile-large h3 {
  color: var(--white);
}

.bento-tile-wide {
  grid-column: span 2;
  background: var(--brown-900);
  color: var(--honey-200);
}

.bento-tile-wide p,
.bento-tile-wide h3 {
  color: var(--honey-200);
}

.bento-tile-num {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.bento-tile-large .bento-tile-num {
  color: var(--honey-200);
}

.bento-tile h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brown-900);
  font-family: var(--font-display);
}

.bento-tile-large.bento-tile h3, .bento-tile-large.bento-tile p,
.bento-tile-wide.bento-tile h3, .bento-tile-wide.bento-tile p {
  color: white;
}

.bento-tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--brown-700);
}

.bento-tile-icon {
  font-size: 40px;
  color: var(--orange-500);
  margin-bottom: 12px;
}

.bento-tile-large .bento-tile-icon {
  color: var(--honey-200);
}

.bento-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  position: absolute;
  inset: 0;
}

.bento-tile-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bento-tile-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  z-index: 1;
}

.bento-tile-img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

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

@media (min-width: 1024px) {
  .split-screen {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.split-left {
  position: sticky;
  top: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4 / 5;
}

@media (max-width: 1023px) {
  .split-left {
    position: static;
    aspect-ratio: 16 / 10;
  }
}

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

.stacking-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .stacking-row {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

.stack-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  width: 100%;
  max-width: 280px;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  color: var(--brown-900);
}

@media (min-width: 1024px) {
  .stack-card {
    margin-left: -60px;
  }
  .stack-card:first-child {
    margin-left: 0;
  }
}

.stack-card:hover {
  transform: translateY(-10px) scale(1.08);
  z-index: 10;
  border-color: var(--orange-500);
  box-shadow: var(--shadow-hover);
}

.stack-card-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.stack-card-country {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.stack-card-desc {
  font-size: 13px;
  color: var(--brown-700);
  line-height: 1.6;
}

.masonry-grid {
  column-count: 1;
  column-gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .masonry-grid { column-count: 2; }
}

@media (min-width: 1024px) {
  .masonry-grid { column-count: 3; }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  color: var(--brown-900);
}

.masonry-item:hover {
  transform: scale(1.03) translateY(-5px);
  z-index: 10;
  box-shadow: var(--shadow-hover);
}

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

.masonry-caption {
  padding: 20px;
}

.masonry-caption h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--brown-900);
  font-family: var(--font-display);
}

.masonry-caption p {
  font-size: 13px;
  color: var(--brown-700);
  margin: 0;
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .flex-grow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .flex-grow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  color: var(--brown-900);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: scale(1.08);
  z-index: 10;
  border-color: var(--orange-500);
  box-shadow: var(--shadow-hover);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brown-900);
  font-family: var(--font-display);
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--brown-700);
}

.team-list {
  margin-top: 40px;
  border-top: 1px solid rgba(234, 88, 12, 0.15);
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8px;
  border-bottom: 1px solid rgba(234, 88, 12, 0.15);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  color: var(--brown-900);
  gap: 16px;
}

.team-row:hover {
  background: var(--white);
  padding: 32px 24px;
  z-index: 10;
  box-shadow: var(--shadow-hover);
}

.team-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--brown-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .team-name { font-size: 36px; }
}

.team-role {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
}

.team-tooltip {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) scale(0.8);
  background: var(--brown-900);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: var(--shadow-hover);
  max-width: 360px;
}

.team-row:hover .team-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  right: 80px;
}

@media (max-width: 1023px) {
  .team-tooltip {
    position: static;
    transform: none;
    opacity: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background: var(--honey-100);
    color: var(--brown-900);
    width: 100%;
    margin-top: 12px;
    box-shadow: none;
  }

  .team-row.is-tapped .team-tooltip {
    opacity: 1;
    max-height: 200px;
    padding: 16px;
    transform: none;
  }

  .team-row {
    flex-wrap: wrap;
  }
}

.team-tooltip-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.team-tooltip-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-tooltip-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: inherit;
}

.team-tooltip-role {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-tooltip-exp {
  font-size: 12px;
  color: inherit;
  opacity: 0.8;
}

.reviews-coverflow {
  position: relative;
  margin-top: 48px;
  perspective: 1200px;
  padding: 40px 0;
}

.reviews-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 360px;
  gap: 16px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 340px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--brown-900);
  cursor: pointer;
}

.review-card.is-active {
  transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0);
  z-index: 10;
  box-shadow: var(--shadow-hover);
}

.review-card.is-prev {
  transform: translate(-50%, -50%) translateX(-110%) scale(0.85) rotateY(15deg);
  opacity: 0.5;
  z-index: 5;
}

.review-card.is-next {
  transform: translate(-50%, -50%) translateX(110%) scale(0.85) rotateY(-15deg);
  opacity: 0.5;
  z-index: 5;
}

.review-card.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.review-stars {
  color: var(--orange-500);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown-700);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--brown-900);
}

.review-author-loc {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--orange-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.review-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange-500);
  color: var(--orange-500);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.review-btn:hover {
  background: var(--orange-500);
  color: var(--white);
}

.accordion {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--brown-900);
}

.accordion-item.is-open {
  box-shadow: var(--shadow-hover);
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--brown-900);
  gap: 16px;
  min-height: 44px;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.is-open .accordion-content {
  max-height: 400px;
}

.accordion-content-inner {
  padding: 0 24px 24px;
  color: var(--brown-700);
  font-size: 15px;
  line-height: 1.8;
}

.cta-banner {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  border-radius: var(--radius-xl);
  padding: 60px 32px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--amber-500);
  opacity: 0.2;
  pointer-events: none;
}

.cta-banner::before {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  filter: blur(40px);
}

.cta-banner::after {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -50px;
  filter: blur(50px);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-banner h2 { font-size: 48px; }
}

.cta-banner p {
  color: var(--honey-200);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-honey {
  background: var(--white);
  color: var(--orange-500);
  box-shadow: 8px 8px 0 var(--brown-900);
}

.cta-banner .btn-honey:hover {
  color: var(--orange-500);
  box-shadow: 10px 10px 0 var(--brown-900);
}

.cta-banner .btn-honey-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-banner .btn-honey-outline:hover {
  background: var(--white);
  color: var(--orange-500);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.contact-form {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--brown-900);
}

.form-field {
  margin-bottom: 24px;
  position: relative;
}

.form-field label {
  display: block;
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--brown-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--honey-300);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brown-900);
  transition: border-color 0.3s ease;
  border-radius: 0;
  min-height: 44px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--orange-500);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  font-size: 12px;
  color: #DC2626;
  margin-top: 4px;
  display: none;
}

.form-field.has-error .form-error {
  display: block;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-bottom-color: #DC2626;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #16A34A;
  color: #14532D;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
  font-weight: 600;
}

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

.contact-info-block {
  background: var(--brown-900);
  color: var(--honey-200);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.contact-info-block h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.contact-info-block p,
.contact-info-block a,
.contact-info-block address,
.contact-info-block li {
  color: var(--honey-200);
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--amber-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

a.contact-info-value:hover {
  color: var(--orange-500);
}

.site-footer {
  background: var(--orange-500);
  color: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 64px 0 32px;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amber-500), var(--brown-900), var(--amber-500));
}

.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer address {
  color: var(--white);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--honey-200);
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-900);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--honey-200);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.footer-legal a {
  color: var(--honey-200);
  font-size: 13px;
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--white);
  color: var(--brown-900);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(69, 26, 3, 0.25);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid var(--honey-300);
}

@media (min-width: 768px) {
  .cookie-banner {
    right: auto;
  }
}

.cookie-banner.is-hidden {
  display: none;
}

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

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

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

.cookie-btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 40px;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background: var(--orange-500);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--orange-700);
}

.cookie-btn-decline {
  background: var(--honey-100);
  color: var(--brown-700);
  border: 1px solid var(--honey-300);
}

.cookie-btn-decline:hover {
  background: var(--honey-200);
}

.cookie-link {
  font-size: 12px;
  color: var(--orange-500);
  text-decoration: underline;
}

.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.56s; }

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

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

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.06), rgba(245, 158, 11, 0.04));
  z-index: -1;
}

.page-hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
  max-width: 800px;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 64px; }
}

.page-hero p {
  font-size: 18px;
  color: var(--brown-700);
  max-width: 640px;
}

.breadcrumb {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--orange-500);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--brown-700);
  opacity: 0.5;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
  }
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  color: var(--brown-900);
  font-size: 15px;
  line-height: 1.6;
}

.service-feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}

.price-box {
  background: var(--brown-900);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  text-align: center;
}

.price-box p,
.price-box h3,
.price-box span {
  color: var(--white);
}

.price-box .price-label {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--amber-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-box .price-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.price-box .price-note {
  font-size: 13px;
  color: var(--honey-200);
}

.thank-you-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.thank-you-card {
  max-width: 640px;
  background: var(--white);
  padding: 64px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
  color: var(--brown-900);
}

.thank-you-icon {
  width: 96px;
  height: 96px;
  background: var(--orange-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 48px;
  color: var(--white);
  box-shadow: var(--shadow-button);
}

.thank-you-card h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--brown-900);
}

@media (min-width: 768px) {
  .thank-you-card h1 { font-size: 48px; }
}

.thank-you-card p {
  font-size: 18px;
  color: var(--brown-700);
  margin-bottom: 32px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--brown-900);
}

@media (min-width: 768px) {
  .legal-content {
    padding: 64px 56px;
  }
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 8px;
  color: var(--brown-900);
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--brown-900);
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--brown-900);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-700);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 16px 24px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-700);
  margin-bottom: 8px;
}

.legal-content .updated {
  font-family: var(--font-tech);
  font-size: 12px;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mt-4 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }

@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }
  .container-honey {
    padding: 0 20px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  .section-title {
    font-size: 32px;
  }
  .hero-section {
    min-height: auto;
    padding: 60px 0 40px;
    overflow-x: hidden;
  }
  .hero-badge {
    display: none;
  }
  .kinetic-word {
    display: none;
  }
  .reviews-track {
    height: 420px;
  }
  .review-card.is-prev,
  .review-card.is-next {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
  .review-card {
    max-width: 90%;
  }
  .masonry-grid {
    column-count: 1;
  }
  .stacking-row {
    align-items: center;
  }
  .stack-card {
    margin-left: 0;
    max-width: 100%;
  }
}

.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--orange-500);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--honey-100);
}

::-webkit-scrollbar-thumb {
  background: var(--orange-500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-700);
}
