
:root {
  --navy: #102942;
  --navy-2: #071b2d;
  --navy-3: #173d5e;
  --cyan: #00bfd4;
  --cyan-dark: #009db0;
  --cyan-soft: #dff8fb;
  --yellow: #f6c313;
  --yellow-soft: #fff4c1;
  --red: #e1261c;
  --red-soft: #ffe3df;
  --ink: #172532;
  --muted: #667481;
  --line: #dce3e7;
  --soft-line: #e9eef1;
  --offwhite: #f7f5ef;
  --white: #ffffff;
  --green: #20b36b;
  --green-dark: #119355;
  --shadow-sm: 0 8px 25px rgba(10, 32, 50, 0.08);
  --shadow-md: 0 22px 60px rgba(8, 30, 48, 0.14);
  --shadow-lg: 0 35px 90px rgba(7, 27, 45, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1220px;
  --header-height: 88px;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--offwhite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: var(--cyan-dark);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy-2);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 5vw, 5.25rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4.2vw, 4.3rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 750;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--navy-3);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > i {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0 33%, var(--yellow) 33% 66%, var(--red) 66%);
  border-radius: 99px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-light h2,
.section-heading-light p {
  color: #fff;
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.7);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:focus-visible,
.icon-button:focus-visible,
.text-button:focus-visible,
.tool-tab:focus-visible,
.swatch:focus-visible,
.quote-progress-step:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(0, 191, 212, 0.38);
  outline-offset: 3px;
}

.button:disabled,
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 12px;
  font-size: 0.82rem;
}

.button-large {
  min-height: 58px;
  padding: 17px 27px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.button-primary {
  color: #071b2d;
  background: linear-gradient(135deg, #05d1e7, var(--cyan));
  box-shadow: 0 13px 28px rgba(0, 191, 212, 0.23);
}

.button-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #24ddef, #02b4ca);
  box-shadow: 0 17px 38px rgba(0, 191, 212, 0.31);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(8, 30, 48, 0.06);
}

.button-secondary:hover:not(:disabled) {
  border-color: rgba(0, 191, 212, 0.55);
  box-shadow: 0 12px 28px rgba(8, 30, 48, 0.1);
}

.button-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 27, 45, 0.19);
}

.button-dark:hover:not(:disabled) {
  background: var(--navy-3);
  box-shadow: 0 16px 35px rgba(7, 27, 45, 0.25);
}

.button-white {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.button-white:hover:not(:disabled) {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 41, 66, 0.14);
  backdrop-filter: blur(10px);
}

.button-ghost:hover:not(:disabled) {
  background: #fff;
  border-color: rgba(16, 41, 66, 0.22);
}

.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #18aa51);
  box-shadow: 0 14px 34px rgba(32, 179, 107, 0.25);
}

.button-whatsapp:hover:not(:disabled) {
  background: linear-gradient(135deg, #2ee071, #149b49);
  box-shadow: 0 18px 42px rgba(32, 179, 107, 0.32);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--navy);
  background: rgba(247, 245, 239, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.2);
  transition: height 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.site-header.scrolled {
  height: 78px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 41, 66, 0.08);
  box-shadow: 0 10px 35px rgba(7, 27, 45, 0.08);
}

.brand-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
}

