/*
  STYLE v 1.1;
  05/2023;
  João Diogo Pereira;
*/

/* ============================================================
   TOMI Sales & Sustainability — Complete Design System v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --yellow: #F5B800;
  --yellow-dk: #D9A200;
  --yellow-light: #FFF8E0;
  --black: #0D0D0D;
  --dark: #1C1C1C;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F4;
  --gray-200: #EAEAEA;
  --gray-300: #DDDDDD;
  --gray-400: #BBBBBB;
  --gray-500: #999999;
  --gray-600: #777777;
  --gray-700: #555555;
  --gray-800: #333333;
  --text: #0D0D0D;
  --max-w: 1200px;
  --max-w-wide: 1400px;
  --page-shell: 1280px;
  --page-gutter: clamp(16px, 4vw, 40px);
  --cards-border: #D6D6D6;
  --cards-shadow: 0 10px 28px rgba(0, 0, 0, 0.055);
  --cards-shadow-hover: 0 18px 42px rgba(0, 0, 0, 0.105);
  --r: 12px;
  --header-h: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

body {
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  padding-top: var(--header-h);
  flex: 1;
}

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

img {
  height: auto;
}

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

h1,
h2,
.h2 *,
h3,
h4,
h5,
p,
a,
span,
li {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* ── VISUALLY HIDDEN UTILITY ── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── HIGHLIGHT WORD ── */
.highlight,
h2 del,
.h2 del,
h1 del, 
.h1 del,
h4 del, 
.h4 del {
  display: inline;
  background: var(--yellow);
  color: var(--black);
  padding: 0 0.15em 0.01em;
  border-radius: 0.13em;
  line-height: 0.98;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-decoration: none;
}

