/* =========================================================
   Siti per Tutti — stylesheet
   Palette: blu principale, bianco, accento arancione
   ========================================================= */

:root {
  --blue-900: #1a2540;
  --blue-700: #2454c7;
  --blue-600: #3564d6;
  --blue-100: #eef1fa;
  --blue-50:  #f6f8fd;
  --orange-500: #dd6b34;
  --orange-600: #c85a26;
  --ink: #1f2740;
  --ink-soft: #5b6478;
  --white: #fbfaf6;
  --paper: #ffffff;
  --border: #e5e1d6;
  --bg-alt: #f6f4ee;
  --shadow: 0 10px 30px rgba(26, 37, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 37, 64, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', 'Segoe UI', sans-serif;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--blue-900);
  line-height: 1.2;
  text-wrap: balance;
}

h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 0.5rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }

.section-eyebrow {
  color: var(--orange-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin-top: 0.7rem;
  margin-bottom: 3.4rem;
}

.section { padding: 104px 0; }
.section-alt { background: var(--bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }

.btn-primary {
  background: var(--orange-500);
  color: var(--paper);
  box-shadow: 0 8px 20px rgba(221, 107, 52, 0.35);
}
.btn-primary:hover { background: var(--orange-600); }
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  background: transparent;
  color: var(--blue-900);
  border-color: var(--blue-900);
}
.btn-ghost:hover { background: var(--blue-900); color: var(--paper); }

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-100);
  width: 100%;
}
.btn-outline:hover { border-color: var(--blue-700); }
.btn-outline:active, .btn-ghost:active { transform: scale(0.97); }

.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26, 37, 64, 0);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(26, 37, 64, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  height: 54px;
  width: auto;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-900);
}
.logo span { color: var(--orange-500); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-700); }

.nav-cta {
  background: var(--blue-700);
  color: var(--paper) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-900); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 8% 12%, var(--blue-50), var(--white) 60%);
  padding: 96px 0 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 600;
  text-wrap: balance;
  margin-bottom: 14px;
}
.hero h1 .accent { color: var(--orange-500); font-style: italic; }

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero entrance — staggered fade-up on load */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-text > .eyebrow      { animation-delay: 0.05s; }
.hero-text > h1            { animation-delay: 0.16s; }
.hero-text > .hero-sub     { animation-delay: 0.27s; }
.hero-text > .hero-actions { animation-delay: 0.38s; }
.hero-text > .hero-trust   { animation-delay: 0.49s; }

/* Hero visual — a "receipt" that makes the flat-price promise literal */
.hero-visual {
  display: flex;
  justify-content: center;
}

.receipt {
  background: var(--paper);
  width: 100%;
  max-width: 300px;
  padding: 32px 26px 26px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  position: relative;
  animation: receipt-settle 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes receipt-settle {
  from { opacity: 0; transform: rotate(-8deg) translateY(-22px) scale(0.94); }
  to   { opacity: 1; transform: rotate(3deg) translateY(0) scale(1); }
}
.receipt::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 18px;
  background:
    radial-gradient(circle at 8px 0, transparent 9px, var(--paper) 9.5px) 0 0 / 18px 18px repeat-x;
}

.receipt-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--blue-900);
  font-size: 1.05rem;
  margin-bottom: 18px;
  text-align: center;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 7px 0;
  font-variant-numeric: tabular-nums;
}
.receipt-row span:first-child { min-width: 0; overflow-wrap: break-word; }
.receipt-row span:last-child { flex-shrink: 0; }

.receipt-divider {
  border-top: 1px dashed var(--border);
  margin: 10px 0;
}

.receipt-total {
  color: var(--blue-900);
  font-weight: 700;
}

.receipt-stamp {
  margin-top: 20px;
  text-align: center;
  color: var(--orange-500);
  border: 2px solid var(--orange-500);
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: rotate(-2deg);
}

/* ---------- Cards grid ---------- */
.cards-grid {
  display: grid;
  gap: 32px;
}
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card:active { transform: translateY(-1px) scale(0.99); }

.card-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: 12px;
  margin-bottom: 18px;
}

.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--orange-500);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  animation: featured-glow 3.2s ease-in-out infinite;
}
@keyframes featured-glow {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(221, 107, 52, 0.18); }
  50%      { box-shadow: var(--shadow-lg), 0 0 0 10px rgba(221, 107, 52, 0); }
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 20px; min-height: 44px; }

.price { margin-bottom: 24px; }
.price .amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--blue-900);
}

.price-features {
  flex-grow: 1;
  margin-bottom: 28px;
}
.price-features li {
  padding: 9px 0;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.93rem;
  padding-left: 26px;
  position: relative;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: 700;
}

