/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg: #FFF8ED;
  --bg-2: #FFEEDA;
  --paper: #FFFFFF;
  --ink: #1F1A14;
  --ink-2: #4A3F31;
  --ink-3: #8A7B65;
  --line: #F4E5CC;
  --line-2: #E8D2A8;

  --blue: #F26722;        /* primary accent (orange) */
  --blue-deep: #D94D13;
  --blue-soft: #FFE3CC;
  --blue-ink: #6B1F00;

  --warn: #0B66E4;

  --r: 14px;
  --r-lg: 22px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Heebo", system-ui, sans-serif;
  font-feature-settings: "ss01" on;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.app {
  background:
    radial-gradient(1200px 600px at 88% -8%, rgba(242,103,34,0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 6%, rgba(242,103,34,0.08), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

/* ============================================================
   PRIMITIVES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: var(--ink);
  color: var(--paper);
}
.btn--solid:hover { background: var(--blue); }
.btn--invert {
  background: var(--paper);
  color: var(--ink);
}
.btn--invert:hover { background: #fff; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 8px 12px;
  flex-direction: column; align-items: flex-end; gap: 0;
}
.btn--ghost .btn__num { font-weight: 700; font-size: 15px; font-family: "JetBrains Mono", monospace; letter-spacing: -0.02em; }
.btn--ghost .btn__lbl { font-size: 11px; color: var(--ink-3); font-weight: 500; }
.btn--lg { padding: 14px 22px; font-size: 16px; }
.btn--xl { padding: 16px 26px; font-size: 17px; }
.btn__arrow {
  display: inline-block;
  transform: scaleX(-1);
  font-family: "JetBrains Mono", monospace;
  transition: transform 0.2s ease, margin 0.2s ease;
}
.btn:hover .btn__arrow { transform: scaleX(-1) translateX(-4px); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.kicker__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(242,103,34,0.20);
}

.eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--blue-soft); }

.section-head {
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 0 32px;
  text-align: center;
}
.section-title {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0;
  text-wrap: balance;
}
.section-title span { color: var(--ink-3); font-weight: 500; }
.section-sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  padding: 18px 0;
  transition: background 0.24s ease, padding 0.24s ease, border-color 0.24s ease;
}
.topbar.is-scrolled {
  padding: 12px 0;
  background: rgba(246, 242, 234, 0.86);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}
.topbar__brand { display: flex; align-items: center; gap: 12px; }
.topbar__mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
}
.topbar__name { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.topbar__tag { font-size: 12px; color: var(--ink-3); margin-top: -2px; }
.topbar__nav {
  display: flex; gap: 28px;
  margin-right: auto;
  font-size: 15px;
  color: var(--ink-2);
}
.topbar__nav a { position: relative; padding: 4px 0; transition: color 0.16s; }
.topbar__nav a:hover { color: var(--blue); }
.topbar__nav a::after {
  content: ""; position: absolute; right: 0; bottom: -2px;
  height: 2px; width: 0; background: var(--blue);
  transition: width 0.2s ease;
}
.topbar__nav a:hover::after { width: 100%; }
.topbar__cta { display: flex; align-items: center; gap: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 40px 0 0;
}
.hero__bsd {
  position: absolute;
  top: 18px; left: 28px;
  font-size: 13px; color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 28px 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__left .kicker { margin-bottom: 28px; }

.hero__title {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__line { display: block; }
.hero__line--alt { color: var(--ink-2); }
.hero__line--alt em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero__line--alt em::after {
  content: "";
  position: absolute;
  right: 0; bottom: 4px; left: 0;
  height: 10px;
  background: var(--blue-soft);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}

.hero__lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0; margin: 0;
}
.hero__chips li {
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}

/* Marquee */
.hero__marquee {
  border-block: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.hero__marquee::before, .hero__marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.hero__marquee::before { right: 0; background: linear-gradient(to left, var(--paper), transparent); }
.hero__marquee::after { left: 0; background: linear-gradient(to right, var(--paper), transparent); }
.hero__marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marq 38s linear infinite;
}
.hero__marquee-row {
  display: inline-flex; gap: 22px; align-items: center;
  padding-inline: 11px;
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
}
.hero__marquee-row > span:nth-child(even) { color: var(--blue); font-family: "JetBrains Mono", monospace; }
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(33.333%); }
}

/* ============================================================
   AC VISUAL
   ============================================================ */
.acv {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background:
    radial-gradient(circle at 50% 92%, #FFD7A8 0%, transparent 55%),
    linear-gradient(170deg, #D94D13 0%, #F26722 55%, #FFA15A 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(217,77,19,0.45),
    0 8px 24px -10px rgba(31,26,20,0.25);
}

/* Sun rays radiating from bottom-center (sunrise) */
.acv__rays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
}
.acv__rays span {
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 2px;
  height: 130%;
  background: linear-gradient(to top, rgba(255,232,196,0.85), rgba(255,232,196,0));
  transform-origin: bottom center;
  border-radius: 999px;
}
.acv__horizon {
  position: absolute;
  bottom: 0; left: -10%; right: -10%;
  height: 40%;
  background:
    radial-gradient(60% 100% at 50% 100%, rgba(255,200,140,0.9), rgba(255,200,140,0) 70%);
  z-index: 1;
  pointer-events: none;
}
.acv__sun {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF1D9 0%, #FFD18A 55%, rgba(255,209,138,0) 80%);
  z-index: 1;
  pointer-events: none;
}

.acv__temp {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 12px 16px;
  color: white;
  z-index: 4;
}
.acv__temp-val {
  font-size: 36px; font-weight: 800; line-height: 1;
  font-family: "JetBrains Mono", monospace; letter-spacing: -0.04em;
}
.acv__temp-val sup { font-size: 18px; vertical-align: super; opacity: 0.85; margin-right: 1px; }
.acv__temp-lbl { font-size: 11px; opacity: 0.8; margin-top: 4px; }

.acv__unit {
  position: absolute;
  top: 22%; left: 50%;
  transform: translateX(-50%);
  width: 75%;
  background: linear-gradient(180deg, #FBFCFE 0%, #E9EDF3 100%);
  border-radius: 14px 14px 18px 18px;
  padding: 14px 18px 0;
  box-shadow:
    inset 0 -2px 0 rgba(0,0,0,0.06),
    0 12px 24px -6px rgba(0,0,0,0.25);
  border: 1px solid #D4DAE3;
  z-index: 3;
}
.acv__brand {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  font-weight: 600;
}
.acv__display {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--blue-deep);
  font-weight: 700;
}
.acv__display-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.acv__vent {
  display: flex; gap: 4px;
  margin-top: 14px;
  padding: 8px 0;
  border-top: 1px solid #DDE2EA;
  justify-content: center;
}
.acv__vent span {
  flex: 1;
  height: 6px;
  background: linear-gradient(180deg, #C4CDD9, #95A1B3);
  border-radius: 2px;
  animation: vent 2s ease-in-out infinite;
}
@keyframes vent {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(1px); opacity: 0.7; }
}
.acv__led {
  position: absolute;
  top: 14px; left: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #45D67A;
  box-shadow: 0 0 8px rgba(69,214,122,0.7);
}

/* Cool air particles */
.acv__air {
  position: absolute;
  top: 35%; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.acv__particle {
  position: absolute;
  top: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.75), rgba(255,255,255,0) 70%);
  animation: drift linear infinite;
  filter: blur(0.5px);
}
@keyframes drift {
  0%   { transform: translateY(-20px) translateX(0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.8; }
  60%  { transform: translateY(60%) translateX(12px) scale(1); opacity: 0.6; }
  100% { transform: translateY(120%) translateX(-8px) scale(1.2); opacity: 0; }
}

.acv__badge {
  position: absolute;
  z-index: 5;
  background: var(--paper);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 14px 30px -10px rgba(14,23,38,0.4);
  border: 1px solid var(--line);
}
.acv__badge { bottom: 24px; right: 20px; }
.acv__badge--b { bottom: auto; top: 38%; right: auto; left: -18px; }
.acv__badge-no {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}
.acv__badge-txt { display: flex; flex-direction: column; }
.acv__badge-txt strong { font-size: 13px; font-weight: 700; }
.acv__badge-txt span { font-size: 11px; color: var(--ink-3); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  max-width: var(--max);
  margin: 60px auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__cell {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stats__cell:last-child { border-right: none; }
.stats__k {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: "JetBrains Mono", monospace;
}
.stats__suf { color: var(--blue); margin-right: 2px; }
.stats__v { margin-top: 10px; font-size: 14px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc {
  max-width: var(--max);
  margin: 100px auto;
  padding: 0 28px;
}
.calc__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.calc__controls {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 32px;
}
.ctrl {}
.ctrl__row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.ctrl label {
  font-weight: 600; font-size: 16px; color: var(--ink);
}
.ctrl__out {
  display: flex; align-items: baseline; gap: 4px;
  font-family: "JetBrains Mono", monospace;
}
.ctrl__out span {
  font-size: 28px; font-weight: 800; color: var(--blue); letter-spacing: -0.03em;
}
.ctrl__out em {
  font-style: normal;
  font-size: 13px; color: var(--ink-3); font-weight: 500;
}

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-2);
  border-radius: 999px;
  outline: none;
  direction: ltr; /* keep slider native LTR even in RTL doc */
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  cursor: grab;
  border: 4px solid var(--paper);
  box-shadow: 0 4px 12px rgba(242,103,34,0.35), 0 0 0 1px var(--ink);
  transition: transform 0.12s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); background: var(--blue); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: grab;
  border: 4px solid var(--paper);
  box-shadow: 0 4px 12px rgba(242,103,34,0.35), 0 0 0 1px var(--ink);
}
.ctrl__scale {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; color: var(--ink-3);
  direction: ltr;
}

.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-2);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.seg button {
  background: transparent;
  border: none;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.seg button:hover { color: var(--ink); }
.seg button.is-on {
  background: var(--ink);
  color: var(--paper);
}

.calc__result {
  display: flex;
}
.calc__result-frame {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.calc__result-frame::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(242,103,34,0.55), transparent 60%);
  filter: blur(20px);
}
.calc__result-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-soft);
  position: relative;
}
.calc__result-num {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 20px;
  position: relative;
}
.calc__result-num span {
  font-size: 22px;
  margin-right: 8px;
  color: var(--blue-soft);
  font-weight: 600;
}
.calc__result-hp {
  font-size: 22px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--blue-soft);
  position: relative;
}
.calc__bar {
  margin-top: 32px;
  position: relative;
}
.calc__bar-fill {
  height: 8px;
  background: linear-gradient(to right, #FFB37A, var(--blue));
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
  direction: ltr;
}
.calc__bar-fill::after {
  content: "";
  position: absolute;
  right: 0; top: 50%; transform: translate(50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px var(--blue), 0 4px 8px rgba(0,0,0,0.3);
}
.calc__bar {
  height: 8px; background: rgba(255,255,255,0.08); border-radius: 999px;
}
.calc__bar-ticks {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  direction: ltr;
}
.calc__note {
  margin: 28px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  position: relative;
  flex: 1;
}
.calc__result-frame .btn { align-self: flex-start; }

/* ============================================================
   WHY
   ============================================================ */
.why { max-width: var(--max); margin: 100px auto; padding: 0 28px; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.why__card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 18px 40px -20px rgba(242,103,34,0.35);
}
.why__n {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 24px;
}
.why__t {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.why__d {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  text-wrap: pretty;
}

/* ============================================================
   HOW
   ============================================================ */
.how { max-width: var(--max); margin: 100px auto; padding: 0 28px; }
.how__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.how__step {
  position: relative;
  padding: 36px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: right;
}
.how__step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.how__step:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.how__step + .how__step { border-right: none; }
.how__n {
  font-family: "JetBrains Mono", monospace;
  font-size: 60px;
  font-weight: 800;
  color: var(--blue-soft);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.how__body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.how__body p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  text-wrap: pretty;
}

/* ============================================================
   SERVICES BENTO
   ============================================================ */
.services { max-width: var(--max); margin: 100px auto; padding: 0 28px; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.bento__cell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  grid-column: span 2;
  cursor: pointer;
}
.bento__cell:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.bento__cell--big {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(160deg, var(--ink) 0%, #2A2118 100%);
  color: var(--paper);
  border-color: var(--ink);
}
.bento__cell--big:hover { border-color: var(--blue); }
.bento__cell h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.bento__cell--big h3 { font-size: 36px; line-height: 1.05; }
.bento__cell p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-3);
}
.bento__cell--big p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 280px; }
.bento__cell::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 2px solid currentColor;
  color: var(--blue);
  box-shadow: inset 0 -10px 0 rgba(242,103,34,0.12);
}
.bento__cell--big::before {
  width: 48px;
  height: 48px;
  color: var(--blue-soft);
  box-shadow: inset 0 -14px 0 rgba(255,227,204,0.18);
}
.bento__arrow {
  position: absolute;
  top: 24px; left: 24px;
  font-family: "JetBrains Mono", monospace;
  color: var(--ink-3);
  font-size: 18px;
  transform: scaleX(-1);
  transition: transform 0.2s, color 0.2s;
}
.bento__cell:hover .bento__arrow { transform: scaleX(-1) translateX(-4px); color: var(--blue); }
.bento__cell--big .bento__arrow { color: rgba(255,255,255,0.5); }
.ico { width: 28px; height: 28px; color: var(--blue); }
.bento__cell--big .ico { width: 44px; height: 44px; color: var(--blue-soft); }

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  max-width: var(--max);
  margin: 100px auto;
  padding: 0 28px;
}
.quote__wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
}
.quote__mark {
  position: absolute;
  top: -10px; right: 50%;
  transform: translateX(50%);
  font-family: "Heebo", serif;
  font-size: 120px;
  line-height: 1;
  color: var(--blue-soft);
  font-weight: 800;
}
.quote blockquote {
  position: relative;
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.quote__by {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-3);
  display: flex; justify-content: center; gap: 10px;
}
.quote__dot { color: var(--line-2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  color: var(--paper);
  margin-top: 100px;
  padding: 100px 28px 0;
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 20px;
}
.contact__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  margin: 0 0 32px;
}
.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: stretch;
}
.pcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  min-height: 240px;
}
.pcard:hover {
  background: rgba(242,103,34,0.14);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.pcard__role {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.pcard__name {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.pcard__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
}
.pcard__cta {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.pcard__cta span { transform: scaleX(-1); font-family: "JetBrains Mono", monospace; transition: transform 0.2s; }
.pcard:hover .pcard__cta span { transform: scaleX(-1) translateX(-4px); }

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__meta { display: flex; gap: 10px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #22C55E;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(34,197,94,0.6);
  z-index: 80;
  transition: transform 0.16s;
}
.float:hover { transform: scale(1.08); }
.float__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #22C55E;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .topbar__nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .acv { max-width: 480px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__cell:nth-child(2) { border-right: none; }
  .stats__cell:nth-child(1), .stats__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .calc__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .how__list { grid-template-columns: 1fr; }
  .how__step { border-radius: var(--r-lg) !important; border-right: 1px solid var(--line) !important; }
  .how__step + .how__step { margin-top: 12px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell { grid-column: span 1; }
  .bento__cell--big { grid-column: span 2; grid-row: span 1; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 10px; text-align: center; }
  .topbar__cta .btn--ghost { display: none; }
}
@media (max-width: 600px) {
  .hero__title { font-size: 52px; }
  .calc__controls, .calc__result-frame { padding: 24px; }
  .pcard__name { font-size: 36px; }
  .pcard { min-height: 200px; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell, .bento__cell--big { grid-column: span 1; grid-row: span 1; }
}