.brand-line i:nth-child(1) { background: var(--cyan); }
.brand-line i:nth-child(2) { background: var(--yellow); }
.brand-line i:nth-child(3) { background: var(--red); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 58px;
  overflow: hidden;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(8, 30, 48, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a:not(.button, .nav-instagram) {
  position: relative;
  color: #30475c;
  font-size: 0.86rem;
  font-weight: 750;
}

.main-nav > a:not(.button, .nav-instagram)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.main-nav > a:not(.button, .nav-instagram):hover::after {
  transform: scaleX(1);
}

.nav-instagram {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-instagram:hover {
  color: #fff;
  background: linear-gradient(135deg, #feda75, #d62976 55%, #4f5bd5);
  transform: translateY(-2px);
}

.nav-instagram svg {
  width: 19px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 99px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header-height) + 78px) 0 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 15%, rgba(0, 191, 212, 0.12), transparent 26%),
    radial-gradient(circle at 82% 25%, rgba(246, 195, 19, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5ef 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -180px;
  bottom: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(16, 41, 66, 0.06);
  border-radius: 50%;
  box-shadow: inset 0 0 0 65px rgba(16, 41, 66, 0.018), inset 0 0 0 130px rgba(16, 41, 66, 0.012);
}

.hero-bg span {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.35;
  transform: rotate(-22deg);
}

.hero-bg span:nth-child(1) {
  top: 120px;
  right: 9%;
  width: 10px;
  height: 160px;
  background: var(--cyan);
}

.hero-bg span:nth-child(2) {
  top: 210px;
  right: 6.5%;
  width: 10px;
  height: 120px;
  background: var(--yellow);
}

.hero-bg span:nth-child(3) {
  top: 280px;
  right: 4%;
  width: 10px;
  height: 88px;
  background: var(--red);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 620px;
  color: var(--navy);
}

.hero-copy h1 em {
  position: relative;
  display: inline-block;
  color: var(--cyan-dark);
  font-style: normal;
}

.hero-copy h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(0, 191, 212, 0.2), rgba(246, 195, 19, 0.24), rgba(225, 38, 28, 0.18));
  border-radius: 99px;
  z-index: -1;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 31px;
  color: #526574;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 650px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #526574;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-proof svg {
  width: 17px;
  fill: var(--green-dark);
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 26px -22px -25px 22px;
  background: linear-gradient(135deg, rgba(0, 191, 212, 0.34), rgba(246, 195, 19, 0.22), rgba(225, 38, 28, 0.25));
  border-radius: inherit;
  filter: blur(22px);
  opacity: 0.5;
}

.hero-image-card > img {
  width: 100%;
  aspect-ratio: 2.3 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.hero-image-overlay {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: calc(var(--radius-xl) - 10px);
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.12));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 17px;
  box-shadow: 0 18px 42px rgba(7, 27, 45, 0.18);
  backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.83rem;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.floating-top {
  top: -25px;
  right: 28px;
}

.floating-bottom {
  right: 32px;
  bottom: -28px;
}

.pulse {
  position: relative;
  width: 13px;
  height: 13px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(32, 179, 107, 0.13);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(32, 179, 107, 0.35);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { opacity: 0.8; transform: scale(0.65); }
  100% { opacity: 0; transform: scale(1.65); }
}

.mini-colors {
  display: flex;
}

.mini-colors i {
  width: 22px;
  height: 22px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.mini-colors i:first-child { margin-left: 0; background: #d8ccb6; }
.mini-colors i:nth-child(2) { background: #6f8475; }
.mini-colors i:nth-child(3) { background: #c47759; }
.mini-colors i:nth-child(4) { background: #35556e; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
  margin-top: 88px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 41, 66, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-trust article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 28px;
}

.hero-trust article + article {
  border-left: 1px solid var(--soft-line);
}

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.hero-trust small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.trust-icon,
.service-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  border-radius: 15px;
}

.trust-icon svg,
.service-icon svg {
  width: 23px;
  fill: currentColor;
}

.trust-icon.cyan,
.service-icon.cyan { color: #07899a; background: var(--cyan-soft); }
.trust-icon.yellow,
.service-icon.yellow { color: #9e7900; background: var(--yellow-soft); }
.trust-icon.red,
.service-icon.red { color: #b42720; background: var(--red-soft); }

/* Simulator */
.simulator-section {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 191, 212, 0.18), transparent 25%),
    radial-gradient(circle at 93% 90%, rgba(246, 195, 19, 0.09), transparent 24%),
    var(--navy-2);
  overflow: hidden;
}

.simulator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.simulator-section > .container {
  position: relative;
  z-index: 1;
}

.simulator-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
}

.sim-steps {
  padding: 34px 24px;
  color: #fff;
  background: linear-gradient(180deg, #123651 0%, #0a263d 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-step {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  padding: 13px 8px 26px;
  opacity: 0.47;
  transition: opacity 0.22s ease;
}

.sim-step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 49px;
  bottom: -2px;
  left: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.sim-step > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 11px;
  font-size: 0.75rem;
  font-weight: 800;
}

.sim-step strong,
.sim-step small {
  display: block;
}

.sim-step strong {
  font-size: 0.82rem;
}

.sim-step small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  line-height: 1.45;
}

.sim-step.active,
.sim-step.done {
  opacity: 1;
}

.sim-step.active > span {
  color: var(--navy-2);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 191, 212, 0.12);
}

.sim-step.done > span {
  color: #fff;
  background: rgba(32, 179, 107, 0.85);
  border-color: transparent;
}

.privacy-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.privacy-card svg {
  flex: 0 0 auto;
  width: 22px;
  fill: var(--cyan);
}

.privacy-card strong,
.privacy-card small {
  display: block;
}

.privacy-card strong {
  font-size: 0.75rem;
}

.privacy-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.63rem;
  line-height: 1.45;
}

.simulator-main {
  min-width: 0;
  min-height: 660px;
  background: #f4f7f8;
}

.upload-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 660px;
  padding: 60px 30px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 191, 212, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfcfc, #f4f7f8);
}

.upload-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 145px;
  height: 145px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow-md);
}

.upload-art::before,
.upload-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 35px;
  transform: rotate(10deg);
}

.upload-art::before {
  inset: 10px -13px -10px 13px;
  background: var(--cyan-soft);
}

.upload-art::after {
  inset: 19px -24px -19px 24px;
  background: rgba(246, 195, 19, 0.15);
}

.upload-house {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--navy);
  background: linear-gradient(145deg, #f1fbfc, #fff);
  border-radius: 25px;
}

.upload-house svg {
  width: 64px;
  fill: currentColor;
}

.upload-spark {
  position: absolute;
  right: -14px;
  top: -15px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border: 5px solid #fff;
  border-radius: 17px;
  box-shadow: 0 12px 25px rgba(0, 191, 212, 0.25);
}

.upload-spark svg {
  width: 26px;
  fill: currentColor;
}

.upload-stage h3 {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 2rem;
}

.upload-stage > p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.upload-stage > small {
  margin-top: 17px;
  color: #8a969f;
  font-size: 0.72rem;
}

.editor-stage {
  min-height: 660px;
}

.editor-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px 22px;
  background: #fff;
  border-bottom: 1px solid var(--soft-line);
}

.editor-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.editor-status > i {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(32, 179, 107, 0.1);
}

.editor-status > i.loading {
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(246, 195, 19, 0.13);
  animation: blink 1s ease-in-out infinite;
}

.editor-status > i.error {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(225, 38, 28, 0.1);
}

