@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@font-face { font-family: 'Geist'; src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2'); font-weight: 400; }
@font-face { font-family: 'Geist'; src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Medium.woff2') format('woff2'); font-weight: 500; }
@font-face { font-family: 'Geist'; src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-SemiBold.woff2') format('woff2'); font-weight: 600; }
@font-face { font-family: 'Geist'; src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Bold.woff2') format('woff2'); font-weight: 700; }
@font-face { font-family: 'Geist Mono'; src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Regular.woff2') format('woff2'); font-weight: 400; }
@font-face { font-family: 'Geist Mono'; src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Medium.woff2') format('woff2'); font-weight: 500; }
@font-face { font-family: 'Geist Mono'; src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-SemiBold.woff2') format('woff2'); font-weight: 600; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: #0A0A0A; overscroll-behavior: none; overflow-x: clip; }
body { font-family: 'Geist', sans-serif; background: #0A0A0A; color: #1F1C1B; -webkit-font-smoothing: antialiased; overscroll-behavior: none; overflow-x: clip; }
main { background: #F7F6F0; isolation: isolate; }

h2 { font-size: 28px; font-weight: 700; color: #1F1C1B; letter-spacing: -.8px; line-height: 1.2; }
h3 { font-size: 15px; font-weight: 600; color: #1F1C1B; }
.subtitle { font-size: 15px; color: #666; line-height: 1.6; }
.label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: #999; border: 1px solid #ddd;
  display: inline-block; padding: 2px 8px; border-radius: 2px;
  margin-bottom: 14px;
}

.btn-fill {
  display: block; width: 100%; text-align: center;
  border: 1px solid #1F1C1B; background: #1F1C1B; color: #F7F6F0;
  padding: 14px 20px; font-size: 15px; font-weight: 500;
  border-radius: 6px; cursor: pointer; font-family: 'Geist', sans-serif;
  text-decoration: none;
}
.btn-outline {
  display: block; width: 100%; text-align: center;
  border: 1px solid #ccc; background: none; color: #555;
  padding: 14px 20px; font-size: 15px; font-weight: 500;
  border-radius: 6px; cursor: pointer; font-family: 'Geist', sans-serif;
}

/* Remove underline for 'Agendar Consultor' */
.nav-cta .btn-fill {
  text-decoration: none;
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: none;
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 100;
  border-radius: 0;
  box-shadow: none;
  transition: background .4s ease, box-shadow .4s ease, opacity .4s ease;
  color: #F7F6F0;
  transform: translateY(-120%);
  will-change: transform;
}
@keyframes navSlideDown {
  from { transform: translateY(-120%); }
  to { transform: translateY(0); }
}
nav.nav-visible {
  transform: translateY(0);
  animation: navSlideDown .6s cubic-bezier(.4,0,.2,1) forwards;
}
nav.nav-ready {
  animation: none;
  transition: background .4s ease, box-shadow .4s ease, transform .6s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}
nav.inverted {
  background: rgba(10, 10, 10, 0.88);
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
nav.inverted .nav-item > a,
nav.inverted .nav-links > a { color: #F7F6F0; }
nav.inverted .nav-item > a .ph-caret-down { color: rgba(247,246,240,.5); }
nav.inverted .hamburger span { background: #F7F6F0; }
nav.inverted .btn-fill { background: #F7F6F0; color: #1F1C1B; }
nav.inverted .btn-outline { color: #F7F6F0; border-color: rgba(247,246,240,.3); }
nav.inverted .nav-logo img { filter: brightness(0) invert(1); }
.nav-logo { position: relative; height: 12px; width: 62px; display: flex; align-items: center; }
.nav-logo img {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  transition: opacity .3s ease, transform .3s ease; height: 100%;
  filter: brightness(0) invert(1);
}
.nav-logo .logo-type { opacity: 1; transform: translateY(-50%) scale(1); }
.nav-logo .logo-symbol { opacity: 0; transform: translateY(-50%) scale(.85); height: 17px; }
nav.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  color: #1F1C1B;
}
nav.scrolled .nav-item > a,
nav.scrolled .nav-links > a { color: #1F1C1B; }
nav.scrolled .nav-item > a .ph-caret-down { color: rgba(31,28,27,.5); }
nav.scrolled .hamburger span { background: #1F1C1B; }
nav.scrolled .btn-fill { background: #1F1C1B; color: #F7F6F0; }
nav.scrolled .btn-outline { color: #1F1C1B; border-color: rgba(31,28,27,.2); }
nav.scrolled .nav-logo img { filter: none; }
nav.scrolled .nav-cta .btn-fill { background: #1F1C1B; color: #F7F6F0; border-color: #1F1C1B; }
nav.scrolled .nav-cta .btn-outline { color: #1F1C1B; border-color: rgba(31,28,27,.2); }
nav.scrolled .nav-logo .logo-type { opacity: 0; transform: translateY(-50%) scale(.85); }
nav.scrolled .nav-logo .logo-symbol { opacity: 1; transform: translateY(-50%) scale(1); }
nav.nav-ready { transform: translateY(0); }
nav.nav-hidden { transform: translateY(-150%) !important; pointer-events: none; }
/* Menu open — force dark nav, override scrolled */
nav.menu-open,
nav.menu-open.scrolled {
  background: #0A0A0A !important;
  box-shadow: none !important;
  backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
}
nav.menu-open .hamburger span { background: #F7F6F0; }
nav.menu-open .nav-logo img { filter: brightness(0) invert(1); }
nav.menu-open .nav-logo .logo-type { opacity: 1; transform: translateY(-50%) scale(1); }
nav.menu-open .nav-logo .logo-symbol { opacity: 0; transform: translateY(-50%) scale(.85); }
/* Prevent nav hide while menu open */
nav.menu-open.nav-hidden { transform: translateY(0) !important; pointer-events: auto; }
body.menu-open { overflow: hidden; position: fixed; width: 100%; }
.nav-cta { display: none; }
.nav-cta .btn-fill { display: inline-block; width: auto; padding: 10px 16px; font-size: 13px; border-radius: 100px; background: #F7F6F0; color: #1F1C1B; border-color: #F7F6F0; }
.nav-cta .btn-outline { border-radius: 100px; color: #F7F6F0; border-color: rgba(247,246,240,.3); }
.hamburger {
  width: 24px; height: 24px; display: flex; flex-direction: column;
  justify-content: center; gap: 5px; cursor: pointer; background: none; border: none; padding: 0;
  position: relative;
}
.hamburger span {
  display: block; width: 100%; height: 3.5px; background: #F7F6F0; border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease;
}
/* Hamburger → X */
nav.menu-open .hamburger span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
nav.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
nav.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
.nav-links { display: none; }
.nav-cta .btn-outline { display: none !important; }

/* Language switcher */
.lang-switcher { position: relative; display: none; }
.lang-switcher__toggle {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; border-radius: 8px;
  padding: 8px 12px; color: currentColor; font-family: 'Geist', sans-serif;
  font-size: 14px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.5px; cursor: pointer;
  white-space: nowrap;
}
.lang-switcher__toggle svg { flex-shrink: 0; }
.lang-switcher__caret { transition: transform .2s; }
.lang-switcher.open .lang-switcher__caret { transform: rotate(180deg); }
.lang-switcher__dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #1A1A1A; border: 1px solid rgba(247,246,240,.12); border-radius: 8px;
  overflow: hidden; min-width: 100%; z-index: 200;
}
.lang-switcher.open .lang-switcher__dropdown { display: block; }
.lang-switcher__dropdown a {
  display: block; padding: 10px 14px; color: #F7F6F0; text-decoration: none;
  font-size: 14px; white-space: nowrap; transition: background .15s;
}
.lang-switcher__dropdown a:hover { background: rgba(247,246,240,.08); }

.nav-item { position: static; }
.nav-item > a {
  font-size: 16px; color: #F7F6F0; text-decoration: none; font-weight: 400;
  padding: 8px 0; display: inline-flex; align-items: center; position: relative; line-height: 1;
}
.nav-item > a .ph-caret-down { transition: transform .2s ease; }
.nav-item:hover > a .ph-caret-down,
.nav-item.hover > a .ph-caret-down { transform: rotate(180deg); }

/* Mega menu panel */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
  pointer-events: none;
}
.nav-backdrop.active {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}
.mega-menu {
  position: absolute; left: 0; right: 0; z-index: 200;
  background: var(--c-off-white, #F7F6F0); border-radius: 16px;
  padding: 16px; top: calc(100% + 10px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  display: grid; grid-template-columns: 1fr; gap: 16px;
  visibility: hidden; opacity: 0;
  transform: translateY(20px);
  transition: opacity .18s ease-out, visibility .18s, transform .18s ease-out;
  pointer-events: none;
}
.nav-item.hover .mega-menu {
  visibility: visible; opacity: 1;
  transform: translateY(0);
  transition: opacity .25s ease-out, visibility .25s, transform .25s ease-out;
  pointer-events: auto;
}
.mega-menu::before { display: none; }

/* Mega menu — Platform (cols variant) */
.mega-menu.mega-menu-cols { grid-template-columns: 1fr; gap: 16px; }
.nav-item.hover .mega-menu.mega-menu-cols { }
.mega-col { display: flex; flex-direction: column; }
.mega-col--overview {
  position: relative; border-radius: 12px; padding: 24px; overflow: hidden;
}
.mega-col--overview::before {
  content: ''; position: absolute; inset: 0;
  background: #1F1C1B;
  border-radius: 12px;
}
.mega-col--overview > a { padding: 0; text-decoration: none; display: flex; flex-direction: column; gap: 20px; height: 100%; position: relative; z-index: 1; }
.mega-col--overview > a:hover { background: none; }
.mega-col--overview .mega-overview-title {
  display: flex; align-items: center; gap: 10px;
}
.mega-col--overview .mega-overview-title strong {
  font-family: 'Geist', sans-serif; font-size: 22px; font-weight: 500; color: #fff; margin: 0; line-height: 1.25; letter-spacing: -0.66px;
}
.mega-col--overview .mega-overview-title i {
  font-size: 18px; color: #F7F6F0; background: none;
}
.mega-col--overview > a > span {
  font-family: 'Geist', sans-serif; font-size: 16px; color: #E3E3E3; line-height: 1.5; display: block; font-weight: 400; letter-spacing: -0.48px;
}
.mega-col--overview > a > .mega-overview-link {
  font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500;
  color: #fff !important; display: inline-flex;
  align-items: center; gap: 8px; line-height: 1; letter-spacing: -0.42px;
  padding: 12px 2px;
}
.mega-col--overview > a:hover .mega-overview-link { color: #fff !important; }

/* Module card inside mega menu */
.mega-module {
  text-decoration: none; display: flex; flex-direction: column;
  background: var(--c-off-white, #F7F6F0); border-radius: 12px; overflow: hidden;
  position: relative;
  transition: transform .15s;
  min-height: 480px;
}
.mega-module:hover {
  transform: translateY(-2px);
}
.mega-module__gradient {
  position: absolute; inset: 0; border-radius: 12px;
}
.mega-module__gradient--blue,
.mega-module__gradient--yellow,
.mega-module__gradient--pink { background: #F3F2EC; border: 1px solid rgba(31, 28, 27, .04); }
.mega-module__content {
  position: relative; z-index: 1;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.mega-module strong {
  font-family: 'Geist', sans-serif; font-size: 20px; font-weight: 400; color: #1F1C1B;
  display: block; line-height: 1.25; letter-spacing: -0.6px;
}
.mega-module span {
  font-family: 'Geist', sans-serif; font-size: 16px; color: #585858;
  line-height: 1.5; display: block; font-weight: 400; letter-spacing: -0.48px;
}
.mega-module__link {
  font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500;
  color: #1F1C1B !important; display: inline-flex;
  align-items: center; gap: 8px; line-height: 1; letter-spacing: -0.42px;
  padding: 12px 2px;
}
.mega-module__iso {
  position: absolute;
  bottom: -30%;
  right: -50%;
  width: 140%;
  aspect-ratio: 1 / 1;
  z-index: 0;
  pointer-events: none;
}
.mega-module__iso svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Mega menu — sequential item reveal */
.mega-menu .mega-item {
  opacity: 0;
  transform: translateY(0);
  transition: opacity .15s ease;
}
.nav-item.hover .mega-menu .mega-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s cubic-bezier(.2,0,0,1), transform .3s cubic-bezier(.2,0,0,1);
}

/* Non-platform mega menus (solutions, resources) */
.mega-menu:not(.mega-menu-cols) a {
  display: block; padding: 12px 14px; border-radius: 10px; text-decoration: none; transition: background .15s;
}
.mega-menu:not(.mega-menu-cols) a:hover { background: rgba(0,0,0,.03); }
.mega-menu:not(.mega-menu-cols) a strong { display: block; font-size: 14px; font-weight: 600; color: #1F1C1B; margin-bottom: 2px; }
.mega-menu:not(.mega-menu-cols) a span { display: block; font-size: 12px; color: #999; line-height: 1.4; }
.mega-menu-cols .mega-col--overview a strong,
.mega-menu-cols .mega-col--modules a strong,
.mega-menu-cols a strong { margin-bottom: 0; }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #0A0A0A; z-index: 99; padding: 72px 20px 24px; flex-direction: column; gap: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a, .mobile-menu .mobile-dropdown > .mobile-dropdown-toggle {
  font-size: 18px; color: #F7F6F0; text-decoration: none; font-weight: 500;
  padding: 16px 0; border-bottom: 1px solid rgba(247,246,240,.12);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
  width: 100%; text-align: left; font-family: 'Geist', sans-serif;
  flex-shrink: 0;
}
.mobile-dropdown-toggle::after { content: '+'; font-size: 18px; color: rgba(247,246,240,.4); font-weight: 300; }
.mobile-dropdown.open > .mobile-dropdown-toggle::after { content: '−'; }
.mobile-dropdown-content { display: none; padding: 0 0 8px; flex-shrink: 0; }
.mobile-dropdown.open .mobile-dropdown-content { display: block; }
.mobile-dropdown-content a {
  display: block; padding: 10px 0 10px 12px;
  font-size: 15px; color: rgba(247,246,240,.6); text-decoration: none; font-weight: 400; border-bottom: none;
}
.mobile-dropdown-content a span { display: block; font-size: 12px; color: rgba(247,246,240,.35); margin-top: 2px; }
.mobile-lang {
  display: flex; gap: 8px; padding: 16px 0;
  border-bottom: 1px solid rgba(247,246,240,.12);
}
.mobile-lang__option {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  color: rgba(247,246,240,.5); border: 1px solid rgba(247,246,240,.15);
  transition: all .2s ease;
}
.mobile-lang__option .ph-globe-simple { font-size: 15px; }
.mobile-lang__option.active {
  color: #F7F6F0; border-color: rgba(247,246,240,.4);
  background: rgba(247,246,240,.08);
}
.mobile-menu .menu-ctas { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 24px; padding-bottom: 20px; flex-shrink: 0; }
.mobile-menu .menu-ctas .btn-fill { background: #F7F6F0; color: #1F1C1B; }
.mobile-menu .menu-ctas .btn-outline { color: #F7F6F0; border-color: rgba(247,246,240,.25); }

section { padding: 56px 20px; }

.hero {
  text-align: center; padding: 48px 20px 40px; position: relative; overflow: hidden;
  min-height: calc(100vh - 57px); display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero h2 { font-size: 38px; margin-bottom: 16px; letter-spacing: -1.5px; line-height: 1.08; }
.hero .subtitle { margin-bottom: 32px; }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 48px; }
#heroParticles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
#heroParticles canvas { display: block; }
.hero > *:not(#heroParticles) { position: relative; z-index: 1; }

.proof-strip { text-align: center; padding: 0 0 48px; }
.proof-strip .strip-label { font-family: 'Geist Mono', monospace; font-size: 16px; font-weight: 700; color: #1F1C1B; letter-spacing: -.3px; margin-bottom: 14px; }
.proof-strip .strip-logos { font-size: 10px; font-weight: 600; color: #bbb; letter-spacing: .5px; line-height: 2.2; }

.flow-section { text-align: center; }
.flow-row { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.flow-node { border: 1px solid #333; background: #1F1C1B; padding: 24px; text-align: left; }
.flow-node + .flow-connector + .flow-node { border-top: none; }
.flow-node h3 { margin-bottom: 8px; color: #F7F6F0; }
.flow-node p { font-size: 13px; color: #999; line-height: 1.5; }
.flow-node .mod-cta { font-size: 11px; color: #F7F6F0; text-decoration: none; font-weight: 600; display: inline-block; margin-top: 12px; font-family: 'Geist Mono', monospace; }
.flow-connector { display: none; }

.why-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid #e5e5e5; margin-top: 24px; }
.why-cell { padding: 24px; border-bottom: 1px solid #e5e5e5; }
.why-cell:last-child { border-bottom: none; }
.why-cell h3 { font-size: 14px; margin-bottom: 6px; }
.why-cell p { font-size: 13px; color: #888; line-height: 1.5; }

.cases-block { background: #1F1C1B; color: #F7F6F0; }
.hero-slider { position: relative; overflow: hidden; }
.hero-slider .slide { display: none; text-align: center; padding: 48px 20px; }
.hero-slider .slide.active { display: block; animation: slideFade .4s ease; }
@keyframes slideFade { from { opacity: 0; } to { opacity: 1; } }
.hero-slider .slide .slide-label { font-family: 'Geist Mono', monospace; font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero-slider .slide h2 { font-size: 24px; margin-bottom: 12px; color: #F7F6F0; }
.hero-slider .slide .subtitle { margin: 0 auto 24px; font-size: 14px; color: rgba(255,255,255,.6); }
.hero-slider .slide .slide-link { font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); text-decoration: none; display: inline-block; }
.hero-slider .slide .slide-link:hover { text-decoration: underline; color: #fff; }
.slider-nav { display: flex; justify-content: center; padding: 16px 0 32px; }
.slider-nav-inner { display: inline-flex; align-items: center; gap: 16px; padding: 10px 20px; }
.slider-arrow { background: none; border: none; cursor: pointer; padding: 0; font-size: 18px; color: rgba(255,255,255,.35); line-height: 1; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; transition: color .2s; }
.slider-arrow:hover { color: #fff; }
.slider-dots { display: flex; align-items: center; gap: 6px; }
.slider-dots button { width: 8px; height: 8px; border: none; background: rgba(255,255,255,.25); cursor: pointer; padding: 0; border-radius: 50%; transition: background .2s, transform .2s; }
.slider-dots button.active { background: #fff; transform: scale(1.25); }

.integrations-label { font-family: 'Geist Mono', monospace; font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.integrations-title { font-size: 28px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 32px; }
.integrations-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid #e5e5e5; margin-bottom: 32px; }
.integration-card { padding: 24px; border-bottom: 1px solid #e5e5e5; }
.integration-card:last-child { border-bottom: none; }
.integration-card h3 { font-size: 14px; margin-bottom: 8px; }
.integration-card p { font-size: 13px; color: #888; line-height: 1.6; }
.integrations-logos { font-family: 'Geist Mono', monospace; font-size: 11px; color: #999; letter-spacing: .3px; line-height: 2; margin-bottom: 24px; }
.integrations-cta { font-family: 'Geist Mono', monospace; font-size: 12px; color: #1F1C1B; text-decoration: none; font-weight: 600; }

.faq-section { padding: 56px 20px; }
.faq-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.faq-header h2 { font-size: 28px; letter-spacing: -1px; }
.faq-actions { display: flex; gap: 8px; flex-shrink: 0; }
.faq-actions button { font-family: 'Geist', sans-serif; font-size: 13px; font-weight: 500; padding: 10px 20px; border-radius: 6px; cursor: pointer; background: none; transition: background .15s, color .15s; }
.faq-expand { border: 1.5px solid #1F1C1B; color: #1F1C1B; }
.faq-expand:hover { background: #1F1C1B; color: #F7F6F0; }
.faq-collapse { border: 1.5px solid #ccc; color: #999; }
.faq-collapse:hover { border-color: #999; color: #555; }
.faq-list { list-style: none; }
.faq-item { border-top: 1px solid #e5e5e5; }
.faq-item:last-child { border-bottom: 1px solid #e5e5e5; }
.faq-question { display: flex; align-items: center; width: 100%; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Geist', sans-serif; gap: 20px; }
.faq-num { font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 600; color: #1F1C1B; min-width: 36px; flex-shrink: 0; }
.faq-question span.faq-text { flex: 1; font-size: 16px; font-weight: 600; color: #1F1C1B; line-height: 1.4; }
.faq-icon { width: 36px; height: 36px; border-radius: 8px; background: #1F1C1B; color: #F7F6F0; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; flex-shrink: 0; transition: transform .25s ease; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 0 0 56px; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 0 24px 56px; }
.faq-answer p { font-size: 14px; color: #666; line-height: 1.7; max-width: 700px; }

.expert-section { text-align: center; padding: 0; }
.expert-section h2 { margin-bottom: 12px; }
.expert-section .subtitle { margin: 0 auto 32px; }
.expert-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

footer { padding: 40px 20px; padding-top: 40px; background: #0A0A0A; color: #F7F6F0; border-top: none; height: 100vh; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 2; overflow: hidden; }
.footer-top { flex-shrink: 0; position: relative; z-index: 1; }
.footer-gem { position: absolute; bottom: 0; right: 0; width: 220vw; height: 220vw; z-index: 0; opacity: 0.15; transform: translate(50%, 50%); -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 55%); mask-image: radial-gradient(circle at center, black 20%, transparent 55%); }
.footer-gem canvas { width: 100%; height: 100%; display: block; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-bottom: 32px; }
.footer-brand { grid-column: 1 / -1; margin-bottom: 12px; }
footer.brand-visible .footer-brand { opacity: 1; }
.footer-brand p { font-size: 13px; color: #666; line-height: 1.5; }
.footer-col h4, .footer-col__title { font-family: 'Geist Mono', monospace; font-size: 14px; font-weight: 400; text-transform: uppercase; letter-spacing: 1.12px; line-height: 1.1; color: #555; margin-bottom: 16px; display: block; }
.footer-col a, .footer-link--soon { display: block; font-size: 16px; color: #F7F6F0; text-decoration: none; margin-bottom: 0; padding: 4px 0; line-height: 1.3; font-weight: 400; }
.footer-link--soon { opacity: 0.7; cursor: default; }
.footer-col a:hover { color: #F7F6F0; }
.footer-bottom { padding-top: 16px; font-size: 12px; color: #555; display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; }
.footer-bottom-info { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom-info span { color: #777; }
.footer-social { display: flex; gap: 4px; align-items: center; }
.footer-social a { color: #555; text-decoration: none; display: flex; align-items: center; justify-content: center; min-width: 36px; min-height: 36px; transition: color .15s; }
.footer-social a:hover { color: #F7F6F0; }
.footer-lang { position: relative; }
.footer-lang__toggle { display: flex; align-items: center; gap: 6px; background: none; border: 1px solid rgba(247,246,240,.15); border-radius: 8px; padding: 8px 12px; color: #F7F6F0; font-family: 'Geist', sans-serif; font-size: 14px; cursor: pointer; transition: border-color .15s; }
.footer-lang__toggle:hover { border-color: rgba(247,246,240,.35); }
.footer-lang__toggle svg { flex-shrink: 0; }
.footer-lang__caret { transition: transform .2s; }
.footer-lang.open .footer-lang__caret { transform: rotate(180deg); }
.footer-lang__dropdown { display: none; position: absolute; bottom: calc(100% + 6px); left: 0; background: #1A1A1A; border: 1px solid rgba(247,246,240,.12); border-radius: 8px; overflow: hidden; min-width: 100%; z-index: 2; }
.footer-lang.open .footer-lang__dropdown { display: block; }
.footer-lang__dropdown a { display: block; padding: 10px 14px; color: #F7F6F0; text-decoration: none; font-size: 14px; white-space: nowrap; transition: background .15s; }
.footer-lang__dropdown a:hover { background: rgba(247,246,240,.08); }
.footer-sitemap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-bottom: 32px; padding-top: 24px; border-top: 1px solid #222; }

.footer-sitemap > div:first-child { display: none; }

@media (min-width: 1024px) {
  nav { padding: 9px 9px; top: 9px; left: 40px; right: 40px; border-radius: 33px; box-shadow: 0 2px 20px rgba(0,0,0,.12); }
  .nav-logo { height: 15px; width: 76px; margin-left: 26px; }
  .nav-logo .logo-symbol { height: 21px; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .nav-links { display: flex; gap: 24px; align-items: center; }
  .nav-links > a { font-size: 16px; color: #F7F6F0; text-decoration: none; font-weight: 400; position: relative; line-height: 1; }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .lang-switcher { display: block; }
  .nav-cta .btn-outline { display: inline-block !important; width: auto; padding: 10px 24px; font-size: 14px; border-radius: 100px; }
  .nav-cta .btn-fill { padding: 12px 28px; font-size: 14px; border-radius: 100px; }
  /* Mega menu desktop */
  .mega-menu { left: 0; right: 0; top: calc(100% + 10px); padding: 16px; }
  .mega-menu.mega-menu-cols { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .nav-item.hover .mega-menu.mega-menu-cols { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .mega-menu:not(.mega-menu-cols) { left: auto; right: auto; position: absolute; min-width: 340px; top: 100%; margin-top: 16px; }
  .btn-fill, .btn-outline { display: inline-block; width: auto; }
  section { padding: 80px 64px; }
  .hero { padding: 120px 64px 80px; min-height: calc(100vh - 65px); }
  .hero h2 { font-size: 72px; max-width: 900px; margin: 0 auto 24px; letter-spacing: -3px; line-height: 1.05; }
  .hero .subtitle { max-width: 600px; margin: 0 auto 40px; font-size: 17px; }
  .hero-ctas { flex-direction: row; justify-content: center; gap: 12px; margin-bottom: 96px; }
  .hero-ctas .btn-fill, .hero-ctas .btn-outline { width: auto; }
  .proof-strip .strip-label { font-size: 24px; }
  .flow-row { flex-direction: row; gap: 0; align-items: stretch; }
  .flow-node { flex: 1; display: flex; flex-direction: column; padding: 28px 32px; }
  .flow-node + .flow-connector + .flow-node { border-top: 1px solid #333; }
  .flow-connector { display: flex; width: 48px; min-height: 1px; position: relative; align-items: center; justify-content: center; }
  .flow-connector::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #555; }
  .flow-connector::after { content: '→'; position: relative; z-index: 1; font-size: 14px; color: #555; background: #F7F6F0; padding: 0 2px; }
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #e5e5e5; border: 1px solid #e5e5e5; }
  .why-cell { background: #F7F6F0; border-bottom: none; }
  .why-cell:last-child { grid-column: 1 / -1; }
  .hero-slider .slide { padding: 80px 64px; }
  .hero-slider .slide h2 { font-size: 36px; }
  .hero-slider .slide .subtitle { font-size: 16px; max-width: 560px; }
  .slider-nav { padding: 16px 0 24px; }
  .integrations-title { font-size: 36px; }
  .integrations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #e5e5e5; border: 1px solid #e5e5e5; }
  .integration-card { background: #F7F6F0; border-bottom: none; }
  .integration-card p { font-size: 14px; }
  .faq-section { padding: 80px 64px; }
  .faq-header h2 { font-size: 36px; }
  .faq-question span.faq-text { font-size: 18px; }
  .faq-answer { padding-left: 56px; }
  .faq-item.open .faq-answer { padding-left: 56px; }
  .expert-ctas { flex-direction: row; justify-content: center; }
  .expert-ctas .btn-fill, .expert-ctas .btn-outline { width: auto; }
  .expert-section .subtitle { max-width: 500px; }
  footer { padding: 64px; }
  .footer-grid { grid-template-columns: 2fr repeat(4, 1fr); gap: 32px; }
  .footer-brand { grid-column: auto; margin-bottom: 0; }
  .footer-gem { width: 240vh; height: 240vh; opacity: 0.1; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-bottom-info { flex-direction: row; gap: 24px; align-items: center; }
  .footer-sitemap { grid-template-columns: 2fr repeat(4, 1fr); gap: 32px; }
  .footer-sitemap > div:first-child { display: block; }
}