.price-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--paper);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step p { color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Portfolio ---------- */
.portfolio-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.portfolio-photo-stack {
  display: flex;
  flex-direction: column;
  aspect-ratio: 1280 / 840;
}
.portfolio-photo-stack img {
  display: block;
  width: 100%;
  flex: 500 500 0%;
  min-height: 0;
  object-fit: cover;
  object-position: top;
}
.portfolio-photo-strip {
  flex: 340 340 0%;
  border-top: 1px solid var(--border);
}

.portfolio-preview {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.portfolio-preview:hover { transform: translateY(-4px); }

.portfolio-tag {
  display: block;
  text-align: center;
  padding: 14px;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
}

.portfolio-slots {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.portfolio-slots .portfolio-slot { flex: 1; }
.portfolio-slot {
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  background: var(--paper);
}
.slot-icon { font-size: 1.4rem; }
.portfolio-slot strong { color: var(--blue-900); }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.stars { color: var(--orange-500); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: var(--ink); font-size: 0.98rem; margin-bottom: 18px; font-style: italic; }
.review-author { font-weight: 600; color: var(--blue-900); font-size: 0.9rem; }
.review-author span { font-weight: 400; color: var(--ink-soft); }

.review-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

.review-form-wrap {
  max-width: 520px;
  margin: 48px auto 0;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.review-form-wrap h3 { margin-bottom: 6px; }
.review-form-lead {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.review-form { text-align: left; }
.review-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.review-form select:focus {
  outline: none;
  border-color: var(--blue-700);
  background: var(--paper);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--blue-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--orange-500);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 4px;
}
.faq-answer p { color: var(--ink-soft); font-size: 0.95rem; padding-bottom: 0; }
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 20px; }

/* ---------- Contatti ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--blue-900);
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-link:hover { border-color: var(--blue-700); background: var(--blue-50); }
.contact-icon { font-size: 1.1rem; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.form-row .optional { color: var(--ink-soft); font-weight: 400; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  background: var(--paper);
}
.form-row textarea { resize: vertical; }

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}
.form-note.success { color: #16a34a; }
.form-note.error { color: #dc2626; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand .logo { color: var(--paper); margin-bottom: 12px; display: inline-block; }
.footer-brand .logo span { color: var(--orange-500); }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); max-width: 280px; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--orange-500); }

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float:active { transform: scale(0.94); }
.whatsapp-icon { font-size: 1.6rem; position: relative; z-index: 1; }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-ping 2.6s ease-out infinite;
}
@keyframes whatsapp-ping {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.cards-grid .reveal:nth-child(2)  { transition-delay: 0.08s; }
.cards-grid .reveal:nth-child(3)  { transition-delay: 0.16s; }
.cards-grid .reveal:nth-child(4)  { transition-delay: 0.24s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.steps .reveal:nth-child(4) { transition-delay: 0.24s; }
.portfolio-slots .reveal:nth-child(2) { transition-delay: 0.1s; }
.portfolio-slots .reveal:nth-child(3) { transition-delay: 0.2s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .cards-grid.four { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .portfolio-showcase { grid-template-columns: 1fr; }
  .portfolio-slots { flex-direction: column; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(150px, 240px); gap: 28px; align-items: start; }
  .hero-visual { padding-top: 6px; }
  .receipt { max-width: 240px; padding: 22px 18px 18px; }
  .receipt-label { font-size: 0.9rem; margin-bottom: 12px; }
  .receipt-row { font-size: 0.78rem; padding: 5px 0; }
  .receipt-divider { margin: 7px 0; }
  .receipt-stamp { font-size: 0.68rem; padding: 5px 8px; margin-top: 14px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 30px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .menu-toggle { display: flex; }

  .section { padding: 64px 0; }
  .cards-grid.four,
  .cards-grid.three,
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 60px; }
  .hero-trust { flex-direction: column; gap: 10px; }

  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(110px, 160px); gap: 16px; }
  .hero-visual { padding-top: 72px; }
  .receipt { max-width: 160px; padding: 15px 12px 12px; border-radius: 3px; transform: rotate(2deg); }
  .receipt-label { font-size: 0.76rem; margin-bottom: 9px; letter-spacing: -0.01em; }
  .receipt-row { font-size: 0.64rem; padding: 4px 0; }
  .receipt-row span:first-child { max-width: 62%; }
  .receipt-divider { margin: 5px 0; }
  .receipt-stamp {
    font-size: 0.52rem;
    padding: 4px 5px;
    margin-top: 10px;
    border-width: 1px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

@media (max-width: 400px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(98px, 132px); }
  .hero-visual { padding-top: 90px; }
  .receipt { max-width: 132px; padding: 12px 10px 10px; }
  .receipt-label { font-size: 0.66rem; }
  .receipt-row { font-size: 0.56rem; }
  .receipt-stamp { font-size: 0.46rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