@keyframes blink { 50% { opacity: 0.35; } }

.editor-status strong,
.editor-status small {
  display: block;
}

.editor-status strong {
  color: var(--navy);
  font-size: 0.83rem;
}

.editor-status small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.editor-actions {
  display: flex;
  gap: 7px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--navy);
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-button:hover:not(:disabled) {
  background: #fff;
  border-color: rgba(0, 191, 212, 0.55);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 19px;
  fill: currentColor;
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 584px;
}

.canvas-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 22px;
  background: #e9eef0;
}

.canvas-wrap {
  position: relative;
  width: 100%;
  max-height: 600px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(45deg, #d9dfe2 25%, transparent 25%),
    linear-gradient(-45deg, #d9dfe2 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #d9dfe2 75%),
    linear-gradient(-45deg, transparent 75%, #d9dfe2 75%), #eef2f3;
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  border: 1px solid rgba(16, 41, 66, 0.13);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 27, 45, 0.14);
  touch-action: none;
  user-select: none;
}

.canvas-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#base-canvas { z-index: 1; }
#paint-canvas { z-index: 2; }
#selection-canvas { z-index: 3; pointer-events: auto; cursor: crosshair; }

.compare-line {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(16, 41, 66, 0.2), 0 0 12px rgba(0, 0, 0, 0.25);
}

.compare-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(16, 41, 66, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7, 27, 45, 0.2);
  transform: translate(-50%, -50%);
}

.compare-line svg {
  width: 21px;
  fill: currentColor;
}

.canvas-label {
  position: absolute;
  z-index: 6;
  top: 12px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(7, 27, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.canvas-label.before { left: 12px; }
.canvas-label.after { right: 12px; }

.point-layer {
  position: absolute;
  z-index: 7;
  inset: 0;
  pointer-events: none;
}

.point-layer i {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.point-layer i.add { background: var(--cyan-dark); }
.point-layer i.remove { background: var(--red); }

.editor-loader {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: #fff;
  text-align: center;
  background: rgba(7, 27, 45, 0.88);
  backdrop-filter: blur(10px);
}

.editor-loader[hidden] { display: none; }

.editor-loader strong {
  margin: 18px 0 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.editor-loader small {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.spinner {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.compare-control {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #516270;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 0;
  accent-color: var(--cyan-dark);
  cursor: pointer;
}

.canvas-mobile-hint {
  display: none;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.tool-panel {
  overflow-y: auto;
  max-height: 720px;
  padding: 19px;
  background: #fff;
  border-left: 1px solid var(--soft-line);
}

.tool-section {
  padding: 18px 0 22px;
}

.tool-section + .tool-section {
  border-top: 1px solid var(--soft-line);
}

.tool-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.tool-heading > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tool-heading > div > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  border-radius: 9px;
  font-size: 0.64rem;
  font-weight: 800;
}

.tool-heading strong {
  color: var(--navy);
  font-size: 0.78rem;
}

.tool-heading > em {
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}

.text-button {
  padding: 3px 0;
  color: var(--cyan-dark);
  background: none;
  border: 0;
  font-size: 0.69rem;
  font-weight: 800;
  cursor: pointer;
}

.text-button:hover {
  color: var(--navy);
}

.tool-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tool-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 43px;
  padding: 9px 8px;
  color: #60717f;
  background: #f6f8f9;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tool-tab svg {
  width: 17px;
  fill: currentColor;
}

.tool-tab:hover {
  background: #fff;
  border-color: rgba(0, 191, 212, 0.45);
}

.tool-tab.active {
  color: var(--navy);
  background: var(--cyan-soft);
  border-color: rgba(0, 191, 212, 0.48);
  box-shadow: inset 0 0 0 1px rgba(0, 191, 212, 0.08);
}

.ai-info {
  margin-top: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #edfaff, #f8fcfd);
  border: 1px solid rgba(0, 191, 212, 0.22);
  border-radius: 14px;
}

.ai-info[hidden] { display: none; }

.ai-info strong,
.ai-info small {
  display: block;
}

.ai-info strong {
  color: var(--navy);
  font-size: 0.72rem;
}

.ai-info small {
  margin: 4px 0 11px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.45;
}

.range-row {
  display: block;
  margin-top: 16px;
}

.range-row > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.68rem;
}

.range-row output {
  color: var(--muted);
  font-weight: 800;
}

.palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.swatch {
  min-width: 0;
  padding: 6px 4px 7px;
  color: var(--muted);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.swatch:hover {
  transform: translateY(-1px);
}

.swatch.active {
  border-color: rgba(0, 191, 212, 0.48);
  box-shadow: 0 5px 16px rgba(0, 191, 212, 0.13);
}

.swatch i {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: var(--swatch);
  border: 1px solid rgba(7, 27, 45, 0.12);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.swatch small {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  font-size: 0.54rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-color {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 13px;
  padding: 10px 12px;
  color: var(--navy);
  background: #f7f9fa;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 800;
}

.custom-color input {
  width: 38px;
  height: 28px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  cursor: pointer;
}

.toggle-row strong,
.toggle-row small {
  display: block;
}

.toggle-row strong {
  color: var(--navy);
  font-size: 0.68rem;
}

.toggle-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.58rem;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-row > i {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
  background: #c9d2d8;
  border-radius: 99px;
  transition: background 0.2s ease;
}

.toggle-row > i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(7, 27, 45, 0.2);
  transition: transform 0.2s ease;
}

.toggle-row input:checked + i { background: var(--cyan-dark); }
.toggle-row input:checked + i::after { transform: translateX(18px); }

.tool-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 5px;
}

.tool-actions .button {
  min-width: 0;
  padding-inline: 12px;
  font-size: 0.68rem;
}

.tool-actions .full {
  grid-column: 1 / -1;
}

.color-note {
  margin: 13px 0 2px;
  color: #88949d;
  font-size: 0.57rem;
  line-height: 1.5;
  text-align: center;
}

/* Services */
.services-section {
  background: var(--offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 31px;
  background: #fff;
  border: 1px solid rgba(16, 41, 66, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(0, 191, 212, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card.featured {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, #153b5a 0%, #09243a 100%);
  border-color: transparent;
}

.service-card.featured::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 191, 212, 0.22), transparent 68%);
}

.service-card .service-icon {
  margin-bottom: 24px;
}

.service-label {
  position: absolute;
  top: 25px;
  right: 24px;
  padding: 6px 10px;
  color: var(--navy-2);
  background: var(--yellow);
  border-radius: 99px;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.7rem;
}

.service-card.featured h3 {
  color: #fff;
}

.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card ul {
  margin: 6px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 7px 0 7px 23px;
  color: #536673;
  font-size: 0.76rem;
}

.service-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 900;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  color: var(--cyan-dark);
  border-top: 1px solid var(--soft-line);
  font-size: 0.75rem;
  font-weight: 850;
}

.service-card.featured > a {
  color: var(--cyan);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card > a span {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.scope-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
  padding: 17px 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 41, 66, 0.07);
  border-radius: 17px;
  font-size: 0.68rem;
  font-weight: 750;
}

.scope-strip i {
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

/* Process */
.process-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #0e304b, #061c2e 72%);
}

.process-section::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -160px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(0, 191, 212, 0.06);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
  position: relative;
  z-index: 1;
}

.process-copy h2 {
  max-width: 540px;
  color: #fff;
}

.process-copy p {
  max-width: 500px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.66);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  padding: 20px 0;
}

.process-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-list > li > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  color: var(--navy-2);
  background: var(--cyan);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.process-list li:nth-child(2) > span { background: var(--yellow); }
.process-list li:nth-child(3) > span { color: #fff; background: var(--red); }
.process-list li:nth-child(4) > span { color: var(--navy); background: #fff; }

.process-list strong,
.process-list small {
  display: block;
}

.process-list strong {
  font-size: 0.92rem;
}

.process-list small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.72rem;
}

/* About */
.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-visual {
  position: relative;
  min-height: 540px;
}

.about-card {
  position: absolute;
  inset: 0 70px 55px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f8f4;
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow-lg);
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, transparent 25%, rgba(16, 41, 66, 0.04) 100%);
}

.about-card img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.about-years {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 22px;
  color: #fff;
  background: var(--navy);
  border: 6px solid #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.about-years strong {
  font-family: var(--font-display);
  font-size: 3.3rem;
  line-height: 0.9;
}

.about-years span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.4;
}

.paint-chip {
  position: absolute;
  width: 42px;
  height: 110px;
  border: 5px solid #fff;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(7, 27, 45, 0.18);
  transform: rotate(17deg);
}

.chip-cyan { top: 30px; right: 37px; background: var(--cyan); }
.chip-yellow { top: 74px; right: 12px; background: var(--yellow); }
.chip-red { top: 119px; right: -12px; background: var(--red); }

.about-copy h2 {
  color: var(--navy);
}

.about-copy > p {
  color: var(--muted);
}

.about-copy .about-lead {
  color: #354b5d;
  font-size: 1.1rem;
  font-weight: 600;
}

.values {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.values article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 17px;
  background: #f8fafb;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
}

.values article > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  border-radius: 11px;
  font-size: 0.65rem;
  font-weight: 850;
}

.values strong,
.values small {
  display: block;
}

.values strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.values small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 420px;
  padding: 15px 17px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.instagram-link > svg {
  width: 27px;
  fill: #d62976;
}

.instagram-link > span {
  flex: 1;
}

.instagram-link strong,
.instagram-link small {
  display: block;
}

.instagram-link strong {
  font-size: 0.8rem;
}

.instagram-link small {
  color: var(--muted);
  font-size: 0.64rem;
}

.instagram-link em {
  color: var(--cyan-dark);
  font-size: 1.25rem;
  font-style: normal;
}

/* Quote */
.quote-section {
  background:
    radial-gradient(circle at 9% 12%, rgba(0, 191, 212, 0.09), transparent 23%),
    linear-gradient(180deg, #f4f7f7, #edf2f3);
}

.quote-shell {
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 41, 66, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.quote-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  padding: 28px 55px 23px;
  background: var(--navy);
}

.quote-progress::before,
.quote-progress-fill {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(12.5% + 28px);
  height: 2px;
  border-radius: 99px;
}

.quote-progress::before {
  right: calc(12.5% + 28px);
  background: rgba(255, 255, 255, 0.16);
}

.quote-progress-fill {
  z-index: 1;
  width: 0;
  max-width: calc(75% - 56px);
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--red));
  transition: width 0.35s ease;
}