/* ── HEADER ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
}

.header-inner {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 16px);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-brand a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-brand h1 {
  margin: 0;
  line-height: 0;
}

.header-brand .custom-logo {
  width: 148px;
  height: auto;
  display: block;
}

.header-logo .logo-text em {
  color: var(--yellow);
  font-style: normal;
}

.header-logo .logo-sub {
  display: none;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ── NAVIGATION ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.55vw, 10px);
  list-style: none;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
}

.nav-links a {
  position: relative;
  color: var(--gray-800);
  font-size: clamp(10px, 0.76vw, 11px);
  font-weight: 800;
  letter-spacing: clamp(0.35px, 0.06vw, 0.8px);
  text-transform: uppercase;
  transition: color .3s ease-in-out, background .3s ease-in-out;
  white-space: nowrap;
  padding: 10px clamp(4px, 0.4vw, 6px);
  border-radius: 6px;
}

.nav-links a:hover {
  color: var(--black);
  background: transparent;
}

.nav-links a.active {
  color: var(--black);
  font-weight: 900;
  background: transparent;
}

.nav-links a.active:not([href="contact.html"])::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: var(--black);
}

.header-world-link,
.nav-links a.link-tomi,
.footer a.link-tomi-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .3s ease-in-out, border-color .3s ease-in-out, transform .3s ease-in-out;
}

.header-world-link:hover,
.nav-links a.link-tomi:hover,
.footer a.link-tomi-w:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.header-world-link:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.nav-links a.link-tomi {
  display: none;
}

.nav-links a.btns-contactar {
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 126px;
  min-width: 126px;
  height: 46px;
  padding: 0 clamp(14px, 1.2vw, 18px);
  margin-left: auto;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 20px rgba(245, 184, 0, 0.22);
}

.nav-links a.btns-contactar::before {
  content: '';
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-links a.btns-contactar:hover,
.nav-links a.btns-contactar.active {
  background: var(--yellow-dk);
  color: var(--black);
}

a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* ── LANGUAGE SWITCH ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 8px;
}

.lang-btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-500);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.lang-btns:hover {
  border-color: var(--gray-400);
  color: var(--gray-700);
}

.lang-btns.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  margin-left: 0;
}

.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 94px;
  height: 46px;
  padding: 0 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color .3s ease-in-out, background .3s ease-in-out, box-shadow .3s ease-in-out;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.lang-dropdown-trigger:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.lang-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .3s ease-in-out;
}

.lang-dropdown.is-open .lang-dropdown-trigger::after {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .3s ease-in-out, transform .3s ease-in-out, visibility .3s ease-in-out;
  z-index: 300;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--black);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: background .3s ease-in-out;
}

.lang-option:hover {
  background: var(--gray-100);
  color: var(--black);
}

.lang-option.active {
  font-weight: 700;
  background: var(--yellow-light);
}

.lang-option .check {
  float: right;
  color: var(--yellow);
  font-weight: 900;
  display: none;
}

.lang-option.active .check {
  display: inline;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 12px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s ease-in-out;
}

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

.hamburger.is-open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: min(380px, 92vw);
  bottom: 0;
  background: var(--white);
  z-index: 210;
  transform: translateX(-100%);
  transition: transform .3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.18);
}

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

.mobile-menu-backdrop {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  z-index: 205;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 32px;
}

.mobile-menu-group {
  display: grid;
  gap: 2px;
  margin-bottom: 16px;
}

.mobile-menu a:not(.lang-btns) {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 600;
  transition: background .3s ease-in-out;
}

.mobile-menu a:not(.lang-btns):hover {
  background: var(--gray-100);
}

.mobile-menu a:not(.lang-btns).active {
  background: var(--yellow-light);
  color: var(--black);
  font-weight: 700;
}

.mobile-menu a.link-tomi {
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
}

.mobile-menu .mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  border-top: 1px solid var(--gray-200);
  margin-top: 8px;
}

.mobile-menu .mobile-lang span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
}

.mobile-menu .mobile-lang a.active span {
  color: var(--white);
}

.mobile-menu .mobile-lang .lang-btns {
  min-width: 40px;
  height: 36px;
}

/* ── CONTAINER ── */
.wrap {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.wrap-wide {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

/* ── SECTION SPACING ── */
.sec {
  padding: 96px 0;
}

.sec-sm {
  padding: 60px 0;
}

.sec-lg {
  padding: 120px 0;
}

/* ── FULL BLEED SECTIONS ── */
.sec-full {
  padding: 0;
}

.sec-dark-full {
  background: var(--black);
  color: var(--white);
  padding: 88px 0;
  border-bottom: 12px solid var(--yellow);
}

.sec-dark-full h2,
.sec-dark-full .h2 *:not(del) {
  color: var(--white);
}

.sec-dark-full .wrap,
.banner-content {
  max-width: var(--page-shell);
}

.sec-dark-full .col-2col {
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
}

.sec-dark-full .eyebrow {
  color: var(--yellow);
}

.sec-yellow-full {
  background: var(--yellow);
  padding: 80px 0;
}

/* ── BACKGROUNDS ── */
.bg-white {
  background: var(--white);
}

.bg-light {
  background: var(--gray-50);
}

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

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

.bg-yellow {
  background: var(--yellow);
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.eyebrow-muted {
  color: var(--gray-500);
}

.eyebrow-dark {
  color: var(--black);
}

/* ── HEADINGS ── */
h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.display {
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
}

.h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.12;
}

.h2,
.h2 * {
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 800 !important;
  letter-spacing: -1.2px;
  line-height: 1.06 !important;
  color: var(--black);
}

.h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.15;
}

.h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
}

.lead-sm {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

/* ── BUTTONS ── */
.btns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 0 26px;
  min-height: 48px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.btns:focus-visible {
  outline: 2px solid var(--gray-600);
  outline-offset: 3px;
}

.btns.loading{
  pointer-events: none;
  opacity: .5;
  filter: grayscale(1);
}

body.cursor-wait,
body.cursor-wait * {
    cursor: wait !important;
}

.btns-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btns-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  color: var(--black);
}

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

.btns-dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: var(--white);
}

.btns-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-200);
}

.btns-outline:hover {
  color: var(--black);
  border-color: var(--black);
}

.btns-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btns-outline-white:hover {
  border-color: var(--white);
  color: var(--white);
}

.btns-lg {
  min-height: 56px;
  padding: 0 32px;
  font-size: 15px;
}

