/* MetaTiger website: responsive design and guided contact. */
:root {
  --paper: #f7f6f2;
  --white: #fff;
  --ink: #202320;
  --muted: #61645e;
  --line: #dcded5;
  --orange: #f17a19;
  --lime: #e9ef9b;
  --dark: #202a24;
  --radius: 6px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI",Arial,sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font: inherit;
}
button, a, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}
button, a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid #a74800;
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
.wrap {
  width: min(1240px,calc(100% - 96px));
  margin: auto;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 10;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
header {
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 5;
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  width: 170px;
  height: auto;
  display: block;
}
.links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.links>a:not(.button):hover {
  color: #9b4609;
}
.portal {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.button {
  min-height: 48px;
  padding: 12px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background .18s,transform .18s;
}
.button:hover {
  background: #384339;
  transform: translateY(-2px);
}
.button.orange {
  background: var(--orange);
  color: #202320;
  border-color: var(--orange);
}
.button.orange:hover {
  background: #ff933c;
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: #a5a99f;
}
.button.outline:hover {
  background: #eeeee6;
}
.arrow {
  font-size: 20px;
  line-height: 1;
}
.menu {
  display: none;
  min-width: 48px;
  min-height: 48px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.hero {
  padding: 82px 0 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 26px;
}
.hero h1 {
  font-size: clamp(48px,5.5vw,76px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.06em;
  margin: 0;
  max-width: 760px;
}
.hero h1 em {
  font-style: normal;
  color: #697a53;
}
.hero-copy {
  max-width: 470px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 28px 0;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}
.visual {
  position: relative;
  border: 1px solid #cfd3c7;
  background: #eeefe7;
  padding: 28px;
  min-height: 390px;
  border-radius: 8px;
}
.visual h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.2;
  margin: 24px 0;
}
.node {
  padding: 18px;
  background: var(--white);
  border: 1px solid #d5d9cc;
  border-radius: 4px;
}
.node small {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
}
.node strong {
  font-size: 18px;
  font-weight: 600;
}
.intro-line {
  margin-top: 64px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}
.intro-line .terms {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: var(--ink);
}
section {
  padding: 100px 0;
}
.heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin: 24px 0 44px;
}
h2 {
  font-size: clamp(32px,3.8vw,50px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.045em;
  margin: 0;
}
p {
  margin: 0 0 18px;
}
.heading p {
  color: var(--muted);
  max-width: 440px;
  margin: 0;
}
.services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  padding: 32px 30px 30px 0;
}
.service+.service {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.service h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.3;
  margin: 38px 0 16px;
}
.service p {
  color: var(--muted);
  font-size: 14px;
}
.platform {
  background: var(--dark);
  color: #f5f6ee;
}
.platform .eyebrow {
  color: var(--lime);
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.platform h2 {
  margin: 24px 0;
}
.platform p {
  color: #c0c8bf;
  max-width: 425px;
}
.platform .button {
  margin-top: 12px;
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.platform .button:hover {
  background: #f5ffc0;
}
.release {
  border: 1px solid #55604f;
  border-radius: 8px;
  padding: 27px;
  background: #28332b;
}
.release-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 11px Consolas,monospace;
  color: #bac4b5;
  border-bottom: 1px solid #4a5545;
  padding-bottom: 20px;
}
.release-head b {
  color: var(--lime);
  font-weight: 400;
}
.release ol {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.release li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #434f3e;
}
.release li:last-child {
  border-bottom: 0;
}
.step {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #718063;
  border-radius: 50%;
  font: 11px Consolas,monospace;
  color: var(--lime);
  flex-shrink: 0;
}
.release strong {
  font-size: 15px;
  font-weight: 500;
  display: block;
}
.release small {
  font-size: 12px;
  color: #bac4b5;
}
.release-caption {
  font-size: 11px;
  color: #bac4b5;
  margin: 14px 0 0;
}
.product-details {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid #52604d;
  padding-top: 24px;
  gap: 32px;
}
.product-details strong {
  font-size: 15px;
  font-weight: 500;
}
.product-details p {
  font-size: 13px;
  margin: 7px 0 0;
}
.client-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact {
  border-top: 1px solid var(--line);
  background: #f0f0e8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact h2 {
  margin: 24px 0;
}
.contact-copy {
  color: var(--muted);
  max-width: 400px;
}
label {
  font-size: 12px;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #b9beb0;
  border-radius: 4px;
  background: #fafaf6;
  padding: 11px 12px;
  color: var(--ink);
  min-height: 47px;
}
textarea {
  resize: vertical;
}
footer {
  padding: 35px 0;
}
@media (min-width:1500px) {
  .hero {
    padding-top: 100px;
  }
}
@media (max-width:1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .links {
    gap: 18px;
  }
  .links .button {
    display: none;
  }
  .hero-grid, .platform-grid {
    gap: 40px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .visual {
    padding: 22px;
  }
  .contact-grid {
    gap: 50px;
  }
}
@media (max-width:760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 72px;
  }
  .logo {
    width: 146px;
  }
  .menu {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 0;
  }
  .links.open {
    display: flex;
    flex-direction: column;
  }
  .links a {
    padding: 12px;
    min-height: 48px;
  }
  .links .button {
    display: flex;
    margin-top: 10px;
  }
  .portal {
    border-left: 0;
  }
  .hero {
    padding-top: 44px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 22px;
  }
  .hero h1 {
    font-size: clamp(43px,9.8vw,66px);
    max-width: 600px;
  }
  .hero-copy {
    font-size: 16px;
    margin: 23px 0;
  }
  .hero-note {
    margin: 18px 0 0;
  }
  .visual {
    min-height: 0;
  }
  .intro-line {
    margin-top: 36px;
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .intro-line .terms {
    gap: 18px;
    flex-wrap: wrap;
  }
  section {
    padding: 64px 0;
  }
  .heading, .platform-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .heading {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service, .service+.service {
    padding: 24px 0;
    border-left: 0;
  }
  .service+.service {
    border-top: 1px solid var(--line);
  }
  .service h3 {
    margin: 14px 0 10px;
  }
  .product-details {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
  }
  .platform h2 {
    margin-top: 20px;
  }
  .contact-grid {
    gap: 35px;
  }
}
@media (max-width:390px) {
  .actions .button {
    width: 100%;
  }
  .visual {
    padding: 17px;
  }
  .node {
    padding: 12px;
  }
  .node strong {
    font-size: 16px;
  }
  .hero h1 {
    font-size: 43px;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
:root {
  --paper: #fff;
  --ink: #191919;
  --muted: #646464;
  --line: #e3e3e3;
  --orange: #f17a19;
  --lime: #ff9a47;
  --dark: #111;
  --radius: 5px;
}
header {
  background: #fff;
}
.links>a:not(.button):hover {
  color: #a34400;
}
.button:hover {
  background: #333;
}
.button.outline:hover {
  background: #f3f3f3;
}
.hero.wrap {
  width: 100%;
  max-width: none;
  background: #111;
  color: #fff;
  padding: 65px max(48px,calc((100% - 1240px)/2)) 0;
  overflow: hidden;
}
.hero>.eyebrow {
  color: #b8b8b8;
}
.hero-grid {
  grid-template-columns: 1.12fr 1fr;
  gap: 32px;
  margin-top: 0;
  min-height: 530px;
}
.hero h1 {
  font-size: clamp(46px,4.9vw,68px);
  letter-spacing: -.055em;
}
.hero h1 em {
  color: var(--orange);
}
.hero-copy {
  color: #c2c2c2;
  font-size: 17px;
  max-width: 480px;
}
.hero-note {
  color: #999;
}
.hero .button.outline {
  color: white;
  border-color: #626262;
}
.hero .button.outline:hover {
  background: #292929;
}
.hero .button.orange {
  color: #161616;
}
.tiger-visual {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #111;
  min-height: 0;
  width: 100%;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.tiger-image {
  display: block;
  width: 115%;
  max-width: none;
  height: auto;
  margin-left: -5%;
  object-fit: contain;
  mask-image: linear-gradient(to right,transparent 0%,#000 12%,#000 85%,transparent 100%);
  -webkit-mask-image: linear-gradient(to right,transparent 0%,#000 12%,#000 85%,transparent 100%);
}
.tiger-caption {
  position: absolute;
  bottom: 26px;
  left: 8%;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font: 10px Consolas,monospace;
  letter-spacing: .11em;
  color: #aaa;
}
.tiger-caption span:first-child {
  color: var(--orange);
  font-weight: bold;
}
.intro-line {
  margin-top: 0;
  border-color: #363636;
  padding: 23px 0;
  color: #999;
}
.intro-line .terms {
  color: #ddd;
}
.service h3 {
  font-weight: 600;
}
.platform {
  background: #181818;
}
.platform .eyebrow {
  color: #ff9a47;
}
.platform p {
  color: #bbb;
}
.platform .button {
  background: var(--orange);
  border-color: var(--orange);
  color: #171717;
}
.platform .button:hover {
  background: #ff933c;
}
.release {
  background: #202020;
  border-color: #494949;
}
.release-head {
  color: #bbb;
  border-color: #444;
}
.release-head b {
  color: #ff9a47;
}
.release li {
  border-color: #3d3d3d;
}
.step {
  border-color: #775137;
  color: #ffa45e;
}
.release small, .release-caption {
  color: #bbb;
}
.product-details {
  border-color: #444;
}
.contact {
  background: #f5f5f5;
}
input, select, textarea {
  border-color: #bbb;
  background: #fff;
}
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline-color: #c15809;
}
::selection {
  background: #f17a19;
  color: #111;
}
@media (max-width:1050px) {
  .hero.wrap {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero-grid {
    gap: 15px;
    min-height: 500px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .tiger-caption {
    font-size: 9px;
  }
  .hero .actions {
    gap: 10px;
  }
  .hero .button {
    padding: 12px 17px;
  }
}
@media (max-width:760px) {
  .hero.wrap {
    padding: 38px 20px 0;
  }
  .hero>.eyebrow {
    font-size: 9px;
    letter-spacing: .1em;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
    margin-top: 27px;
  }
  .hero h1 {
    font-size: clamp(43px,9.8vw,65px);
  }
  .hero-copy {
    font-size: 16px;
    margin: 23px 0;
  }
  .hero-note {
    margin-top: 18px;
  }
  .tiger-visual {
    max-width: 470px;
    margin: 0 auto;
    aspect-ratio: 1.25;
    overflow: hidden;
  }
  .tiger-image {
    width: 100%;
    margin: 0;
  }
  .tiger-caption {
    bottom: 12px;
    left: 0;
    right: 0;
    font-size: 9px;
  }
  .intro-line {
    margin-top: 10px;
  }
  .intro-line .terms {
    gap: 16px;
  }
}
@media (max-width:390px) {
  .hero h1 {
    font-size: 40px;
  }
  .hero .actions .button {
    width: 100%;
  }
  .tiger-caption {
    font-size: 8px;
  }
}
#consultoria .heading {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 36px;
}
#consultoria .heading p {
  font-size: 17px;
  max-width: 560px;
}
.visual-services {
  border: 0;
  gap: 26px;
}
.visual-services .service, .visual-services .service+.service {
  border: 0;
  padding: 0;
  min-width: 0;
}
.service-art {
  position: relative;
  overflow: hidden;
  background: #f4f3f1;
  border-radius: 6px;
  aspect-ratio: 1.5;
}
.service-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.service:hover .service-art img {
  transform: scale(1.035);
}
.service-index {
  position: absolute;
  left: 15px;
  top: 14px;
  font: 11px Consolas,monospace;
  color: #333;
  background: #ffffffdb;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.service-copy {
  padding: 22px 0 0;
}
.visual-services .service h3 {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -.03em;
  margin: 0 0 10px;
  max-width: 330px;
}
.visual-services .service p {
  font-size: 14px;
  max-width: 330px;
  margin: 0;
  color: #646464;
}
@media (max-width:1050px) and (min-width:761px) {
  .visual-services {
    gap: 18px;
  }
  .visual-services .service h3 {
    font-size: 19px;
  }
  .service-copy {
    padding-top: 17px;
  }
}
@media (max-width:760px) {
  #consultoria .heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }
  #consultoria .heading p {
    font-size: 16px;
  }
  .visual-services {
    gap: 32px;
  }
  .service-copy {
    padding-top: 18px;
  }
  .visual-services .service h3 {
    max-width: none;
  }
  .visual-services .service p {
    max-width: none;
  }
  .service-art {
    aspect-ratio: 1.65;
  }
}
.service-art {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.service-art img {
  object-fit: contain;
}
.service-index {
  background: #fff;
  border-color: #e6e6e6;
}
.feature-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.step.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border-color: #66442c;
  background: #2b211b;
  color: #ff9a47;
}
.release li {
  align-items: center;
  gap: 18px;
}
.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #59412e;
  border-radius: 10px;
  background: #251f1a;
  color: #ff9a47;
  margin-bottom: 14px;
}
.product-details strong {
  display: block;
}
#abordagem {
  background: #fff;
}
.method-heading h2 {
  margin: 24px 0 18px;
}
.method-heading h2 span {
  color: #727272;
}
.method-heading>p {
  color: #646464;
  font-size: 17px;
  margin: 0;
}
.journey {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
  position: relative;
  margin-top: 54px;
}
.journey::before {
  content: "";
  position: absolute;
  left: 34px;
  right: calc(33.333% - 16px);
  height: 1px;
  background: #e0b18e;
  top: 34px;
}
.journey-step {
  position: relative;
  min-width: 0;
}
.journey-marker {
  position: relative;
  width: 68px;
  height: 68px;
  border: 1px solid #e9c8b0;
  border-radius: 18px;
  background: #fff4eb;
  color: #b95108;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 10px white;
}
.journey-icon {
  width: 30px;
  height: 30px;
}
.journey-marker>span {
  position: absolute;
  right: -9px;
  bottom: -7px;
  font: 10px Consolas,monospace;
  background: #191919;
  color: #fff;
  border: 3px solid white;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
}
.journey-step:last-child .journey-marker {
  background: #f17a19;
  color: #181818;
  border-color: #f17a19;
}
.journey-text {
  padding-top: 28px;
}
.journey-text h3 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.035em;
  margin: 0 0 13px;
}
.journey-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  max-width: 335px;
  margin: 0 0 10px;
}
.journey-text .journey-lead {
  color: #252525;
  font-weight: 600;
  font-size: 14px;
}
.journey-result {
  display: inline-block;
  margin-top: 15px;
  font: 11px Consolas,monospace;
  letter-spacing: .02em;
  color: #9d4300;
  border-top: 1px solid #e5e5e5;
  padding-top: 14px;
  width: 100%;
}
.client-proof {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 46px;
  align-items: center;
  margin-top: 65px;
  padding: 36px 40px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fafafa;
}
.proof-logo {
  border-right: 1px solid #ddd;
  padding-right: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.proof-logo>span {
  font-size: 9px;
  letter-spacing: .12em;
  color: #777;
}
.proof-logo img {
  width: 180px;
  height: 80px;
  object-fit: contain;
}
.proof-copy .client-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: .1em;
  color: #666;
}
.proof-copy h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.035em;
  margin: 12px 0;
}
.proof-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  max-width: 640px;
}
@media (max-width:1050px) {
  .journey {
    gap: 26px;
  }
  .client-proof {
    grid-template-columns: 220px 1fr;
    gap: 30px;
    padding: 28px;
  }
  .journey-text h3 {
    font-size: 23px;
  }
}
@media (max-width:760px) {
  .method-heading>p {
    font-size: 16px;
    max-width: 320px;
  }
  .journey {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 38px;
  }
  .journey::before {
    left: 27px;
    right: auto;
    top: 30px;
    bottom: 120px;
    height: auto;
    width: 1px;
  }
  .journey-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
  }
  .journey-marker {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 0 0 7px white;
  }
  .journey-icon {
    width: 26px;
    height: 26px;
  }
  .journey-text {
    padding: 0;
  }
  .journey-text h3 {
    font-size: 23px;
    margin-top: 4px;
  }
  .journey-text p {
    font-size: 13px;
  }
  .journey-result {
    margin-top: 8px;
    padding-top: 10px;
    font-size: 10px;
  }
  .client-proof {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px;
    margin-top: 44px;
  }
  .proof-logo {
    border-right: 0;
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px;
    gap: 10px;
  }
  .proof-logo img {
    width: 150px;
    height: 65px;
  }
  .proof-copy h3 {
    font-size: 24px;
  }
  .proof-copy .client-label {
    font-size: 9px;
  }
  .proof-copy p {
    font-size: 13px;
  }
}
.contact {
  background: #151515;
  border-top: 0;
  color: #fff;
  padding: 90px 0;
}
.contact-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 85px;
  align-items: center;
}
.contact .eyebrow {
  color: #bdbdbd;
}
.contact h2 {
  font-size: clamp(38px,4.3vw,58px);
  line-height: 1.08;
  margin: 26px 0;
}
.contact-copy {
  color: #bcbcbc;
  font-size: 16px;
  max-width: 360px;
}
.contact form {
  background: #fff;
  color: #191919;
  padding: 34px;
  border-radius: 12px;
  border-top: 4px solid #f17a19;
  box-shadow: 0 16px 48px #0003;
}
.contact label {
  font-size: 12px;
  font-weight: 600;
}
.contact input, .contact select, .contact textarea {
  background: #f8f8f8;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  min-height: 50px;
  padding: 12px;
  font-size: 14px;
  transition: border-color .18s,background .18s;
}
.contact input:hover, .contact select:hover, .contact textarea:hover {
  border-color: #999;
}
.contact input:focus, .contact select:focus, .contact textarea:focus {
  background: #fff;
  border-color: #b95108;
}
.contact textarea {
  min-height: 110px;
}
.contact a:focus-visible {
  outline-color: #ff9a47;
}
@media (max-width:1050px) {
  .contact-grid {
    gap: 40px;
  }
  .contact form {
    padding: 26px;
  }
}
@media (max-width:760px) {
  .contact {
    padding: 64px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact h2 {
    font-size: 42px;
  }
  .contact-copy {
    max-width: 400px;
  }
  .contact form {
    padding: 24px 20px;
  }
}
@media (max-width:390px) {
  .contact form {
    padding: 23px 16px;
  }
  .contact h2 {
    font-size: 38px;
  }
}
.contact {
  padding: 90px 0;
}
.contact-grid {
  grid-template-columns: 1fr 1.12fr;
  gap: 80px;
  align-items: start;
}
.contact-story {
  padding-top: 22px;
}
.contact h2 {
  font-size: clamp(38px,3.7vw,52px);
  letter-spacing: -.05em;
  line-height: 1.13;
  margin: 24px 0;
}
.contact h2 em {
  font-style: normal;
  color: #f17a19;
}
.contact-copy {
  max-width: 395px;
  font-size: 16px;
}
.direct-contact {
  margin-top: 40px;
  max-width: 415px;
}
.channel-heading {
  font-size: 10px;
  letter-spacing: .13em;
  color: #919191;
  display: block;
  margin-bottom: 16px;
}
.channel {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid #353535;
}
.channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #29221d;
  color: #ff9a47;
  border: 1px solid #4b3829;
}
.channel-icon svg {
  width: 21px;
  height: 21px;
}
.channel-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.channel-info strong {
  font-size: 14px;
  font-weight: 500;
  color: #f2f2f2;
}
.channel-info>span {
  font-size: 13px;
  color: #aaa;
  overflow-wrap: anywhere;
}
.channel-arrow {
  margin-left: auto;
  color: #f17a19;
  font-size: 22px;
}
.channel:hover .channel-arrow {
  transform: translate(2px,-2px);
}
.phone-options {
  display: flex;
  flex-direction: column;
}
.phone-options a {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 36px;
  font-size: 13px;
  color: #aaa;
}
.phone-options a:hover {
  color: #ff9a47;
}
.phone-options a span {
  color: #f17a19;
}
.whatsapp-channel {
  align-items: start;
}
.whatsapp-channel .channel-icon {
  margin-top: 4px;
}
.contact form {
  border-top: 0;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 18px 65px #0003;
}
.contact input:not([type="radio"]):not([type="hidden"]), .contact textarea {
  background: white;
  border-color: #d3d3d3;
}
.contact textarea {
  min-height: 115px;
}
@media (max-width:1050px) {
  .contact-grid {
    gap: 38px;
  }
  .contact form {
    padding: 28px;
  }
  .contact h2 {
    font-size: 43px;
  }
}
@media (max-width:760px) {
  .contact {
    padding: 60px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-story {
    padding: 0;
  }
  .contact h2 {
    font-size: clamp(36px,8.5vw,48px);
  }
  .direct-contact {
    margin-top: 28px;
    max-width: none;
  }
  .contact form {
    padding: 27px 22px;
  }
  .phone-options a {
    min-height: 44px;
  }
  .channel-info>span {
    font-size: 12px;
  }
}
@media (max-width:390px) {
  .contact form {
    padding: 25px 17px;
  }
  .channel {
    gap: 12px;
  }
  .channel-icon {
    width: 38px;
    height: 38px;
  }
  .channel-info>span {
    font-size: 11px;
  }
}
.contact-grid {
  align-items: center;
}
.chat-invite {
  padding: 38px;
  border: 1px solid #414141;
  border-radius: 16px;
  background: #1d1d1d;
  max-width: 520px;
}
.invite-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.tiger-avatar {
  border-radius: 50%;
  object-fit: cover;
  object-position: 65% 35%;
  background: #111;
  border: 2px solid #f17a19;
  flex-shrink: 0;
}
.invite-top>span {
  font-size: 11px;
  letter-spacing: .08em;
  color: #eee;
}
.invite-top small {
  font-size: 10px;
  letter-spacing: 0;
  color: #aaa;
  display: block;
  margin-top: 5px;
}
.invite-bubble {
  background: #303030;
  color: #ddd;
  font-size: 14px;
  padding: 17px 19px;
  border-radius: 0 14px 14px 14px;
  max-width: 310px;
  margin-bottom: 28px;
}
.chat-invite h3 {
  font-size: 31px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}
.chat-invite>p {
  font-size: 14px;
  color: #aaa;
  max-width: 340px;
  margin-bottom: 25px;
}
.chat-invite .button {
  width: 100%;
  justify-content: space-between;
}
.invite-note {
  display: block;
  font-size: 10px;
  color: #999;
  margin-top: 14px;
  text-align: center;
}
.chat-launcher {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 64px;
}
.chat-launcher>span {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 16px;
  color: #222;
  font-size: 13px;
  box-shadow: 0 5px 25px #0002;
}
.chat-launcher img {
  width: 64px;
  height: 64px;
  border: 3px solid #f17a19;
  box-shadow: 0 4px 20px #0004;
}
.chat-launcher:hover img {
  border-color: #ffad6a;
}
.tiger-chat {
  position: fixed;
  inset: auto 24px 22px auto;
  margin: 0;
  padding: 0;
  width: 420px;
  max-width: calc(100vw - 32px);
  height: 650px;
  max-height: calc(100dvh - 40px);
  border: 1px solid #444;
  border-radius: 16px;
  background: #f7f7f7;
  color: #222;
  box-shadow: 0 18px 80px #0005;
  overflow: hidden;
}
.tiger-chat::backdrop {
  background: #0004;
}
.chat-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: #191919;
  color: #fff;
  flex-shrink: 0;
}
.chat-header .tiger-avatar {
  width: 44px;
  height: 44px;
}
.chat-header h2 {
  font-size: 16px;
  letter-spacing: -.02em;
  line-height: 1.3;
  font-weight: 600;
}
.chat-header p {
  font-size: 9px;
  color: #aaa;
  margin: 4px 0 0;
}
.chat-header>button {
  margin-left: auto;
  color: #ccc;
  background: transparent;
  border: 0;
  width: 44px;
  min-width: 44px;
  height: 44px;
  font-size: 28px;
  border-radius: 6px;
}
.chat-header>button:hover {
  background: #333;
}
.chat-preview {
  background: #fff0e4;
  color: #954208;
  text-align: center;
  font-size: 9px;
  letter-spacing: .06em;
  padding: 8px;
  flex-shrink: 0;
}
.chat-log {
  flex: 1;
  min-height: 80px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 17px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chat-message {
  font-size: 13px;
  line-height: 1.65;
  padding: 12px 14px;
  border-radius: 12px;
  max-width: 90%;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  flex-shrink: 0;
}
.chat-message.bot {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-top-left-radius: 2px;
  align-self: flex-start;
}
.chat-message.user {
  background: #262626;
  color: #fff;
  border-bottom-right-radius: 2px;
  align-self: flex-end;
}
.chat-controls {
  padding: 14px 17px;
  border-top: 1px solid #e3e3e3;
  background: white;
  max-height: 50%;
  overflow: auto;
  flex-shrink: 0;
}
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-option, .chat-next, .chat-skip {
  min-height: 44px;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 12px;
}
.chat-option {
  border: 1px solid #c86417;
  background: #fff8f2;
  color: #8c3d00;
  text-align: left;
}
.chat-option:hover {
  background: #ffe9d8;
}
.chat-next {
  border: 1px solid #f17a19;
  background: #f17a19;
  color: #171717;
  font-weight: 600;
  width: 100%;
}
.chat-next:hover {
  background: #ff933c;
}
.chat-skip {
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
}
.chat-composer {
  margin: 0;
}
.chat-input-label {
  display: block;
  font-size: 11px;
  margin-bottom: 7px;
}
.chat-composer input, .chat-composer textarea {
  font-size: 14px;
  min-height: 46px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 6px;
  padding: 11px;
  max-height: 100px;
  width: 100%;
}
.chat-composer textarea {
  height: 75px;
  resize: vertical;
}
.chat-compose-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.chat-compose-actions .chat-skip {
  flex-shrink: 0;
  min-width: 70px;
}
.chat-error {
  color: #ae2727;
  font-size: 11px;
  margin: 5px 0;
}
.chat-error:empty {
  display: none;
}
.chat-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 15px;
  background: #fff;
  color: #888;
  flex-shrink: 0;
}
.chat-foot>span {
  font-size: 9px;
}
.chat-foot>button {
  background: transparent;
  border: 0;
  min-height: 44px;
  font-size: 10px;
  color: #555;
  text-decoration: underline;
}
.chat-summary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 6px 12px;
  flex-shrink: 0;
}
.summary-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
}
.summary-row:last-child {
  border-bottom: 0;
}
.summary-row>div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.summary-row strong {
  font-size: 10px;
  color: #777;
  font-weight: 500;
}
.summary-row span {
  font-size: 12px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.summary-edit {
  font-size: 10px;
  background: white;
  color: #994300;
  border: 0;
  min-height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  text-decoration: underline;
}
.chat-submit-note {
  font-size: 11px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 10px;
}
.chat-controls>.chat-skip {
  margin-top: 8px;
  width: 100%;
}
footer {
  padding-bottom: 100px;
}
@media (max-width:760px) {
  .chat-invite {
    max-width: none;
    padding: 26px;
  }
  .chat-invite h3 {
    font-size: 28px;
  }
  .chat-launcher {
    right: 16px;
    bottom: 16px;
  }
  .chat-launcher>span {
    display: none;
  }
  .chat-launcher img {
    width: 58px;
    height: 58px;
  }
  .tiger-chat {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-width: none;
    max-height: calc(100dvh - 20px);
    height: 620px;
    border-radius: 12px;
  }
  .chat-header {
    padding: 12px;
    gap: 8px;
  }
  .chat-header h2 {
    font-size: 15px;
  }
  .chat-header p {
    font-size: 8px;
  }
  .chat-message {
    font-size: 12px;
  }
  .chat-log {
    padding: 15px;
  }
  .chat-controls {
    padding: 12px 15px;
  }
  .chat-invite .invite-top {
    gap: 12px;
  }
  .invite-top .tiger-avatar {
    width: 54px;
    height: 54px;
  }
}
@media (prefers-reduced-motion:reduce) {
  .chat-log {
    scroll-behavior: auto;
  }
}
.chat-controls[hidden] {
  display: none;
}
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 65px;
  min-height: 43px;
  padding: 15px !important;
}
.typing-indicator>span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d47730;
  animation: tiger-typing 1s ease-in-out infinite;
}
.typing-indicator>span:nth-child(2) {
  animation-delay: .16s;
}
.typing-indicator>span:nth-child(3) {
  animation-delay: .32s;
}
.tiger-chat.is-typing .chat-summary {
  display: none;
}
@keyframes tiger-typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: .45;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion:reduce) {
  .typing-indicator>span {
    animation: none;
    opacity: .7;
  }
}
.brand-footer {
  background: #fafafa;
  border-top: 3px solid #f17a19;
  padding: 58px 0 95px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr .9fr 1.25fr .8fr;
  gap: 42px;
  padding-bottom: 40px;
}
.footer-brand .logo {
  width: 200px;
  height: auto;
  margin-bottom: 24px;
}
.footer-brand>p {
  font-size: 17px;
  line-height: 1.55;
  color: #363636;
  letter-spacing: -.025em;
  margin: 0 0 15px;
}
.footer-position {
  font-size: 10px;
  color: #777;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-column h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 6px 0 17px;
  color: #191919;
}
.footer-column>a {
  font-size: 12px;
  min-height: 39px;
  display: flex;
  align-items: center;
  color: #666;
  overflow-wrap: anywhere;
}
.footer-column>a:hover {
  color: #a44700;
}
.footer-column>p {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 13px;
}
.footer-column .footer-portal {
  gap: 22px;
  min-height: 44px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 9px 13px;
  color: #222;
  font-size: 11px;
  white-space: nowrap;
}
.footer-portal:hover {
  border-color: #d26a1d;
  background: #fff3e9;
}
.footer-base {
  border-top: 1px solid #ddd;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 10px;
  color: #777;
}
.footer-base a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #555;
}
.footer-base a:hover {
  color: #a44700;
}
.tiger-avatar {
  object-fit: contain;
  object-position: center;
  background: #fff4e8;
  padding: 5px;
  border-color: #e98330;
}
.chat-launcher img {
  background: #fff5e9;
  border: 2px solid #f17a19;
  padding: 7px;
  box-shadow: 0 5px 22px #0003;
}
.chat-header .tiger-avatar {
  padding: 3px;
  border-width: 1px;
}
.invite-top .tiger-avatar {
  padding: 5px;
  background: #fff4e8;
}
@media (max-width:1100px) {
  .footer-main {
    grid-template-columns: 1.2fr 1fr;
    gap: 34px 50px;
  }
  .footer-column h3 {
    margin-top: 0;
  }
  .footer-brand .logo {
    margin-bottom: 18px;
  }
}
@media (max-width:760px) {
  .brand-footer {
    padding: 40px 0 90px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
    padding-bottom: 28px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand .logo {
    width: 180px;
    margin-bottom: 15px;
  }
  .footer-brand>p {
    font-size: 16px;
  }
  .footer-column>a {
    min-height: 44px;
    font-size: 11px;
  }
  .footer-main .footer-column:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 3;
  }
  .footer-column .footer-portal {
    gap: 10px;
    font-size: 10px;
  }
  .footer-base {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 22px;
    font-size: 9px;
  }
  .footer-base>span:first-child {
    width: 100%;
  }
  .footer-base a {
    margin-left: auto;
  }
}
.tiger-avatar, .chat-launcher img, .chat-header .tiger-avatar, .invite-top .tiger-avatar {
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #171717;
}