.quote-progress-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: rgba(255, 255, 255, 0.46);
  background: none;
  border: 0;
  cursor: pointer;
}

.quote-progress-step > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: #183a56;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 850;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.quote-progress-step small {
  font-size: 0.62rem;
  font-weight: 750;
}

.quote-progress-step.active,
.quote-progress-step.done {
  color: #fff;
}

.quote-progress-step.active > span {
  color: var(--navy);
  background: var(--cyan);
  border-color: #c9fbff;
  box-shadow: 0 0 0 6px rgba(0, 191, 212, 0.13);
}

.quote-progress-step.done > span {
  color: #fff;
  background: var(--green);
  border-color: transparent;
}

#quote-form {
  padding: 46px 55px 36px;
}

.quote-step[hidden] { display: none; }

.quote-step-heading {
  margin-bottom: 32px;
}

.quote-step-heading > span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--cyan-dark);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-step-heading h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 2.15rem;
}

.quote-step-heading p {
  color: var(--muted);
  font-size: 0.85rem;
}

fieldset {
  min-width: 0;
  margin: 0 0 27px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 850;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.choice-card,
.chip-grid label,
.condition-grid label,
.service-choice-grid label {
  cursor: pointer;
}

.choice-card input,
.chip-grid input,
.condition-grid input,
.service-choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 105px;
  padding: 14px 8px;
  color: #5e6f7c;
  background: #fafbfb;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card:hover > span {
  transform: translateY(-2px);
  border-color: rgba(0, 191, 212, 0.4);
}