.btns-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.btns-catalog::before {
  content: '';
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5z'/%3E%3Cpath d='M8 7h8'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5z'/%3E%3Cpath d='M8 7h8'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── FULL WIDTH IMAGE BANNER ── */
.banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 72px var(--page-gutter);
  color: var(--white);
  width: 100%;
}

.banner-content .eyebrow {
  color: var(--yellow);
}

.banner-content h2 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 18px;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}

.banner-content .btns {
  width: auto;
  min-width: 220px;
}

.banner-sm {
  min-height: 420px;
}

.banner-sm .banner-content {
  padding: 72px 40px;
}

/* ── DARK BANNER (no image) ── */
.banner-dark {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}

.banner-dark .wrap {
  position: relative;
  z-index: 2;
}

.banner-dark .eyebrow {
  color: var(--yellow);
}

.banner-dark h2 {
  color: var(--white);
  max-width: 700px;
}

.banner-dark p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
}

.banner-dark .btns-outline-white:hover {
  border-color: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 100px var(--page-gutter);
  color: var(--white);
  width: 100%;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h2 {
  color: var(--white);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 80px var(--page-gutter);
  color: var(--white);
  width: 100%;
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.page-hero h1 {
  font-weight: 800;
  font-size: 50px;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 16px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

/* ── HERO VISUAL ── */
.hero-visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--gray-100);
}

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

.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── cardsS ── */
.cards {
  background: var(--white);
  border: 1.5px solid var(--cards-border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--cards-shadow);
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out, border-color .3s ease-in-out;
}

.cards:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: var(--cards-shadow-hover);
}

.cards-image {
  position: relative;
  min-height: 220px;
  background: var(--gray-100);
  overflow: hidden;
}

.cards-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s ease-in-out;
}

.cards:hover .cards-image img {
  transform: scale(1.06);
}

.cards-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cards-body h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}

.cards-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.cards-body .btns {
  margin-top: auto;
  align-self: flex-start;
}

.cards-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.cards-tag {
  display: inline-flex;
  align-items: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--gray-600);
}

.cards-tag span {
  flex-shrink: 0;
}

/* ── ICON ROW ── */
.icon-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-badge img {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  stroke-width: 1.8;
  fill: none;
}

/* ── GRIDS ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.col-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.col-60-40 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

/* ── FORM ── */
.contact-form {
  padding: 32px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading .eyebrow {
  margin-bottom: 10px;
}

.form-heading h2 {
  margin-bottom: 10px;
}

.form-heading p {
  max-width: 520px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
}

.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-controls {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  background: var(--gray-100);
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out, background .3s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}

.form-controls:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.form-controls:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 184, 0, 0.18);
}

.form-controls.is-invalid {
  border-color: #C33422;
  box-shadow: 0 0 0 4px rgba(195, 52, 34, 0.12);
}

.form-controls::placeholder {
  color: var(--gray-500);
}

.field-icon::before {
  content: '';
  position: absolute;
  left: 16px;
  bottom: 15px;
  width: 19px;
  height: 19px;
  background: var(--gray-700);
  pointer-events: none;
  z-index: 1;
}

.field-icon .form-controls {
  padding-left: 48px;
}

.field-name::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.field-email::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.field-phone::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.89.7 2.77a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.31-1.31a2 2 0 0 1 2.11-.45c.88.34 1.81.57 2.77.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.89.7 2.77a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.31-1.31a2 2 0 0 1 2.11-.45c.88.34 1.81.57 2.77.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.field-company::before,
.field-country::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l8-4 8 4v14'/%3E%3Cpath d='M9 21v-6h8v6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l8-4 8 4v14'/%3E%3Cpath d='M9 21v-6h8v6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.field-catalog::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M4 4.5A2.5 2.5 0 0 1 6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.field-message::before {
  bottom: auto;
  top: 38px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H7l-4 4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H7l-4 4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

select.form-controls {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}

textarea.form-controls {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-600);
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer-top {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 64px var(--page-gutter) 48px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .custom-logo {
  width: 168px;
  height: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social-title {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
}

.footer-social-links a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  transition: color .3s ease-in-out;
}

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

.footer a.link-tomi-w,
.footer-col a.link-tomi-w {
  display: inline-flex;
  min-height: 38px;
  padding: 0 18px;
  border: 1.5px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.footer a.link-tomi-w:hover,
.footer-col a.link-tomi-w:hover {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.footer-bottom {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 24px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: all .3s ease-in-out;
}

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

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--yellow);
  padding: 88px 0;
  text-align: center;
}

.cta-block .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-block h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--black);
}

