:root {
  --ink: #16181A;
  --charcoal: #3D3E3E;
  --charcoal-soft: #5A5C5C;
  --red: #E61C3C;
  --red-soft: #FF4D65;
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --line: rgba(22, 24, 26, 0.08);
  --shadow: 0 20px 60px -20px rgba(22, 24, 26, 0.25);
  --radius: 20px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

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

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.9rem;
}

/* Cursor spotlight */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(600px circle at var(--x, 50%) var(--y, 20%),
    rgba(230, 28, 60, 0.06), transparent 60%);
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) { .spotlight { display: none; } }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1160px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  gap: 4px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* Contact dropdown */
.contact-menu { position: relative; }
.contact-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 50;
}
.contact-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 9px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.contact-option-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-option-icon svg { width: 18px; height: 18px; }

.contact-option-whatsapp .contact-option-icon { background: #25D366; color: #fff; }
.contact-option-whatsapp:hover { background: rgba(37, 211, 102, 0.1); }

.contact-option-mail .contact-option-icon { background: var(--ink); color: #fff; }
.contact-option-mail:hover { background: var(--bg); }

.contact-note {
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.contact-trigger {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease;
}
.contact-trigger:hover,
.contact-trigger[aria-expanded="true"] {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.contact-trigger-mobile {
  width: 100%;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chevron { transition: transform 0.25s ease, color 0.25s ease; color: var(--charcoal-soft); }
.contact-trigger-mobile[aria-expanded="true"] { background: none; border-color: var(--line); color: var(--red); }
.contact-trigger-mobile[aria-expanded="true"] .chevron { transform: rotate(180deg); color: var(--red); }
.contact-menu-mobile .contact-dropdown {
  position: static;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 0;
  padding: 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), margin 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}
.contact-menu-mobile .contact-dropdown.open {
  max-height: 220px;
  margin: 10px 0 16px;
  padding: 8px 10px;
  border-color: var(--line);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:active { transform: scale(0.97); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-small { padding: 10px 20px; font-size: 0.88rem; }

/* Layout helpers */
main { position: relative; z-index: 2; }
section { padding: 140px 24px; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.02em; line-height: 1.1; }

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  overflow: hidden;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.display {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Spectrum: the logo's "i" mark, scattered like a soft cloud drifting behind the headline */
.spectrum {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1700px;
  max-width: 230vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.spectrum-mark {
  position: absolute;
  height: auto;
  opacity: 0.1;
}
.m1  { left: calc(50% - 640px); top: 14px;  width: 20px; animation: drift-a 12s ease-in-out infinite; }
.m2  { left: calc(50% - 480px); top: 128px; width: 46px; scale: -1 1; animation: drift-b 15s ease-in-out infinite; animation-delay: -3s; }
.m3  { left: calc(50% - 340px); top: 54px;  width: 16px; animation: drift-a 10s ease-in-out infinite; animation-delay: -5s; }
.m4  { left: calc(50% - 260px); top: 196px; width: 32px; scale: -1 1; animation: drift-b 13s ease-in-out infinite; animation-delay: -7s; }
.m5  { left: calc(50% + 260px); top: 6px;   width: 26px; animation: drift-a 14s ease-in-out infinite; animation-delay: -2s; }
.m6  { left: calc(50% + 380px); top: 150px; width: 56px; scale: -1 1; animation: drift-b 11s ease-in-out infinite; animation-delay: -6s; }
.m7  { left: calc(50% + 540px); top: 66px;  width: 18px; animation: drift-a 16s ease-in-out infinite; animation-delay: -9s; }
.m8  { left: calc(50% + 620px); top: 200px; width: 36px; scale: -1 1; animation: drift-b 12s ease-in-out infinite; animation-delay: -4s; }
.m9  { left: calc(50% - 60px);  top: -12px; width: 22px; animation: drift-a 13s ease-in-out infinite; animation-delay: -8s; }
.m10 { left: calc(50% - 760px); top: 90px;  width: 14px; animation: drift-b 17s ease-in-out infinite; animation-delay: -1s; }
.m11 { left: calc(50% + 740px); top: 110px; width: 30px; scale: -1 1; animation: drift-a 15s ease-in-out infinite; animation-delay: -10s; }

@keyframes drift-a {
  0%, 100% { translate: 0 0; }
  50% { translate: 18px -10px; }
}
@keyframes drift-b {
  0%, 100% { translate: 0 0; }
  50% { translate: -20px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .spectrum-mark { animation: none; }
}
@media (max-width: 760px) {
  .spectrum { display: none; }
}
.display .accent { color: var(--red); }
.accent-wrap { position: relative; z-index: 0; display: inline-block; }
.brush {
  position: absolute;
  left: -7%;
  width: 114%;
  top: 50%;
  height: 88%;
  transform: translateY(-50%) rotate(-1deg);
  z-index: -1;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 620px;
  margin: 28px auto 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(230,28,60,0.08), transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* Teaser */
.teaser { padding: 0 24px 100px; text-align: center; }
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -14px rgba(22, 24, 26, 0.18);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  max-width: 90vw;
  will-change: transform;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.teaser-link:hover {
  border-color: rgba(230, 28, 60, 0.3);
  box-shadow: 0 16px 36px -14px rgba(230, 28, 60, 0.25);
}
.teaser-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.teaser-arrow {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.teaser-link:hover .teaser-arrow { transform: translateX(4px); }

@media (max-width: 600px) {
  .teaser-link { flex-wrap: wrap; justify-content: center; text-align: center; padding: 16px 22px; }
}

/* Services */
.services { background: var(--surface); position: relative; }
.cards {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  position: relative;
}
.cards .card:nth-child(2) { margin-top: -28px; }
@media (max-width: 900px) {
  .cards .card:nth-child(2) { margin-top: 0; }
}
.card {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover {
  box-shadow: 0 30px 60px -20px rgba(22, 24, 26, 0.5);
  border-color: transparent;
  background: linear-gradient(165deg, var(--ink), #26282A 70%);
}
.card-index {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(22, 24, 26, 0.1);
  transition: -webkit-text-stroke-color 0.4s ease;
  pointer-events: none;
}
.card:hover .card-index { -webkit-text-stroke-color: rgba(255, 255, 255, 0.18); }
.card-icon {
  position: relative;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 65%, var(--red) 145%);
  box-shadow: 0 10px 24px -10px rgba(230, 28, 60, 0.45);
  color: #fff;
  margin-bottom: 22px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.card-icon svg { width: 24px; height: 24px; }
.card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
  background: #fff;
  color: var(--red);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5);
}
.card h3 {
  position: relative;
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.card:hover h3 { color: #fff; }
.card p {
  position: relative;
  color: var(--charcoal-soft);
  line-height: 1.55;
  font-size: 0.96rem;
  transition: color 0.4s ease;
}
.card:hover p { color: rgba(255, 255, 255, 0.68); }

.card-tags {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 18px 0 0;
}
.card-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--charcoal-soft);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.card:hover .card-tags li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

/* Formula banner: Prodüksiyon + Tanıtım + Basın = Boost! */
.formula {
  position: relative;
  max-width: 900px;
  margin: 64px auto 0;
  padding: 36px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  text-align: center;
}
.formula-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 560px; height: 220px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(230, 28, 60, 0.12), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.formula-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--charcoal);
  box-shadow: 0 10px 24px -16px rgba(22, 24, 26, 0.25);
}
.formula-icon {
  display: flex;
  width: 18px; height: 18px;
  color: var(--red);
}
.formula-icon svg { width: 100%; height: 100%; }
.formula-op {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal-soft);
}
.formula-eq { color: var(--red); font-weight: 500; }
.formula-result {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--ink), var(--red) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.formula-bang { color: var(--red); -webkit-text-fill-color: var(--red); }

@media (max-width: 640px) {
  .formula { padding: 28px 16px; gap: 12px 14px; }
  .formula-op { font-size: 1.3rem; }
}

/* Product */
.product { background: var(--ink); color: #fff; overflow: hidden; }
.product .eyebrow { color: var(--red-soft); margin-bottom: 12px; }
.product h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 20px; }

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff4d65);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 0 0 0 rgba(230, 28, 60, 0.5);
  animation: badge-pulse 2.6s ease-in-out infinite;
}
.compliance-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 28, 60, 0.45); }
  50% { box-shadow: 0 0 0 9px rgba(230, 28, 60, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .compliance-badge { animation: none; }
}
@media (max-width: 640px) {
  .compliance-badge { font-size: 0.7rem; padding: 8px 14px 8px 12px; }
}
.product .lead { color: rgba(255,255,255,0.68); margin: 0 0 24px; }
.product-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.product-copy { position: relative; }
.demo-pointer {
  position: absolute;
  top: 70px;
  right: -166px;
  width: 150px;
  height: 90px;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 1080px) {
  .demo-pointer { display: none; }
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 0.96rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
}
.product .btn-primary { background: #fff; color: var(--ink); }

.product-visual { display: flex; justify-content: center; perspective: 1000px; }
.phone-mock {
  --menu-green: #7A2230;
  --menu-green-dark: #4A1119;
  width: 312px;
  padding: 18px 14px;
  border-radius: 40px;
  background: linear-gradient(160deg, #26282A, #1a1c1e);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  transform-style: preserve-3d;
  will-change: transform;
}
.phone-notch {
  width: 56px; height: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 14px;
}
.menu-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
}
.menu-cover {
  background: linear-gradient(135deg, var(--menu-green), var(--menu-green-dark));
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.menu-name { color: #fff; font-weight: 700; font-size: 1rem; line-height: 1.2; }
.menu-meta { color: rgba(255,255,255,0.85); font-size: 0.76rem; margin-top: 2px; }
.menu-tabs {
  display: flex;
  gap: 7px;
  padding: 13px 14px;
  overflow: hidden;
}
.menu-tab {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #E4E6E5;
  color: #667;
}
.menu-tab.active {
  background: var(--menu-green);
  border-color: var(--menu-green);
  color: #fff;
}

/* Item list: fixed 3-row window, hover glides down to reveal 3 more */
.menu-items {
  height: 198px;
  overflow: hidden;
  position: relative;
}
.menu-items-track {
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-visual:hover .menu-items-track,
.product-visual.menu-open .menu-items-track {
  transform: translateY(-198px);
}
@media (prefers-reduced-motion: reduce) {
  .menu-items-track { transition: none; }
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 66px;
  padding: 0 14px;
  border-top: 1px solid #F0F1F0;
  box-sizing: border-box;
}
.menu-item-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #F3F4F3;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name { font-size: 0.82rem; font-weight: 700; color: #16181A; }
.menu-item-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #FEF3E2;
  color: #B4740A;
  font-size: 0.62rem;
  font-weight: 600;
}
.menu-item-badge.hot { background: #FEECEC; color: #C0392B; }
.menu-item-price { font-size: 0.86rem; font-weight: 800; color: var(--menu-green); flex-shrink: 0; }

.menu-hint {
  text-align: center;
  font-size: 0.66rem;
  color: #98a09c;
  padding: 8px 0 4px;
  transition: opacity 0.3s ease;
}
.product-visual:hover .menu-hint,
.product-visual.menu-open .menu-hint { opacity: 0; }

/* Contact */
.contact { text-align: center; }
.contact h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -0.02em; margin: 0 0 16px; }
.contact .lead { margin: 0 auto 32px; }
.mail-link {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 10px 4px;
  border-bottom: 2px solid var(--ink);
  will-change: transform;
}

/* Footer */
.footer { padding: 40px 24px; border-top: 1px solid var(--line); }
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { height: 26px; opacity: 0.85; }
.footer-inner p { margin-left: auto; font-size: 0.85rem; color: var(--charcoal-soft); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Service cards: converge toward center, left → right, staggered */
.cards .card {
  transition-duration: 0.8s;
}
.cards .card:nth-child(1) { transform: translate(-48px, 20px); }
.cards .card:nth-child(2) { transform: translate(0, 34px); }
.cards .card:nth-child(3) { transform: translate(48px, 20px); }
.cards .card.in { transform: translate(0, 0); }
.cards .card:nth-child(1).in { transition-delay: 0s; }
.cards .card:nth-child(2).in { transition-delay: 0.15s; }
.cards .card:nth-child(3).in { transition-delay: 0.3s; }
@media (max-width: 900px) {
  .cards .card:nth-child(1),
  .cards .card:nth-child(2),
  .cards .card:nth-child(3) { transform: translateY(24px); }
}

/* Responsive */
@media (max-width: 900px) {
  .product-inner { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner .btn-small { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 96px 20px; }
  .hero { padding-top: calc(var(--nav-h) + 20px); min-height: auto; }
}