.choice-card svg {
  width: 28px;
  fill: currentColor;
}

.choice-card strong {
  font-size: 0.68rem;
  text-align: center;
}

.choice-card input:checked + span {
  color: var(--navy);
  background: var(--cyan-soft);
  border-color: rgba(0, 191, 212, 0.55);
  box-shadow: 0 7px 20px rgba(0, 191, 212, 0.12);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.form-grid.two { grid-template-columns: repeat(2, 1fr); }
.form-grid.three { grid-template-columns: repeat(3, 1fr); }

.field {
  display: block;
  margin-bottom: 20px;
}

.form-grid .field {
  margin-bottom: 0;
}

.field > span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fafbfb;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 112px;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 4px rgba(0, 191, 212, 0.1);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea,
.choice-card.invalid > span,
.chip-grid.invalid,
.condition-grid.invalid,
.service-choice-grid.invalid,
.consent.invalid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(225, 38, 28, 0.08) !important;
}

.input-suffix {
  position: relative;
}

.input-suffix input {
  padding-right: 52px;
}

.input-suffix em {
  position: absolute;
  top: 50%;
  right: 15px;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  transform: translateY(-50%);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.chip-grid label > span {
  display: inline-flex;
  align-items: center;
  min-height: 41px;
  padding: 10px 15px;
  color: #5d6e7b;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.chip-grid input:checked + span {
  color: var(--navy);
  background: var(--cyan-soft);
  border-color: rgba(0, 191, 212, 0.5);
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.condition-grid label > span {
  display: flex;
  flex-direction: column;
  min-height: 108px;
  padding: 14px;
  background: #fafbfb;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.condition-grid label:hover > span {
  transform: translateY(-2px);
}

.condition-grid strong,
.condition-grid small {
  display: block;
}

.condition-grid strong {
  margin-top: 10px;
  color: var(--navy);
  font-size: 0.7rem;
}

.condition-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.4;
}

.condition-grid input:checked + span {
  background: #f0fafb;
  border-color: rgba(0, 191, 212, 0.5);
  box-shadow: 0 6px 18px rgba(0, 191, 212, 0.1);
}

.condition-grid i {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(7, 27, 45, 0.1);
}

.condition-grid i.good { background: var(--green); }
.condition-grid i.medium { background: var(--yellow); }
.condition-grid i.alert { background: #ec7427; }
.condition-grid i.dark { background: var(--red); }
.condition-grid i.unknown { background: #8a98a4; }

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.service-choice-grid label > span {
  display: block;
  min-height: 130px;
  padding: 20px;
  background: #fafbfb;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-choice-grid label:hover > span {
  transform: translateY(-2px);
}

.service-choice-grid em,
.service-choice-grid strong,
.service-choice-grid small {
  display: block;
}

.service-choice-grid em {
  margin-bottom: 8px;
  color: var(--cyan-dark);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-choice-grid strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.service-choice-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
}

.service-choice-grid input:checked + span {
  background: var(--cyan-soft);
  border-color: rgba(0, 191, 212, 0.5);
  box-shadow: 0 8px 22px rgba(0, 191, 212, 0.11);
}

.color-reference-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  padding: 15px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.color-reference-preview {
  width: 60px;
  height: 60px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    var(--quote-color, #d8ccb6);
  border: 4px solid #fff;
  border-radius: 15px;
  box-shadow: 0 5px 16px rgba(7, 27, 45, 0.13);
}

.color-reference-card span,
.color-reference-card strong,
.color-reference-card small {
  display: block;
}

.color-reference-card span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.color-reference-card strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.78rem;
}

.color-reference-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 8px 0 25px;
  padding: 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--cyan-dark);
}

.consent span {
  color: var(--muted);
  font-size: 0.66rem;
}

.quote-preview {
  overflow: hidden;
  background: #f5f8f9;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.quote-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 17px;
  background: #eef3f5;
  border-bottom: 1px solid var(--line);
}

.quote-preview-heading span,
.quote-preview-heading strong {
  display: block;
}

.quote-preview-heading span {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-preview-heading strong {
  margin-top: 1px;
  color: var(--navy);
  font-size: 0.76rem;
}

#quote-summary {
  overflow: auto;
  max-height: 300px;
  margin: 0;
  padding: 18px;
  color: #405462;
  font-family: var(--font-body);
  font-size: 0.68rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.quote-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--soft-line);
}