.cta-block p {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.cta-block .btns {
  min-width: 220px;
}

.cta-block .btns-dark,
.cta-block .btns-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cta-block .btns-dark:hover,
.cta-block .btns-primary:hover {
  background: rgba(0, 0, 0, 0.82);
  color: var(--white);
  border-color: rgba(0, 0, 0, 0.82);
}

.cta-block .btns-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.cta-block .btns-outline:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
  border-color: var(--black);
}

/* ── CONTEXT cardsS (icon + content) ── */
.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.context-cards {
  border: 1.5px solid var(--cards-border);
  border-radius: var(--r);
  padding: 36px 28px;
  background: var(--white);
  box-shadow: var(--cards-shadow);
  transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.context-cards:hover {
  border-color: var(--yellow);
  box-shadow: var(--cards-shadow-hover);
}

.context-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.context-icon img {
  width: 24px;
  height: 24px;
  stroke: var(--black);
  stroke-width: 1.8;
  fill: none;
}

.context-cards h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.context-cards p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── FEATURE LIST ── */
.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── FINANCING cardsS ── */
.fin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fin-cards {
  border: 1.5px solid var(--cards-border);
  border-radius: var(--r);
  padding: 36px 24px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--cards-shadow);
  transition: border-color .3s ease-in-out, background .3s ease-in-out, box-shadow .3s ease-in-out;
}

.fin-cards:hover {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: var(--cards-shadow-hover);
}

.fin-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.fin-icon img {
  width: 28px;
  height: 28px;
  stroke: var(--black);
  stroke-width: 1.8;
  fill: none;
}

.fin-cards h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fin-cards p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── MEDIA FEATURES ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.media-cards {
  border: 1.5px solid var(--cards-border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--cards-shadow);
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.media-cards:hover {
  transform: translateY(-3px);
  box-shadow: var(--cards-shadow-hover);
}

.media-cards-image {
  height: 200px;
  background: var(--gray-100);
  overflow: hidden;
}

.media-cards-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-in-out;
}

.media-cards:hover .media-cards-image img {
  transform: scale(1.06);
}

.media-cards-body {
  padding: 24px;
}

.media-cards-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.media-cards-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── PARTNER STEPS ── */
.partner-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-step {
  text-align: center;
  padding: 36px 20px;
  border: 1.5px solid var(--cards-border);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--cards-shadow);
  transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.partner-step:hover {
  border-color: var(--yellow);
  box-shadow: var(--cards-shadow-hover);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.partner-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.partner-step p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── VALUE PROPS DARK ── */
.value-dark {
  background: var(--dark);
  color: var(--white);
  padding: 96px 0;
}

.value-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

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

.value-cards {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 32px 28px;
}

.value-cards-light {
  background: var(--white) !important;
  border: 1.5px solid var(--cards-border) !important;
  box-shadow: var(--cards-shadow);
}

.value-cards h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-cards p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.value-cards-text, .value-cards-text *{
  color: var(--gray-600)!important;
}

.w-fit{
  width: fit-content;
  max-width: 100%;
}

.h-100{
  height:100%; 
}

.catalog-access-cards {
  padding: 32px;
  border: 1.5px solid var(--cards-border);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--cards-shadow);
}

.catalog-access-cards--sticky{
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.catalog-access-cards h4{
  font-size: 16px;
  font-weight: 700;
}

.catalog-access-cards p{
  font-size: 14px; 
  color: var(--gray-600); 
  line-height: 1.6;
  font-weight: 400;
}

.catalog-access-cards .feature-list *{
  font-weight: 400;
}

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  padding: 28px;
  background: #e6f4ec;
  border: 1px solid #b8dcc8;
  border-radius: var(--r);
  text-align: center;
  margin-top: 16px;
}

