/* ══════════════════════════════════════════════
   apper.dev — Minimal Brutal CSS
   Palette: #0a0a0a · #f5f5f0 · #fff · #111
   No gradients. Just stark, confident design.
══════════════════════════════════════════════ */

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

:root {
  --black:    #0a0a0a;
  --white:    #f5f5f0;
  --pure:     #ffffff;
  --dim:      #888;
  --border:   rgba(255,255,255,0.08);
  --border-l: rgba(0,0,0,0.1);
  --font:     'Space Grotesk', sans-serif;
  --mono:     'Space Mono', monospace;
  --radius:   4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              width 0.2s, height 0.2s, opacity 0.2s;
}

body:hover .cursor { opacity: 1; }

.cursor.active { transform: translate(-50%, -50%) scale(2.5); background: transparent; border: 1.5px solid var(--black); }
.cursor-follower.active { width: 56px; height: 56px; opacity: 0.4; }

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--black); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

em { font-style: italic; font-weight: 700; }

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

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 var(--border-l);
}

.nav-logo {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--dim);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  opacity: 1 !important;
  padding: 9px 18px;
  border: 1.5px solid var(--black);
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 490;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  overflow: hidden;
  margin-bottom: 12px;
}

.mobile-link {
  display: block;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  padding: 8px 0;
  transition: opacity 0.2s;
}

.mobile-link:hover { opacity: 0.5; }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > * { display: block; }

.hero-title em {
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #444;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: #222;
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}

.btn-ghost:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ─── HERO STATS ─── */
.hero-stat-strip {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border-l);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 680px;
}

.stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stat p {
  font-size: 0.7rem;
  color: var(--dim);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-l);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--dim);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1.5px solid var(--border-l);
  border-bottom: 1.5px solid var(--border-l);
  padding: 18px 0;
  background: var(--black);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #555;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-tinted {
  background: #efefeb;
}

.section-header {
  margin-bottom: 72px;
}

.section-tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 16px;
}

.section-tag.light { color: #555; }

.section-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.section-title.light { color: var(--white); }

.section-desc {
  margin-top: 16px;
  color: var(--dim);
  font-size: 0.95rem;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-l);
  border: 1.5px solid var(--border-l);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: #ccc;
  letter-spacing: 0.05em;
}

.service-card:hover {
  background: var(--black);
  color: var(--white);
}

.service-card:hover .service-tags li {
  border-color: rgba(255,255,255,0.2);
  color: #aaa;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: inherit;
  opacity: 0.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.service-tags li {
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 4px 10px;
  border: 1px solid var(--border-l);
  border-radius: 2px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── WHY US ─── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-item {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.why-item:last-child { margin-bottom: 0; }

.why-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 0.05em;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 28px;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.why-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #888;
}

.why-item p strong { color: var(--white); }

/* ─── COMPARE CARD ─── */
.compare-card {
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
}

.compare-row.last { border-bottom: none; }

.compare-head {
  background: rgba(255,255,255,0.05);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
}

.compare-row span:first-child { color: #666; }
.compare-row span:nth-child(2) { color: #555; font-size: 0.8rem; }

.apper-col {
  font-weight: 600;
  color: var(--white);
}

.apper-win {
  color: #f5f5f0 !important;
  font-weight: 700 !important;
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding-right: 24px;
}

.step-num {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0e0db;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.step-connector {
  height: 2px;
  background: var(--border-l);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.step-connector::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--black);
  transition: width 0.8s ease;
}

.step-connector.last { display: none; }

.process-step:hover .step-connector::after { width: 100%; }

.step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 12px;
}

.step-time {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── TECH STACK ─── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border-l);
  border: 1.5px solid var(--border-l);
  border-radius: var(--radius);
  overflow: hidden;
}

.stack-item {
  background: #efefeb;
  padding: 32px 28px;
  transition: background 0.25s;
}

.stack-item:hover {
  background: var(--black);
  color: var(--white);
}

.stack-item:hover p { color: #888; }

.stack-logo {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stack-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-l);
  border: 1.5px solid var(--border-l);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.price-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
}

.price-featured {
  background: var(--black);
  color: var(--white);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 2px;
  color: #aaa;
}

.price-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 12px;
}

.price-featured .price-tag { color: #666; }

.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dim);
}

.price-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #555;
}

.price-featured .price-desc { color: #888; }

.price-features {
  list-style: none;
  margin-bottom: 36px;
}

.price-features li {
  font-size: 0.85rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-l);
  color: #444;
}

.price-featured .price-features li {
  border-color: rgba(255,255,255,0.08);
  color: #aaa;
}


.price-featured .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.price-featured .btn-primary:hover {
  background: #ddd;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--dim);
}

.pricing-note a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── TYPES ─── */
.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.type-chip {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: #888;
  cursor: default;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.type-chip:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  margin-top: 12px;
}

.contact-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-width: 400px;
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.contact-link {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}

.contact-link:hover { opacity: 0.5; }

.contact-skull {
  font-size: 3rem;
  line-height: 1;
  user-select: none;
}

/* ─── FORM ─── */
.contact-form {
  background: #f0f0eb;
  border: 1.5px solid var(--border-l);
  border-radius: var(--radius);
  padding: 40px 36px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border-l);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

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

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.footer-logo em {
  color: #555;
  font-style: normal;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #555;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: #888;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: #444;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-up.visible {
  animation: fadeUp 0.7s forwards;
}

.reveal-line span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-line.visible span {
  transform: translateY(0);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .why-layout { grid-template-columns: 1fr; gap: 56px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; gap: 2px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero-stat-strip {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .stat { min-width: 110px; padding: 16px; }

  .hero-scroll-hint { display: none; }

  .section { padding: 80px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .contact-title { font-size: 2.2rem; }
  .price-amount { font-size: 1.8rem; }
  .stack-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ─── FORM SUCCESS ─── */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success .skull {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--dim);
  font-size: 0.875rem;
}