.quote-nav .draft-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: auto;
  color: #84919a;
  font-size: 0.6rem;
}

.draft-status svg {
  width: 16px;
  fill: currentColor;
}

.quote-legal {
  max-width: 780px;
  margin: 17px auto 0;
  color: #7b8992;
  font-size: 0.64rem;
  text-align: center;
}

/* FAQ and final */
.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 80px;
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.faq-copy h2 {
  color: var(--navy);
}

.faq-copy p {
  margin-bottom: 27px;
  color: var(--muted);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary span {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  background: var(--cyan-soft);
  border-radius: 8px;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--cyan-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details p {
  max-width: 680px;
  margin: -5px 0 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.final-cta {
  padding: 54px 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 50%, rgba(0, 191, 212, 0.25), transparent 30%),
    linear-gradient(110deg, #0a2d47, #061a2b);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 30px;
}

.final-logo {
  display: grid;
  place-items: center;
  width: 100px;
  height: 105px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.final-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.final-cta-inner > div:nth-child(2) > span {
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 720px;
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #041522;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 1fr;
  gap: 45px;
  padding-top: 68px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 68px;
  height: 78px;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.footer-brand small {
  color: var(--cyan);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 300px;
  margin: 12px 0 0;
  font-size: 0.68rem;
}

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

.footer-column > strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.75rem;
}

.footer-column a,
.footer-column span,
.footer-column p {
  margin: 0;
  font-size: 0.66rem;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-action .button {
  align-self: flex-start;
  margin-top: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.59rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #17a94f);
  border: 0;
  border-radius: 99px;
  box-shadow: 0 16px 40px rgba(17, 147, 85, 0.32);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(17, 147, 85, 0.4);
}

.floating-whatsapp svg {
  width: 24px;
  fill: currentColor;
}

.floating-whatsapp span {
  font-size: 0.74rem;
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(390px, calc(100% - 44px));
  padding: 14px 17px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: #8d2420;
}

.toast > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.toast.error > span {
  color: #fff;
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.toast p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px;
  color: #fff;
  background: var(--red);
  text-align: center;
  font-weight: 800;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.22s; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: 1050px; }

  .main-nav { gap: 18px; }
  .main-nav > a:not(.button, .nav-instagram) { font-size: 0.78rem; }
  .hero-grid { grid-template-columns: 0.95fr 1.05fr; gap: 45px; }
  .hero-image-card { transform: none; }
  .simulator-shell { grid-template-columns: 220px minmax(0, 1fr); }
  .editor-layout { grid-template-columns: minmax(0, 1fr) 290px; }
  .tool-panel { padding: 15px; }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .condition-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.25fr 0.75fr 1fr; }
  .footer-action { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
  .footer-action p { flex: 1; }
}

@media (max-width: 900px) {
  :root { --header-height: 78px; }
  .container { width: min(100% - 34px, var(--container)); }
  .section-pad { padding: 88px 0; }

  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 17px;
    left: 17px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav > a:not(.button, .nav-instagram) { padding: 13px 10px; font-size: 0.86rem; }
  .main-nav > a:not(.button, .nav-instagram)::after { display: none; }
  .nav-instagram { position: absolute; right: 22px; bottom: 21px; }
  .main-nav .button { margin-top: 8px; margin-right: 54px; }

  .hero { min-height: auto; padding-top: calc(var(--header-height) + 65px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1,
  .hero-copy > p,
  .hero-proof { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-proof { justify-content: center; }
  .hero-visual { max-width: 720px; margin: 10px auto 0; }
  .hero-trust { margin-top: 70px; }
  .hero-trust article { padding: 20px 18px; }

  .simulator-shell { grid-template-columns: 1fr; }
  .sim-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sim-step { display: block; padding: 8px; text-align: center; }
  .sim-step:not(:last-of-type)::after { display: none; }
  .sim-step > span { margin: 0 auto 7px; }
  .sim-step small { display: none; }
  .privacy-card { display: none; }
  .editor-layout { grid-template-columns: 1fr; }
  .tool-panel { overflow: visible; max-height: none; border-top: 1px solid var(--soft-line); border-left: 0; }
  .canvas-column { min-height: auto; }
  .tool-section { max-width: 700px; margin-inline: auto; }
  .tool-actions { max-width: 700px; margin-inline: auto; }
  .color-note { max-width: 500px; margin-inline: auto; }

  .services-grid { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
  .service-card { min-height: auto; }
  .process-grid { grid-template-columns: 1fr; gap: 45px; }
  .process-copy { text-align: center; }
  .process-copy h2,
  .process-copy p { margin-left: auto; margin-right: auto; }
  .process-list { max-width: 700px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 600px; width: 100%; margin: 0 auto; }
  .about-copy { max-width: 720px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-copy { position: static; text-align: center; }
  .faq-copy p { max-width: 650px; margin-left: auto; margin-right: auto; }
  .final-cta-inner { grid-template-columns: 90px 1fr; }
  .final-cta-inner > .button { grid-column: 1 / -1; justify-self: start; margin-left: 120px; }
  .final-logo { width: 85px; height: 90px; }

  .quote-progress { padding-inline: 25px; }
  #quote-form { padding-inline: 32px; }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .condition-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 0.8fr; }
  .footer-action { grid-column: auto; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding-top: 0; border-top: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section-pad { padding: 72px 0; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  h2 { font-size: clamp(2.25rem, 10.5vw, 3.35rem); }
  .section-heading { margin-bottom: 38px; }
  .section-heading p { font-size: 0.92rem; }
  .eyebrow { font-size: 0.64rem; }
  .button-large { min-height: 54px; padding: 15px 20px; }

  .brand-text strong { font-size: 1.18rem; }
  .brand-text small { font-size: 0.54rem; }
  .brand-mark { width: 43px; height: 51px; }
  .site-header.scrolled { height: 72px; }

  .hero { padding-bottom: 40px; }
  .hero-copy > p { font-size: 0.96rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 8px; text-align: left; }
  .hero-image-card { padding: 7px; border-radius: 25px; }
  .hero-image-card > img,
  .hero-image-overlay { border-radius: 19px; }
  .floating-card { min-width: 0; padding: 10px 12px; }
  .floating-card strong { font-size: 0.7rem; }
  .floating-card small { display: none; }
  .floating-top { top: -18px; right: 8px; }
  .floating-bottom { right: 8px; bottom: -22px; }
  .mini-colors i { width: 18px; height: 18px; }
  .hero-trust { grid-template-columns: 1fr; margin-top: 58px; }
  .hero-trust article + article { border-top: 1px solid var(--soft-line); border-left: 0; }

  .simulator-shell { border-radius: 22px; }
  .sim-steps { padding: 11px 8px; }
  .sim-step { padding: 6px 2px; }
  .sim-step > span { width: 30px; height: 30px; border-radius: 9px; }
  .sim-step strong { font-size: 0.59rem; }
  .simulator-main,
  .upload-stage { min-height: 560px; }
  .upload-stage { padding: 45px 18px; }
  .upload-actions { flex-direction: column; width: 100%; }
  .upload-actions .button { width: 100%; }
  .editor-toolbar { padding: 12px; }
  .editor-status small { display: none; }
  .editor-status strong { font-size: 0.72rem; }
  .canvas-column { padding: 10px; }
  .canvas-wrap { border-radius: 13px; }
  .canvas-label { top: 8px; padding: 4px 7px; font-size: 0.54rem; }
  .canvas-label.before { left: 8px; }
  .canvas-label.after { right: 8px; }
  .compare-line span { width: 32px; height: 32px; }
  .canvas-mobile-hint { display: block; }
  .tool-panel { padding: 12px; }
  .tool-tabs { grid-template-columns: repeat(4, 1fr); }
  .tool-tab { flex-direction: column; gap: 3px; min-height: 59px; font-size: 0.54rem; }
  .palette { gap: 5px; }
  .swatch small { font-size: 0.48rem; }
  .tool-actions .button { min-height: 46px; }

  .scope-strip { gap: 8px; }
  .scope-strip i { display: none; }
  .scope-strip span { padding: 5px 8px; background: #fff; border-radius: 99px; }
  .process-list > li > span { width: 45px; height: 45px; }
  .about-visual { min-height: 410px; }
  .about-card { right: 42px; bottom: 40px; border-radius: 28px; }
  .about-years { padding: 14px 16px; border-width: 4px; }
  .about-years strong { font-size: 2.55rem; }
  .paint-chip { width: 30px; height: 78px; border-width: 3px; border-radius: 11px; }
  .chip-cyan { right: 24px; }
  .chip-yellow { right: 6px; }
  .chip-red { right: -10px; }

  .quote-shell { border-radius: 21px; }
  .quote-progress { padding: 20px 10px 17px; }
  .quote-progress::before,
  .quote-progress-fill { top: 36px; left: calc(12.5% + 20px); }
  .quote-progress::before { right: calc(12.5% + 20px); }
  .quote-progress-fill { max-width: calc(75% - 40px); }
  .quote-progress-step > span { width: 32px; height: 32px; }
  .quote-progress-step small { font-size: 0.52rem; }
  #quote-form { padding: 31px 16px 22px; }
  .quote-step-heading h3 { font-size: 1.75rem; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-card > span { min-height: 94px; }
  .form-grid.two,
  .form-grid.three { grid-template-columns: 1fr; }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .service-choice-grid { grid-template-columns: 1fr; }
  .color-reference-card { grid-template-columns: 50px 1fr; }
  .color-reference-preview { width: 50px; height: 50px; }
  .color-reference-card .text-button { grid-column: 1 / -1; justify-self: start; }
  .quote-nav { flex-wrap: wrap; }
  .quote-nav .draft-status { order: -1; width: 100%; }
  .quote-nav .button { flex: 1 1 auto; }
  #send-whatsapp { width: 100%; }

  .final-cta { padding: 45px 0; }
  .final-cta-inner { grid-template-columns: 70px 1fr; gap: 17px; }
  .final-logo { width: 68px; height: 72px; border-radius: 15px; }
  .final-cta h2 { font-size: 1.9rem; }
  .final-cta-inner > .button { grid-column: 1 / -1; width: 100%; margin-left: 0; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-action { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .floating-whatsapp { right: 12px; bottom: 12px; width: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .toast { right: 12px; bottom: 78px; width: calc(100% - 24px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Premium upgrade - hero, cases and advanced quote flow                      */
/* -------------------------------------------------------------------------- */

.hero-premium {
  position: relative;
  padding: 128px 0 80px;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 212, 0.16), transparent 32%),
    radial-gradient(circle at left center, rgba(246, 195, 19, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fafc 42%, #f7f5ef 100%);
}

.premium-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
}

.hero-copy h1 em {
  color: var(--cyan-dark);
  font-style: normal;
}

.premium-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.premium-proof span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 41, 66, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  font-size: 0.94rem;
}

.premium-proof svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: var(--green);
}

.hero-carousel-shell {
  position: relative;
}

.hero-carousel {
  position: relative;
  min-height: 610px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(16, 41, 66, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
}

.hero-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 45, 0.02) 15%, rgba(7, 27, 45, 0.74) 100%);
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-signature-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 144px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9));
  box-shadow: 0 22px 40px rgba(7, 27, 45, 0.18);
}

.hero-signature-card span,
.case-card-body span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-signature-card strong,
.case-card-body strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-signature-card small,
.case-card-body p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-signature-logo,
.case-card-brand {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f2f4f6);
  border: 1px solid rgba(16, 41, 66, 0.08);
}

.hero-signature-logo img,
.case-card-brand img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 41, 66, 0.18);
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dots button.active {
  width: 32px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
}

.cases-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,245,239,0.82));
}

.cases-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(16, 41, 66, 0.08);
  box-shadow: var(--shadow-md);
}

.case-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.case-card.large img {
  height: 100%;
  min-height: 520px;
}

.case-card-body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.case-card-body.compact {
  grid-template-columns: 80px 1fr;
}

.quote-progress-extended {
  gap: 8px;
}

.quote-progress-extended .quote-progress-step {
  min-width: 88px;
}

.form-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.large-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.inline-checks .chip-grid label span,
.file-field small {
  font-size: 0.9rem;
}

.premium-reference-card {
  align-items: center;
}

.file-field input[type="file"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px dashed rgba(16, 41, 66, 0.24);
  border-radius: 16px;
  background: #fbfcfd;
}

.quote-preview-strong {
  border: 1px solid rgba(0, 191, 212, 0.24);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1180px) {
  .premium-hero-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 540px;
  }

  .case-card.large img {
    min-height: 420px;
  }

  .premium-proof,
  .large-grid,
  .form-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-premium {
    padding-top: 112px;
  }

  .premium-proof,
  .large-grid,
  .form-grid.four,
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 460px;
  }

  .hero-slide {
    padding: 14px;
  }

  .hero-signature-card,
  .case-card-body,
  .case-card-body.compact {
    grid-template-columns: 1fr;
  }

  .hero-signature-logo,
  .case-card-brand {
    width: 84px;
    height: 84px;
  }

  .quote-progress-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-progress-extended .quote-progress-step {
    min-width: 0;
  }
}
.choice-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.choice-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-choice-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .choice-card-grid,
  .choice-card-grid.three,
  .service-choice-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .choice-card-grid,
  .choice-card-grid.three,
  .service-choice-grid.three {
    grid-template-columns: 1fr;
  }
}

/* Carousel click-safety */
.hero-carousel-shell,
.hero-carousel,
.hero-carousel-nav {
  position: relative;
}
.hero-carousel-nav { z-index: 30; }
.carousel-arrow,
.carousel-dots button {
  position: relative;
  z-index: 31;
  pointer-events: auto;
  touch-action: manipulation;
}
.hero-slide-media::after { pointer-events: none; }


/* IA realista */
.ai-info{border:1px solid rgba(0,191,212,.3);background:linear-gradient(135deg,#f3fdff,#fffdf5);box-shadow:0 10px 30px rgba(0,191,212,.08)}
.tool-tab[data-tool="ai"]{position:relative}
.tool-tab[data-tool="ai"]::after{content:"IA";position:absolute;top:5px;right:5px;font-size:8px;font-weight:900;padding:2px 5px;border-radius:99px;background:linear-gradient(90deg,#00bfd4,#f6c313);color:#102942}

.about-owner-card{overflow:hidden;background:#101923}.about-owner-card>img{width:100%;height:100%;min-height:560px;object-fit:cover;object-position:center 18%}.about-owner-card::after{background:linear-gradient(180deg,transparent 52%,rgba(7,27,45,.56) 100%)}.about-owner-badge{position:absolute;z-index:3;left:22px;bottom:22px;display:flex;flex-direction:column;padding:14px 18px;color:#fff;background:rgba(7,27,45,.82);border:1px solid rgba(255,255,255,.24);border-radius:16px;backdrop-filter:blur(12px);box-shadow:0 18px 44px rgba(7,27,45,.22)}.about-owner-badge span{font-size:.62rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#9feaf1}.about-owner-badge strong{font-family:var(--font-display);font-size:1.45rem;line-height:1.05}.about-owner-badge small{color:rgba(255,255,255,.72)}.about-brand-seal{position:absolute;z-index:4;top:18px;right:-10px;width:112px;height:112px;display:grid;place-items:center;padding:10px;background:#fff;border:1px solid rgba(16,41,66,.09);border-radius:26px;box-shadow:var(--shadow-md)}.about-brand-seal img{max-width:100%;max-height:100%;object-fit:contain}@media(max-width:700px){.about-owner-card>img{min-height:450px}.about-brand-seal{width:88px;height:88px;right:4px}.about-owner-badge{left:16px;bottom:16px}.about-years{right:4px}}