.success-msg.is-visible {
  display: block;
}

.success-msg h3 {
  color: #1e7d3a;
  font-size: 20px;
  margin-bottom: 8px;
}

.success-msg p {
  color: #2a6e42;
  font-size: 15px;
}

/* ── PLACEHOLDER BLOCK ── */
.placeholder-block {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 1px dashed var(--gray-300);
  border-radius: var(--r);
  color: var(--gray-400);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 20px;
}

/* ── STAT ROW ── */
.stats-heading {
  margin-bottom: 48px;
}

.stats-heading .eyebrow {
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}

.stats-heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
}

.stats-heading p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.12);
  margin: 0 auto 14px;
}

.stat-icon svg {
  display: block;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  overflow: hidden;
}

.stat-cards {
  min-height: 180px;
  padding: 42px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-cards:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.stat-label-dark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
}

.stat-number-dark {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

/* ── PRODUCT cards LARGE ── */
.product-cards-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--cards-border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--cards-shadow);
  transition: box-shadow .3s ease-in-out;
}

.product-cards-lg:hover {
  box-shadow: var(--cards-shadow-hover);
}

.product-cards-lg .cards-image {
  min-height: 320px;
  border-radius: 0;
}

.product-cards-lg .cards-image img {
  height: 100%;
}

.product-cards-lg .cards-body {
  padding: 44px 40px;
}

/* ── UTILITIES ── */
.text-center {
  text-align: center;
}

.text-yellow {
  color: var(--yellow);
}

.text-white {
  color: var(--white);
}

.text-black {
  color: var(--black);
}

.text-gray {
  color: var(--gray-600);
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--gray-200);
}

.divider-dark {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── LANGUAGE VISIBILITY ── */
[data-lang="pt"] {
  display: none;
}

body.lang-pt [data-lang="en"] {
  display: none;
}

body.lang-pt [data-lang="pt"] {
  display: block;
}

/* Scoped overrides for elements whose own selector has higher specificity */
.form-group label[data-lang="pt"] {
  display: none;
}

body.lang-pt .form-group label[data-lang="en"] {
  display: none;
}

body.lang-pt .form-group label[data-lang="pt"] {
  display: block;
}

.lang-dropdown-menu .lang-option[data-lang],
body.lang-pt .lang-dropdown-menu .lang-option[data-lang] {
  display: block;
}

.mobile-lang .lang-btns[data-lang],
body.lang-pt .mobile-lang .lang-btns[data-lang] {
  display: inline-flex;
}

body.lang-en .btns[data-lang="en"],
body.lang-pt .btns[data-lang="pt"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-title[data-lang="en"],
.footer-legal-links a[data-lang="en"],
body.lang-pt .footer-social-title[data-lang="pt"],
body.lang-pt .footer-legal-links a[data-lang="pt"] {
  display: inline-flex;
}

body.lang-pt .footer-social-title[data-lang="en"],
body.lang-pt .footer-legal-links a[data-lang="en"] {
  display: none !important;
}

body .nav-links a.btns-contactar {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

body.lang-pt [data-lang="en"].flex,
body.lang-pt [data-lang="en"].flex-center,
body.lang-pt [data-lang="en"].grid-2,
body.lang-pt [data-lang="en"].grid-3,
body.lang-pt [data-lang="en"].grid-4,
body.lang-pt [data-lang="en"].grid-auto,
body.lang-pt [data-lang="en"].hero-actions,
body.lang-pt [data-lang="en"].cta-actions {
  display: none !important;
}

body.lang-pt [data-lang="pt"].flex,
body.lang-pt [data-lang="pt"].flex-center,
body.lang-pt [data-lang="pt"].grid-2,
body.lang-pt [data-lang="pt"].grid-3,
body.lang-pt [data-lang="pt"].grid-4,
body.lang-pt [data-lang="pt"].grid-auto,
body.lang-pt [data-lang="pt"].hero-actions,
body.lang-pt [data-lang="pt"].cta-actions {
  display: flex !important;
}

body.lang-pt [data-lang="pt"].grid-2,
body.lang-pt [data-lang="pt"].grid-3,
body.lang-pt [data-lang="pt"].grid-4,
body.lang-pt [data-lang="pt"].grid-auto {
  display: grid !important;
}

.footer-med {
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 1rem var(--page-gutter) 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-prr{
  display:flex;
  align-items:center;
  justify-content: flex-end;
}

.footer-prr img{
  max-width:500px;
  width:100%;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 12px;
  }

  .header-logo img {
    width: 132px;
  }

  .header-world-link {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 7px;
    letter-spacing: 0.5px;
  }

  .nav-links a.btns-contactar {
    width: 106px;
    min-width: 106px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .lang-dropdown-trigger {
    min-width: 72px;
    height: 38px;
    padding: 0 12px;
  }
}

@media (max-width: 920px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (768px — 1023px)
   ============================================================ */
@media (max-width: 1023px) {
  .header-inner {
    padding: 0 24px;
    gap: 12px;
  }

  .header-logo img {
    width: 132px;
  }

  .header-world-link {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 7px;
    letter-spacing: 0.5px;
  }

  .nav-links a.btns-contactar {
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }

  .lang-dropdown-trigger {
    min-width: 72px;
    height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-inner {
    padding: 60px 24px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero .lead {
    max-width: 100%;
  }

  .grid-2,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .context-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-2col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sec-dark-full .col-2col {
    grid-template-columns: 1fr;
  }

  .col-60-40 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .product-cards-lg {
    grid-template-columns: 1fr;
  }

  .product-cards-lg .cards-body {
    padding: 32px 24px;
  }

  .wrap,
  .page-hero-inner,
  .banner-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sec {
    padding: 72px 0;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (up to 767px)
   ============================================================ */
@media (max-width: 767px) {
  .footer-med {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  .header-inner {
    padding: 0 16px;
    height: 60px;
  }

  :root {
    --header-h: 60px;
  }

  .header-brand {
    gap: 10px;
  }

  .header-logo img {
    width: 116px;
  }

  .lang-dropdown-trigger {
    min-width: 62px;
    height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .lang-dropdown-menu {
    min-width: 156px;
  }

  .lang-option {
    font-size: 14px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .mobile-menu .mobile-lang {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btns {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .page-hero {
    min-height: 240px;
  }

  .page-hero-inner {
    padding: 48px 16px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .sec {
    padding: 48px 0;
  }

  .wrap,
  .page-hero-inner,
  .banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-auto {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .context-grid,
  .fin-grid,
  .partner-steps,
  .media-grid,
  .value-grid,
  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cards-body {
    padding: 20px;
  }

  .cards-image {
    min-height: 180px;
  }

  .cards-image img {
    height: 180px;
  }

  .banner {
    min-height: 280px;
  }

  .banner-content {
    padding: 48px 16px;
  }

  .banner-content h2 {
    font-size: 24px;
  }

  .banner-sm {
    min-height: 220px;
  }

  .banner-sm .banner-content {
    padding: 40px 16px;
  }

  .cta-block {
    padding: 56px 16px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions .btns {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 16px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .form-controls {
    font-size: 16px;
  }

  .btns-lg {
    min-height: 52px;
    font-size: 14px;
  }

  .context-cards,
  .fin-cards,
  .partner-step {
    padding: 24px 20px;
  }

  .media-cards-image {
    height: 160px;
  }

  .media-cards-body,
  .value-cards {
    padding: 20px;
  }

  .stat-cards {
    padding: 28px 20px;
  }

  .detail-page .col-2col {
    gap: 24px;
  }

  .product-cards-lg .cards-body {
    padding: 24px 20px;
  }

  .sec-dark-full {
    padding: 56px 0;
  }

  .banner-dark {
    padding: 56px 0;
  }

  .stats-row .stat-cards {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stats-row .stat-cards:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (up to 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .h1 {
    font-size: 28px;
  }

  .h2,
  .h2 * {
    font-size: 24px;
  }

  .display {
    font-size: 32px;
  }

  .mobile-menu {
    width: 100vw;
  }

  .header-logo {
    font-size: 17px;
  }
}